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": "nft_royalty_calculate",
"evidence_scope": "caller_supplied_data",
"nft_royalty_calculation": "{\"basis_points\":500,\"royalty_atomic\":\"500\",\"sale_atomic\":\"10000\",\"seller_proceeds_before_fees_atomic\":\"9500\"}",
"warnings": [
"Royalty configuration and enforceability are not independently verified."
]
}
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",
"nft_royalty_calculation",
"warnings"
],
"properties": {
"service_id": {
"type": "string",
"const": "nft_royalty_calculate",
"minLength": 21,
"maxLength": 21
},
"evidence_scope": {
"type": "string",
"const": "caller_supplied_data",
"minLength": 20,
"maxLength": 20
},
"nft_royalty_calculation": {
"type": "string",
"minLength": 1,
"maxLength": 65536
},
"warnings": {
"type": "array",
"minItems": 1,
"maxItems": 8,
"items": {
"type": "string",
"minLength": 1,
"maxLength": 512
}
}
}
}