{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://concordmedia.eu/ai-markt/data/schemas/product.schema.json",
  "title": "AI Markt Product",
  "type": "object",
  "required": [
    "id",
    "entity_type",
    "brand_id",
    "category_id",
    "name",
    "identifiers",
    "locales"
  ],
  "properties": {
    "id": {
      "type": "string",
      "pattern": "^[a-z0-9][a-z0-9._-]+$"
    },
    "entity_type": {
      "const": "product"
    },
    "brand_id": {
      "type": "string"
    },
    "category_id": {
      "type": "string"
    },
    "product_cluster_id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "identifiers": {
      "type": "object",
      "properties": {
        "gtin": {
          "type": "string"
        },
        "mpn": {
          "type": "string"
        },
        "sku": {
          "type": "string"
        }
      },
      "additionalProperties": true
    },
    "attributes": {
      "type": "object"
    },
    "features": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "locales": {
      "type": "object",
      "additionalProperties": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "description": {
            "type": "string"
          }
        },
        "required": [
          "name"
        ]
      }
    },
    "sources": {
      "type": "array",
      "items": {
        "type": "object",
        "required": [
          "url"
        ],
        "properties": {
          "url": {
            "type": "string",
            "format": "uri"
          },
          "title": {
            "type": "string"
          }
        }
      }
    }
  },
  "additionalProperties": true
}