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/branch/chore/github-add-automatic-changelog/schemas/specs/indexer-flag-spec.json You should set ROOT_URL correctly, otherwise the web may not work correctly.
TRaSH-Guides/schemas/specs/indexer-flag-spec.json

26 lines
620 B

{
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{ "$ref": "../base-cf.schema.json#/defs/baseSpecification" },
{
"properties": {
"implementation": {
"const": "IndexerFlagSpecification"
},
"fields": {
"type": "object",
"properties": {
"value": {
"type": "integer",
"enum": [1, 2, 4, 8, 16, 32, 64, 128, 256, 512]
}
},
"required": ["value"],
"additionalProperties": false
}
},
"required": ["implementation", "fields"]
}
]
}