Skip to content

Commit 9c364af

Browse files
authored
fix: missing commas (#39)
1 parent 04f29b6 commit 9c364af

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

docs/openrpc.json

+8-6
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,9 @@
402402
{
403403
"name": "amount",
404404
"required": true,
405-
"type": "string"
405+
"schema": {
406+
"type": "string"
407+
}
406408
},
407409
{
408410
"name": "address",
@@ -573,7 +575,7 @@
573575
"type": "object",
574576
"oneOf": [
575577
{
576-
"description": "Output denotes a token transfer."
578+
"description": "Output denotes a token transfer.",
577579
"properties": {
578580
"value": {
579581
"description": "Amount of tokens to transfer.",
@@ -587,21 +589,21 @@
587589
"address": {
588590
"description": "Recipient of token transfer.",
589591
"$ref": "#/components/schemas/Address"
590-
},
592+
}
591593
},
592594
"required": ["value", "address"]
593595
},
594596
{
595-
"description": "Output is a 'data output'. Register arbitrary data on the blockchain."
597+
"description": "Output is a 'data output'. Register arbitrary data on the blockchain.",
596598
"properties": {
597599
"type": {
598-
"description": "Use to mark this output as a 'data output'."
600+
"description": "Use to mark this output as a 'data output'.",
599601
"const": "data"
600602
},
601603
"data": {
602604
"description": "Unit of information or data point to be registered on the ledger (blockchain).",
603605
"type": "string"
604-
},
606+
}
605607
},
606608
"required": ["data"]
607609
}

0 commit comments

Comments
 (0)