24 lines
646 B
JSON
24 lines
646 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"title": "JSON Schema tibi-server assets configuration",
|
|
"description": "tibi-server assets linter",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"patternProperties": {
|
|
"^x\\-": {
|
|
"description": "template property"
|
|
}
|
|
},
|
|
"properties": {
|
|
"name": {
|
|
"type": "string",
|
|
"description": "name, used in url ../NAMESPACE/_/assets/NAME"
|
|
},
|
|
"path": {
|
|
"type": "string",
|
|
"description": "path relative to config.yml"
|
|
}
|
|
},
|
|
"required": ["name", "path"]
|
|
}
|