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": "account_identifier_parse",
"evidence_scope": "caller_supplied_data",
"parsed_account_identifier": "{\"address\":\"0x0000000000000000000000000000000000000001\",\"caip10\":\"eip155:8453:0x0000000000000000000000000000000000000001\",\"namespace\":\"eip155\",\"reference\":\"8453\"}",
"warnings": [
"Parsing does not validate account ownership or on-chain existence."
]
}
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",
"parsed_account_identifier",
"warnings"
],
"properties": {
"service_id": {
"type": "string",
"const": "account_identifier_parse",
"minLength": 24,
"maxLength": 24
},
"evidence_scope": {
"type": "string",
"const": "caller_supplied_data",
"minLength": 20,
"maxLength": 20
},
"parsed_account_identifier": {
"type": "string",
"minLength": 1,
"maxLength": 65536
},
"warnings": {
"type": "array",
"minItems": 1,
"maxItems": 8,
"items": {
"type": "string",
"minLength": 1,
"maxLength": 512
}
}
}
}