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_block_header_inspect",
"evidence_scope": "caller_supplied_data",
"bitcoin_block_header": "{\"bits\":486604799,\"block_hash\":\"000000000019d6689c085ae165831e934ff763ae46a2a6c172b3f1b60a8ce26f\",\"merkle_root\":\"4a5e1e4baab89f3a32518a88c31bc87f618f76673e2cc77ab2127b7afdeda33b\",\"nonce\":2083236893,\"previous_block_hash\":\"0000000000000000000000000000000000000000000000000000000000000000\",\"target_hex\":\"00000000ffff0000000000000000000000000000000000000000000000000000\",\"timestamp\":1231006505,\"version\":1}",
"warnings": [
"The header is not checked against consensus history or proof-of-work unless requested fields permit it."
]
}
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_block_header",
"warnings"
],
"properties": {
"service_id": {
"type": "string",
"const": "bitcoin_block_header_inspect",
"minLength": 28,
"maxLength": 28
},
"evidence_scope": {
"type": "string",
"const": "caller_supplied_data",
"minLength": 20,
"maxLength": 20
},
"bitcoin_block_header": {
"type": "string",
"minLength": 1,
"maxLength": 65536
},
"warnings": {
"type": "array",
"minItems": 1,
"maxItems": 8,
"items": {
"type": "string",
"minLength": 1,
"maxLength": 512
}
}
}
}