Skip to content

Commit

Permalink
update schema
Browse files Browse the repository at this point in the history
  • Loading branch information
ianthpun committed Feb 3, 2024
1 parent 12bdcfc commit c2e5a0d
Showing 1 changed file with 41 additions and 11 deletions.
52 changes: 41 additions & 11 deletions schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,10 @@
},
"additionalProperties": false,
"type": "object",
"required": ["address", "keys"]
"required": [
"address",
"keys"
]
},
"advanceKey": {
"properties": {
Expand Down Expand Up @@ -75,7 +78,9 @@
},
"additionalProperties": false,
"type": "object",
"required": ["type"]
"required": [
"type"
]
},
"advancedAccount": {
"properties": {
Expand All @@ -88,7 +93,10 @@
},
"additionalProperties": false,
"type": "object",
"required": ["address", "key"]
"required": [
"address",
"key"
]
},
"advancedNetwork": {
"properties": {
Expand All @@ -101,7 +109,10 @@
},
"additionalProperties": false,
"type": "object",
"required": ["host", "key"]
"required": [
"host",
"key"
]
},
"contractDeployment": {
"properties": {
Expand All @@ -117,7 +128,10 @@
},
"additionalProperties": false,
"type": "object",
"required": ["name", "args"]
"required": [
"name",
"args"
]
},
"deployment": {
"oneOf": [
Expand Down Expand Up @@ -187,7 +201,10 @@
},
"additionalProperties": false,
"type": "object",
"required": ["source", "aliases"]
"required": [
"source",
"aliases"
]
},
"jsonContracts": {
"patternProperties": {
Expand Down Expand Up @@ -234,7 +251,11 @@
},
"additionalProperties": false,
"type": "object",
"required": ["source", "hash", "aliases"]
"required": [
"source",
"hash",
"aliases"
]
},
"jsonDeployment": {
"patternProperties": {
Expand Down Expand Up @@ -266,7 +287,10 @@
},
"additionalProperties": false,
"type": "object",
"required": ["port", "serviceAccount"]
"required": [
"port",
"serviceAccount"
]
},
"jsonEmulators": {
"patternProperties": {
Expand Down Expand Up @@ -305,7 +329,10 @@
},
"additionalProperties": false,
"type": "object",
"required": ["address", "key"]
"required": [
"address",
"key"
]
},
"simpleAccountPre022": {
"properties": {
Expand All @@ -318,10 +345,13 @@
},
"additionalProperties": false,
"type": "object",
"required": ["address", "keys"]
"required": [
"address",
"keys"
]
},
"simpleNetwork": {
"type": "string"
}
}
}
}

0 comments on commit c2e5a0d

Please sign in to comment.