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

26 lines
603 B

{
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{ "$ref": "../base-cf.schema.json#/defs/baseSpecification" },
{
"properties": {
"implementation": {
"const": "SourceSpecification"
},
"fields": {
"type": "object",
"properties": {
"value": {
"type": "integer",
"enum": [1, 2, 3, 4, 5, 6, 7, 8, 9]
}
},
"required": ["value"],
"additionalProperties": false
}
},
"required": ["implementation", "fields"]
}
]
}