Files
formulation/container/schemas/v2/allergen.schema.json
T

16 lines
700 B
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://recipes.uuard.com/schemas/v2/allergen.schema.json",
"title": "Allergen",
"type": "object",
"required": ["schema_version", "id", "name", "jurisdictions"],
"additionalProperties": false,
"properties": {
"schema_version": { "$ref": "common.schema.json#/$defs/schemaVersion" },
"id": { "$ref": "common.schema.json#/$defs/id" },
"name": { "$ref": "common.schema.json#/$defs/nonEmptyString" },
"aliases": { "type": "array", "items": { "type": "string" }, "uniqueItems": true },
"jurisdictions": { "type": "array", "items": { "$ref": "common.schema.json#/$defs/id" }, "uniqueItems": true }
}
}