schema.recommendation.schema.json Maven / Gradle / Ivy
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "recommendation.schema.json",
"type": "object",
"required": [
"domain",
"collectionUnitType",
"collectionUnitName",
"version",
"complexityRules",
"issueCategories",
"assessmentUnits"
],
"properties": {
"domain": {
"type": "string",
"minLength": 1
},
"collectionUnitType": {
"type": "string",
"minLength": 1
},
"collectionUnitName": {
"type": "string",
"minLength": 1
},
"middleware": {
"type": "string",
"minLength": 1
},
"version": {
"type": "string",
"minLength": 1
},
"complexityRules": {
"type": "array",
"items": {
"$ref": "schema/recommendation-complexity-rule.schema.json"
}
},
"issueCategories": {
"$ref": "schema/recommendation-issue-categories.schema.json"
},
"assessmentUnits": {
"$ref": "schema/recommendation-assessment-units.schema.json"
}
}
}