This commit is contained in:
40
schemas/api-config/config.json
Normal file
40
schemas/api-config/config.json
Normal file
@@ -0,0 +1,40 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||
"title": "JSON Schema WMBasic config file",
|
||||
"description": "WMBasic config.yml linter",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"namespace": {
|
||||
"type": "string",
|
||||
"description": "suffix for mongo db database and part of api url, can be overwritten in database project settings"
|
||||
},
|
||||
"meta": {
|
||||
"type": "object",
|
||||
"description": "meta object used for admin ui configuration",
|
||||
"additionalProperties": true,
|
||||
"properties": {
|
||||
"imageUrl": {
|
||||
"type": "string",
|
||||
"description": "project's teaser image url shown in admin ui"
|
||||
}
|
||||
}
|
||||
},
|
||||
"collections": {
|
||||
"oneOf": [
|
||||
{
|
||||
"$comment": "for include tag",
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"type": "array",
|
||||
"description": "list of collections in this project",
|
||||
"items": {
|
||||
"$ref": "collection.json"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": ["namespace"]
|
||||
}
|
||||
Reference in New Issue
Block a user