Files
schemas/error-schema.json
T

19 lines
593 B
JSON
Raw Normal View History

2026-06-22 11:34:02 +02:00
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
2026-06-22 11:37:41 +02:00
"$id": "https://santeriloitomaa.eu/Santtinen/schemas/raw/branch/main/error-schema.json",
2026-06-22 11:34:02 +02:00
"title": "Error/Warning/Note list",
2026-06-22 13:01:50 +03:00
"description": "A list of Errors, Warnings, and Notes",
2026-06-22 13:17:28 +03:00
"type" : "array",
"items": {
"type" : "object",
"properties": {
"type" : {
"description": "The type this Error/Warning/Note is",
"enum": ["Error", "Warning", "Note"]
}
},
"required": [
"type"
]
}
2026-06-22 11:34:02 +02:00
}