# SoftwareDocumentation-schema.json
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "../Documentation/Implementation/data_model/Json/",
"title": "SoftwareDocumentation",
"description": "SoftwareDocumentation schema",
"dataTypes": [
"software"
],
"type": "object",
"properties": {
"documentationReference": {
"type": "array",
"items": {
"type": "object",
"$comment": "class=ResourceReference",
"properties": {
"dbid": {
"type": "number"
}
},
"required": [
"dbid"
]
},
"description": "Document reference"
},
"description": {
"type": "string",
"description": "Additional information conerning the documentation produced"
}
},
"required": []
}