# ControlledKeyword-schema.json
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "../Documentation/Implementation/data_model/Json/",
"title": "ControlledKeyword",
"description": "ControlledKeyword schema",
"dataTypes": null,
"type": "object",
"properties": {
"keyword": {
"type": "string",
"description": "Keyword label"
},
"keywordSchema": {
"type": "string",
"description": "Name of the vocabulary or authority list"
},
"keywordUrl": {
"type": "string",
"format": "url",
"description": "Concept identifier"
}
},
"required": [
"keyword",
"keywordUrl"
]
}