Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-guides/TRaSH-Guides/blame/commit/ff0433c6e237a043be3dafe0c3c4c8d70882bff4/schemas/specs/year-spec.json You should set ROOT_URL correctly, otherwise the web may not work correctly.
TRaSH-Guides/schemas/specs/year-spec.json

30 lines
677 B

{
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{ "$ref": "../base-cf.schema.json#/defs/baseSpecification" },
{
"properties": {
"implementation": {
"const": "SizeSpecification"
},
"fields": {
"type": "object",
"properties": {
"min": {
"type": "integer",
"minimum": 1
},
"max": {
"type": "integer",
"minimum": 1
}
},
"required": ["min", "max"],
"additionalProperties": false
}
},
"required": ["implementation", "fields"]
}
]
}