File tree Expand file tree Collapse file tree 1 file changed +26
-1
lines changed Expand file tree Collapse file tree 1 file changed +26
-1
lines changed Original file line number Diff line number Diff line change 11{
2- "$schema" : " http ://json-schema.org/draft/2019-09/schema#" ,
2+ "$schema" : " https ://json-schema.org/draft/2019-09/schema#" ,
33 "id" : " compose_spec.json" ,
44 "type" : " object" ,
55 "title" : " Compose Specification" ,
1717 "description" : " define the Compose project name, until user defines one explicitly."
1818 },
1919
20+ "include" : {
21+ "type" : " array" ,
22+ "items" : {
23+ "type" : " object" ,
24+ "$ref" : " #/definitions/include"
25+ },
26+ "description" : " compose sub-projects to be included."
27+ },
28+
2029 "services" : {
2130 "id" : " #/properties/services" ,
2231 "type" : " object" ,
588597 }
589598 },
590599
600+ "include" : {
601+ "id" : " #/definitions/include" ,
602+ "oneOf" : [
603+ {"type" : " string" },
604+ {
605+ "type" : " object" ,
606+ "properties" : {
607+ "path" : {"$ref" : " #/definitions/string_or_list" },
608+ "env_file" : {"$ref" : " #/definitions/string_or_list" },
609+ "project_directory" : {"type" : " string" }
610+ },
611+ "additionalProperties" : false
612+ }
613+ ]
614+ },
615+
591616 "network" : {
592617 "id" : " #/definitions/network" ,
593618 "type" : [" object" , " null" ],
You can’t perform that action at this time.
0 commit comments