26 lines
874 B
JSON
26 lines
874 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "https://santeriloitomaa.eu/Santtinen/schemas/raw/branch/main/error-schema.json",
|
|
"title": "Error/Warning/Note list",
|
|
"description": "A list of Errors, Warnings, and Notes",
|
|
"type" : "object",
|
|
"properties": {
|
|
"errors": {
|
|
"type":"object",
|
|
"patternProperties": {
|
|
"": {
|
|
"type" : "object",
|
|
"properties": {
|
|
"type" : {
|
|
"description": "The type this Error/Warning/Note is",
|
|
"enum": ["Error", "Warning", "Note"]
|
|
}
|
|
},
|
|
"required": [
|
|
"type"
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |