Skip to content

Commit

Permalink
Add non-polymorphic Local to ArkFile JSON schema
Browse files Browse the repository at this point in the history
  • Loading branch information
Lipen committed Jun 7, 2024
1 parent 958263d commit 1380fc2
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion jacodb-panda-dynamic/src/main/resources/arkfile-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
},
"locals": {
"items": {
"$ref": "#/definitions/Value.Local"
"$ref": "#/definitions/Local"
},
"type": "array"
}
Expand Down Expand Up @@ -519,6 +519,21 @@
],
"type": "object"
},
"Local": {
"properties": {
"name": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"name",
"type"
],
"type": "object"
},
"Method": {
"properties": {
"body": {
Expand Down

0 comments on commit 1380fc2

Please sign in to comment.