tibi-types/schemas/api-config/config.json

131 lines
4.1 KiB
JSON
Raw Normal View History

2022-02-01 18:59:17 +01:00
{
"$schema": "http://json-schema.org/draft-07/schema#",
2022-02-26 10:43:52 +01:00
"title": "JSON Schema tibi-server config file",
"description": "tibi-server config.yml linter",
2022-02-01 18:59:17 +01:00
"type": "object",
"additionalProperties": false,
2022-10-12 16:23:32 +02:00
"patternProperties": {
"^x\\-": {
"description": "template property"
}
},
2022-02-01 18:59:17 +01:00
"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": {
2023-07-23 22:57:50 +02:00
"dashboard": {
"$ref": "dashboard.json#/properties/dashboard"
},
2022-02-01 18:59:17 +01:00
"imageUrl": {
2022-12-07 15:53:01 +01:00
"description": "project's teaser image url shown in admin ui",
"oneOf": [
{ "type": "string" },
{
"$ref": "definitions.json#/definitions/evalObject"
}
]
2022-02-01 18:59:17 +01:00
}
}
},
"collections": {
2022-02-01 19:10:49 +01:00
"type": "array",
"description": "list of collections in this project",
"items": {
"oneOf": [
{
"$comment": "for include tag",
"type": "string"
},
{
2022-02-01 18:59:17 +01:00
"$ref": "collection.json"
}
2022-02-01 19:10:49 +01:00
]
}
2022-02-21 10:23:11 +01:00
},
"jobs": {
"type": "array",
"description": "list of jobs in this project",
"items": {
"oneOf": [
{
"$comment": "for include tag",
"type": "string"
},
{
"$ref": "job.json"
}
]
}
2022-11-18 17:26:45 +01:00
},
"assets": {
"type": "array",
"description": "list of assets in this project",
"items": {
"oneOf": [
{
"$comment": "for include tag",
"type": "string"
},
{
"$ref": "assets.json"
}
]
}
2024-08-23 16:01:15 +02:00
},
"cors": {
"type": "object",
"description": "cors configuration",
"additionalProperties": false,
"properties": {
"merge": {
"type": "boolean",
"description": "merge with global cors configuration"
},
"allowOrigins": {
"type": "array",
"description": "list of allowed origins",
"items": {
"type": "string"
}
},
"allowMethods": {
"type": "array",
"description": "list of allowed methods",
"items": {
"type": "string"
}
},
"allowHeaders": {
"type": "array",
"description": "list of allowed headers",
"items": {
"type": "string"
}
},
"allowCredentials": {
"type": "boolean",
"description": "allow credentials"
},
"exposeHeaders": {
"type": "array",
"description": "list of exposed headers",
"items": {
"type": "string"
}
},
"maxAge": {
"type": "integer",
"description": "max age in seconds"
}
}
2022-02-01 18:59:17 +01:00
}
},
"required": ["namespace"]
}