{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://vclaw.dev/schemas/video/artifacts/product-references.schema.json",
  "title": "ProductReferencesArtifact",
  "type": "object",
  "required": ["schemaVersion", "products"],
  "additionalProperties": false,
  "properties": {
    "schemaVersion": { "const": 1 },
    "products": {
      "type": "array",
      "items": { "$ref": "#/definitions/ProductReference" }
    }
  },
  "definitions": {
    "ProductReference": {
      "type": "object",
      "required": ["name", "referenceAssets"],
      "additionalProperties": false,
      "properties": {
        "name": { "type": "string", "minLength": 1 },
        "referenceAssets": {
          "type": "array",
          "items": { "type": "string", "minLength": 1 }
        }
      }
    }
  }
}
