Files

17 lines
676 B
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://recipes.uuard.com/schemas/v2/supplier.schema.json",
"title": "Supplier",
"type": "object",
"required": ["schema_version", "id", "name", "status"],
"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" },
"status": { "type": "string", "enum": ["active", "inactive"] },
"website": { "type": "string", "format": "uri" },
"notes": { "type": "array", "items": { "type": "string" } }
}
}