| 123456789101112131415161718192021222324252627282930 |
- {
- "$schema": "http://json-schema.org/draft-04/schema#",
- "id": "service_schema.json",
- "type": "object",
- "allOf": [
- {"$ref": "fields_schema.json#/definitions/service"},
- {"$ref": "#/definitions/constraints"}
- ],
- "definitions": {
- "constraints": {
- "id": "#/definitions/constraints",
- "anyOf": [
- {
- "required": ["build"],
- "not": {"required": ["image"]}
- },
- {
- "required": ["image"],
- "not": {"anyOf": [
- {"required": ["build"]},
- {"required": ["dockerfile"]}
- ]}
- }
- ]
- }
- }
- }
|