Realistic output shape
Illustrative output from the canonical adapter fixture and schema. It is not a completed paid execution or a current live observation.
{
"service_id": "bitcoin_utxo_selection",
"evidence_scope": "caller_supplied_data",
"bitcoin_utxo_selection": "{\"estimated_change_sats\":\"9860\",\"estimated_fee_sats\":\"140\",\"input_total_sats\":\"20000\",\"model\":\"p2wpkh_inputs_two_outputs\",\"selected\":[{\"txid\":\"1111111111111111111111111111111111111111111111111111111111111111\",\"value_sats\":\"20000\",\"vout\":0}],\"target_sats\":\"10000\"}",
"warnings": [
"This is a calculation only and does not lock, spend, or verify UTXOs."
]
}
View complete output schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"additionalProperties": false,
"minProperties": 4,
"maxProperties": 4,
"required": [
"service_id",
"evidence_scope",
"bitcoin_utxo_selection",
"warnings"
],
"properties": {
"service_id": {
"type": "string",
"const": "bitcoin_utxo_selection",
"minLength": 22,
"maxLength": 22
},
"evidence_scope": {
"type": "string",
"const": "caller_supplied_data",
"minLength": 20,
"maxLength": 20
},
"bitcoin_utxo_selection": {
"type": "string",
"minLength": 1,
"maxLength": 65536
},
"warnings": {
"type": "array",
"minItems": 1,
"maxItems": 8,
"items": {
"type": "string",
"minLength": 1,
"maxLength": 512
}
}
}
}