File tree Expand file tree Collapse file tree 1 file changed +18
-0
lines changed
specs/composition/common/schemas/components Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -2,8 +2,26 @@ compositionBehavior:
22 type : object
33 additionalProperties : false
44 description : An object containing either an `injection` or `multifeed` behavior schema, but not both.
5+ oneOf :
6+ - $ref : ' #/compositionInjectionBehavior'
7+ - $ref : ' #/compositionMultifeedBehavior'
8+
9+ compositionInjectionBehavior :
10+ type : object
11+ additionalProperties : false
12+ description : An object containing an `injection` behavior.
513 properties :
614 injection :
715 $ref : ' ./injection/Behaviour.yml#/injection'
16+ required :
17+ - injection
18+
19+ compositionMultifeedBehavior :
20+ type : object
21+ additionalProperties : false
22+ description : An object containing a `multifeed` behavior.
23+ properties :
824 multifeed :
925 $ref : ' ./multifeed/Behaviour.yml#/multifeed'
26+ required :
27+ - multifeed
You can’t perform that action at this time.
0 commit comments