| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- {
- "$schema": "http://json-schema.org/draft-04/schema#",
- "type": "object",
- "id": "fields_schema_v2.0.json",
- "properties": {
- "version": {
- "type": "string"
- },
- "services": {
- "id": "#/properties/services",
- "type": "object",
- "patternProperties": {
- "^[a-zA-Z0-9._-]+$": {
- "$ref": "service_schema_v2.0.json#/definitions/service"
- }
- },
- "additionalProperties": false
- },
- "networks": {
- "id": "#/properties/networks",
- "type": "object",
- "patternProperties": {
- "^[a-zA-Z0-9._-]+$": {
- "$ref": "#/definitions/network"
- }
- }
- },
- "volumes": {
- "id": "#/properties/volumes",
- "type": "object",
- "patternProperties": {
- "^[a-zA-Z0-9._-]+$": {
- "$ref": "#/definitions/volume"
- }
- },
- "additionalProperties": false
- }
- },
- "definitions": {
- "network": {
- "id": "#/definitions/network",
- "type": "object",
- "properties": {
- "driver": {"type": "string"},
- "driver_opts": {
- "type": "object",
- "patternProperties": {
- "^.+$": {"type": ["string", "number"]}
- }
- },
- "ipam": {
- "type": "object",
- "properties": {
- "driver": {"type": "string"},
- "config": {
- "type": "array"
- }
- },
- "additionalProperties": false
- },
- "external": {
- "type": ["boolean", "object"],
- "properties": {
- "name": {"type": "string"}
- },
- "additionalProperties": false
- }
- },
- "additionalProperties": false
- },
- "volume": {
- "id": "#/definitions/volume",
- "type": ["object", "null"],
- "properties": {
- "driver": {"type": "string"},
- "driver_opts": {
- "type": "object",
- "patternProperties": {
- "^.+$": {"type": ["string", "number"]}
- }
- },
- "external": {
- "type": ["boolean", "object"],
- "properties": {
- "name": {"type": "string"}
- }
- },
- "additionalProperties": false
- },
- "additionalProperties": false
- }
- },
- "additionalProperties": false
- }
|