# ProgrammingLanguage-schema.json
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "../Documentation/Implementation/data_model/Json/",
"title": "ProgrammingLanguage",
"description": "ProgrammingLanguage schema",
"dataTypes": [
"software"
],
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Name of the programming language used in the software"
},
"version": {
"type": "string",
"description": "Version of the programming language used in the software"
}
},
"required": [
"name"
]
}