{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "$id": "https://schema.123lease.nl/draft-02/dealer",
  "$comment": "Versie 1.0.0",
  "title": "Dealer",
  "description": "Een dealer van voertuigen",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "$schema": {
      "type": "string",
      "format": "uri"
    },
    "id": {
      "title": "Dealer ID",
      "description": "The dealer's ID, as provided by 123lease",
      "type": "integer",
      "minimum": 1
    },
    "name": {
      "title": "Dealer name",
      "type": "string"
    },
    "address": {
      "title": "Dealer address",
      "type": ["string", "null"]
    },
    "postal-code": {
      "title": "Dealer postal-code",
      "type": ["string", "null"]
    },
    "city": {
      "title": "Dealer city",
      "type": "string"
    },
    "country": {
      "title": "Dealer country",
      "description": "ISO 3166-1 alpha-2 country codes",
      "type": "string",
      "pattern": "^[A-Za-z]{2}$"
    },
    "website": {
      "title": "Dealer website",
      "type": ["string", "null"],
      "format": "uri"
    },
    "phone": {
      "title": "Dealer phone",
      "type": "string"
    }
  }
}
