16 lines
581 B
JSON
16 lines
581 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "https://recipes.uuard.com/schemas/v2/equipment.schema.json",
|
|
"title": "Equipment type",
|
|
"type": "object",
|
|
"required": ["schema_version", "id", "name"],
|
|
"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" },
|
|
"category": { "$ref": "common.schema.json#/$defs/id" },
|
|
"notes": { "type": "string" }
|
|
}
|
|
}
|