# DataReuse-schema.json
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "../Documentation/Implementation/data_model/Json/",
"title": "DataReuse",
"description": "DataReuse schema",
"dataTypes": null,
"type": "object",
"properties": {
"justification": {
"type": "string",
"description": "Explanation for the decision to reuse or not reuse existing data"
},
"reusedData": {
"type": "array",
"items": {
"type": "object",
"$comment": "class=ReusedData",
"properties": {
"dbid": {
"type": "number"
}
},
"required": [
"dbid"
]
},
"description": "Information on reused data (dataset, software or other objects)"
},
"cost": {
"type": "array",
"items": {
"type": "object",
"$comment": "class=Cost",
"properties": {
"dbid": {
"type": "number"
}
},
"required": [
"dbid"
]
},
"description": "Potential costs related to the purchase of data"
}
},
"required": [
"justification"
]
}