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/598425564e2abd59dfca153775782fb35f09bcaf/schemas/specs/release-type-spec.json You should set ROOT_URL correctly, otherwise the web may not work correctly.
TRaSH-Guides/schemas/specs/release-type-spec.json

26 lines
593 B

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