big tings

This commit is contained in:
Max Richter
2025-08-17 15:16:17 +02:00
parent 40b9be887d
commit c687eff53d
958 changed files with 32279 additions and 704 deletions

View File

@@ -0,0 +1,39 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "schema:CategoryCode",
"title": "CategoryCode",
"description": "A Category Code.",
"type": "object",
"allOf": [
{
"description": "A word, name, acronym, phrase, etc. with a formal definition. Often used in the context of category or subject classification, glossaries or dictionaries, product or creative work types, etc. Use the name property for the term being defined, use termCode if the term has an alpha-numeric code allocated, use description to provide the definition of the term.",
"$ref": "schema:DefinedTerm"
}
],
"properties": {
"codeValue": {
"description": "A short textual code that uniquely identifies the value.",
"type": "string"
},
"inCodeSet": {
"description": "A [[CategoryCodeSet]] that contains this category code.",
"oneOf": [
{
"anyOf": [
{ "type": "string", "format": "uri" },
{ "$ref": "schema:CategoryCodeSet" }
]
},
{
"type": "array",
"items": {
"anyOf": [
{ "type": "string", "format": "uri" },
{ "$ref": "schema:CategoryCodeSet" }
]
}
}
]
}
}
}