From 368411427969a9a89ba2cd5da5a318302d124ed1 Mon Sep 17 00:00:00 2001 From: Yan Martins Date: Tue, 13 May 2025 17:57:27 -0300 Subject: [PATCH] fix: missing commas --- docs/openrpc.json | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/docs/openrpc.json b/docs/openrpc.json index 3afb1d2..1e67104 100644 --- a/docs/openrpc.json +++ b/docs/openrpc.json @@ -402,7 +402,9 @@ { "name": "amount", "required": true, - "type": "string" + "schema": { + "type": "string" + } }, { "name": "address", @@ -573,7 +575,7 @@ "type": "object", "oneOf": [ { - "description": "Output denotes a token transfer." + "description": "Output denotes a token transfer.", "properties": { "value": { "description": "Amount of tokens to transfer.", @@ -587,21 +589,21 @@ "address": { "description": "Recipient of token transfer.", "$ref": "#/components/schemas/Address" - }, + } }, "required": ["value", "address"] }, { - "description": "Output is a 'data output'. Register arbitrary data on the blockchain." + "description": "Output is a 'data output'. Register arbitrary data on the blockchain.", "properties": { "type": { - "description": "Use to mark this output as a 'data output'." + "description": "Use to mark this output as a 'data output'.", "const": "data" }, "data": { "description": "Unit of information or data point to be registered on the ledger (blockchain).", "type": "string" - }, + } }, "required": ["data"] }