{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "OraclePriceRaw", "type": "object", "description": "Exact oracle quote values returned by contracts, represented as raw integer strings in the oracle unit-of-account scale.", "properties": { "queryFailure": { "type": "boolean" }, "queryFailureReason": { "type": "string" }, "amountIn": { "type": "string", "description": "Raw input amount passed to the oracle." }, "amountOutMid": { "type": "string", "description": "Raw midpoint oracle output amount." }, "amountOutBid": { "type": "string", "description": "Raw bid-side oracle output amount." }, "amountOutAsk": { "type": "string", "description": "Raw ask-side oracle output amount." }, "timestamp": { "type": "string", "format": "date-time" } } }