Skip to content

Commit

Permalink
update openapi.json
Browse files Browse the repository at this point in the history
  • Loading branch information
ecioppettini committed Mar 4, 2024
1 parent e1bca8e commit cde3ec4
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions docs/bin/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -1111,6 +1111,16 @@
},
"TransactionInfo": {
"properties": {
"inputCredentials": {
"items": {
"type": "string"
},
"type": "array"
},
"metadata": {
"type": "string",
"nullable": true
},
"payload": {
"type": "string",
"description": "cbor-encoded transaction",
Expand Down Expand Up @@ -1166,10 +1176,35 @@
"description": "Filter which uses of the address are considered relevant for the query.\n\nThis is a bitmask, so you can combine multiple options\nex: `RelationFilterType.Input & RelationFilterType.Output`\n\nNote: relations only apply to credentials and not to full bech32 addresses",
"pattern": "([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])"
},
"SlotLimits": {
"properties": {
"to": {
"type": "number",
"format": "double"
},
"from": {
"type": "number",
"format": "double"
}
},
"required": [
"to",
"from"
],
"type": "object"
},
"TransactionHistoryRequest": {
"allOf": [
{
"properties": {
"withInputContext": {
"type": "boolean",
"description": "If this is set to true, the result includes the input addresses (which are\nnot part of the tx), and the metadata (if any)"
},
"slotLimits": {
"$ref": "#/components/schemas/SlotLimits",
"description": "This limits the transactions in the result to this range of slots.\nEverything else is filtered out"
},
"limit": {
"type": "number",
"format": "double",
Expand Down

0 comments on commit cde3ec4

Please sign in to comment.