Я пытаюсь проверить следующее JSON
{
"domain": "example.com",
"docker": {
"services": {
"app": {
"image": "nginxdemos/hello:latest",
"expose_port": 80,
"volumes": [
"./:/test"
]
},
"db": {
"image": "mariadb:10.5"
}
}
}
}
Я хочу убедиться, что expose_port
внутри дочерних элементов services
можно определить только один раз. Таким образом, добавление "expose_port": 1234
к "db" должно сделать недействительным JSON.
. Это моя схема до сих пор:
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "http://saitho.me/project-configuration.schema.json",
"title": "Project Configuration",
"description": "Project configuration file",
"type": "object",
"definitions": {
"docker-service": {
"properties": {
"image": {
"description": "Name of Docker image",
"type": "string"
},
"volumes": {
"description": "Docker volumes to be mounted",
"type": "array",
"items": {
"type": "string"
},
"minItems": 1
}
},
"required": [ "image" ]
}
},
"properties": {
"domain": {
"description": "The domain from which the app can be reached",
"type": "string"
},
"docker": {
"description": "Configuration for Docker containers that will be deployed",
"type": "object",
"properties": {
"services": {
"description": "List of Docker services to be started",
"type": "object",
"patternProperties": {
".*": {
"$ref": "#/definitions/docker-service",
"oneOf": [
{
"properties": {
"expose_port": {
"description": "Port that receives web traffic (e.g. 80, 3000, 8080 for most applications). Only one in this file!",
"type": "integer"
}
}
}
],
"type": "object"
}
},
"additionalProperties": false
}
},
"required": [ "services" ]
}
},
"required": [ "domain" ]
}
До сих пор я пытался объединить allOf и oneOf, но это Кажется, что он работает только над текущим ребенком, а не смотрит на братьев и сестер. Кто-нибудь знает решение моей проблемы? :)
Спасибо!