{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://synax.ro/schemas/catalog-synax-standard-v1.schema.json",
  "title": "Synax Standard Catalog v1",
  "description": "Contract pentru un export de catalog autorizat de companie. Maximum 500 produse per lot.",
  "type": "object",
  "additionalProperties": false,
  "required": ["products"],
  "properties": {
    "products": {
      "type": "array",
      "minItems": 1,
      "maxItems": 500,
      "items": {
        "type": "object",
        "additionalProperties": false,
        "required": [
          "sku",
          "name",
          "unitCode",
          "currencyCode",
          "priceNet",
          "stockStatus",
          "productUrl",
          "imageUrl",
          "categoryCode",
          "sourceUpdatedAt"
        ],
        "properties": {
          "sku": { "type": "string", "minLength": 1, "maxLength": 120 },
          "name": { "type": "string", "minLength": 2, "maxLength": 240 },
          "unitCode": { "type": "string", "minLength": 1, "maxLength": 24 },
          "currencyCode": { "type": "string", "pattern": "^[A-Z]{3}$" },
          "priceNet": { "type": "number", "exclusiveMinimum": 0 },
          "stockQuantity": { "type": ["number", "null"], "minimum": 0 },
          "stockStatus": {
            "type": "string",
            "enum": ["IN_STOCK", "LOW_STOCK", "ON_ORDER", "UNAVAILABLE"]
          },
          "brand": { "type": ["string", "null"], "maxLength": 120 },
          "manufacturerPartNo": { "type": ["string", "null"], "maxLength": 120 },
          "gtin": { "type": ["string", "null"], "pattern": "^[0-9]{8,14}$" },
          "productUrl": { "type": "string", "pattern": "^https://" },
          "imageUrl": { "type": "string", "pattern": "^https://", "maxLength": 2048 },
          "categoryCode": { "type": "string", "minLength": 1, "maxLength": 120 },
          "sourceUpdatedAt": { "type": "string", "format": "date-time" }
        }
      }
    }
  }
}
