{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://concordmedia.eu/ai-markt/data/schemas/brand.schema.json",
  "title": "AI Markt Brand",
  "type": "object",
  "required": [
    "id",
    "entity_type",
    "name",
    "locales"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "entity_type": {
      "const": "brand"
    },
    "name": {
      "type": "string"
    },
    "manufacturer_ids": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "official_website": {
      "type": "string",
      "format": "uri"
    },
    "locales": {
      "type": "object",
      "additionalProperties": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "description": {
            "type": "string"
          }
        },
        "required": [
          "name"
        ]
      }
    }
  },
  "additionalProperties": true
}