changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "count": {
+ "description": "Number of items returned.",
+ "type": "integer"
+ },
+ "items": {
+ "description": "List of transactions for address",
+ "items": {
+ "properties": {
+ "fee": {
+ "description": "Transaction fee in satoshis",
+ "type": "number"
+ },
+ "locktime": {
+ "description": "Lock time",
+ "type": "number"
+ },
+ "size": {
+ "description": "Transaction size in bytes",
+ "type": "number"
+ },
+ "status": {
+ "properties": {
+ "block_hash": {
+ "type": "string"
+ },
+ "block_height": {
+ "type": "number"
+ },
+ "block_time": {
+ "type": "number"
+ },
+ "confirmed": {
+ "type": "boolean"
+ }
+ },
+ "type": "object"
+ },
+ "txid": {
+ "description": "Transaction ID",
+ "type": "string"
+ },
+ "version": {
+ "description": "Transaction version",
+ "type": "number"
+ },
+ "vin": {
+ "items": {
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "vout": {
+ "items": {
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "weight": {
+ "description": "Transaction weight",
+ "type": "number"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "items",
+ "count"
+ ],
+ "type": "object"
+}