{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "$id": "https://schema.123lease.nl/draft-02/vehicle/delete#",
  "$comment": "Versie 1.0.0",
  "title": "Vehicle delete",
  "description": "A vehicle deletion request",
  "type": "object",
  "additionalProperties": false,
  "required": ["meta", "customer", "vehicle"],
  "properties": {
    "$schema": {
      "type": "string",
      "format": "uri"
    },
    "meta": {
      "title": "Metadata",
      "description": "Informatie over de aanvraag zelf",
      "type": "object",
      "required": [
        "version",
        "action"
      ],
      "properties": {
        "action": {
          "type": "string",
          "const": "delete"
        }
      }
    },
    "customer": {
      "title": "Customer data",
      "description": "Informatie over de autodealer die de auto aanbied",
      "type": "object",
      "required": [
        "id"
      ]
    },
    "vehicle": {
      "title": "Voertuig data",
      "description": "Informatie over het voertuig zelf",
      "type": "object",
      "required": [
        "id"
      ]
    }
  }
}
