Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
schema.recommendation-assessment-units.schema.json Maven / Gradle / Ivy
{
"$id": "recommendation-assessment-units.schema.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Recommendation Assessment Units Schema",
"description": "Created by Huang, Fuguo. Created date: 2019-June-20.",
"items": {
"$ref": "#/definitions/AssessmentUnit"
},
"definitions": {
"AssessmentUnit": {
"type": "object",
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"targets": {
"type": "array",
"items": {
"$ref": "#/definitions/Target"
},
"minItems": 1
}
},
"required": [
"name",
"targets"
],
"title": "AssessmentUnit",
"description": "A list of assessment units."
},
"Target": {
"type": "object",
"properties": {
"target": {
"type": "string"
},
"issues": {
"$ref": "#/definitions/TargetIssues"
},
"summary": {
"$ref": "schema/recommendation-assessment-units-summary.schema.json"
}
},
"required": [
"target",
"issues",
"summary"
],
"title": "Target"
},
"TargetIssues": {
"type": "object",
"patternProperties": {
".*": {
"type": "object",
"$ref": "#/definitions/TargetIssuesCategory"
}
},
"title": "TargetIssues"
},
"TargetIssuesCategory": {
"type": "array",
"items": {
"$ref": "#/definitions/TargetIssuesItem"
}
},
"TargetIssuesItem": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"title": {
"type": "string"
},
"cost": {
"type": "number",
"minimum": 0
},
"issueOverhead": {
"type": "number"
},
"occurrencesCost": {
"type": "number",
"minimum": 0
},
"solutionText": {
"type": "array",
"items": {
"type": "string"
}
},
"severity": {
"$ref": "schema/recommendation-severity.schema.json"
},
"occurrencesFields": {
"$ref": "#/definitions/OccurrencesFields"
},
"occurrencesCount": {
"type": "integer",
"exclusiveMinimum": 0
},
"occurrences": {
"type": "array",
"items": {
"$ref": "#/definitions/OccurrencesFields"
}
}
},
"required": [
"id",
"cost",
"issueOverhead",
"occurrences",
"occurrencesCost",
"occurrencesCount",
"occurrencesFields",
"severity",
"solutionText",
"title"
],
"title": "TargetIssuesItem"
},
"OccurrencesFields": {
"type": "object",
"title": "OccurrencesFields"
}
}
}