# QualityAssuranceMethod-schema.json
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "../Documentation/Implementation/data_model/Json/",
"title": "QualityAssuranceMethod",
"description": "QualityAssuranceMethod schema",
"dataTypes": null,
"type": "object",
"properties": {
"description": {
"type": "string",
"description": "Description of the methodology applied to ensure the scientific and documentary quality of the data"
},
"methodReference": {
"type": "object",
"$comment": "class=ResourceReference",
"properties": {
"dbid": {
"type": "number"
}
},
"required": [
"dbid"
],
"description": "Reference to a quality assurance protocol"
},
"contributor": {
"type": "array",
"items": {
"type": "object",
"$comment": "class=Contributor",
"properties": {
"dbid": {
"type": "number"
}
},
"required": [
"dbid"
]
},
"description": "Person(s) responsible for data quality control"
}
},
"required": [
"description"
]
}