SupportedResponse
Response from facilitator /supported endpoint
Properties
| Property | Type | Required | Description |
|---|---|---|---|
extensions |
array,null | No | List of supported extensions |
kinds |
Array<SupportedKind> | Yes | List of supported payment kinds |
signers |
any | No | Signer addresses by network family |
View JSON Schema
{
"type": "object",
"description": "Response from facilitator /supported endpoint",
"required": [
"kinds"
],
"properties": {
"extensions": {
"type": [
"array",
"null"
],
"items": {
"type": "string"
},
"description": "List of supported extensions"
},
"kinds": {
"type": "array",
"items": {
"$ref": "#/components/schemas/SupportedKind"
},
"description": "List of supported payment kinds"
},
"signers": {
"description": "Signer addresses by network family"
}
}
}