We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d94c543 commit 172973dCopy full SHA for 172973d
schemas/program/context.schema.yaml
@@ -8,10 +8,19 @@ description: |
8
9
type: object
10
11
-anyOf:
12
- - $ref: "schema:ethdebug/format/program/context/code"
13
- - $ref: "schema:ethdebug/format/program/context/variables"
14
- - $ref: "schema:ethdebug/format/program/context/remark"
+allOf:
+ - if:
+ required: ["code"]
+ then:
15
+ $ref: "schema:ethdebug/format/program/context/code"
16
17
+ required: ["variables"]
18
19
+ $ref: "schema:ethdebug/format/program/context/variables"
20
21
+ required: ["remark"]
22
23
+ $ref: "schema:ethdebug/format/program/context/remark"
24
25
unevaluatedProperties: false
26
0 commit comments