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": "candles_resample",
"evidence_scope": "caller_supplied_data",
"resampled_candles": "{\"candles\":[{\"close\":\"11\",\"high\":\"12\",\"low\":\"9\",\"open\":\"10\",\"source_candle_count\":1,\"timestamp_ms\":1699999920000,\"volume\":\"100\"},{\"close\":\"12\",\"high\":\"13\",\"low\":\"10\",\"open\":\"11\",\"source_candle_count\":1,\"timestamp_ms\":1700000040000,\"volume\":\"120\"}],\"interval_ms\":120000}",
"warnings": [
"Missing source intervals remain gaps and are not fabricated."
]
}
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",
"resampled_candles",
"warnings"
],
"properties": {
"service_id": {
"type": "string",
"const": "candles_resample",
"minLength": 16,
"maxLength": 16
},
"evidence_scope": {
"type": "string",
"const": "caller_supplied_data",
"minLength": 20,
"maxLength": 20
},
"resampled_candles": {
"type": "string",
"minLength": 1,
"maxLength": 65536
},
"warnings": {
"type": "array",
"minItems": 1,
"maxItems": 8,
"items": {
"type": "string",
"minLength": 1,
"maxLength": 512
}
}
}
}