Includes pricing/payment terms and x402 endpoint for issuing a receipt against an accept.
Record Key
tid
Timestamp-based ID
Properties
cost
unknown
Required
Numeric price (integer or float) per the chosen frequency.
currency
string
Required
Currency code, e.g. 'USDC'.
frequency
string
Required
Billing frequency, e.g. 'monthly', 'hourly', 'one-time'.
prepay
boolean
Required
Whether payment is required before compute starts.
url
string
Required
x402 payment URL template (may contain {at} and {cid} placeholders for the com.publicdomainrelay.temp.market.accept AT URI/CID).
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"cost",
"currency",
"frequency",
"prepay",
"url"
],
"properties": {
"url": {
"type": "string",
"description": "x402 payment URL template (may contain {at} and {cid} placeholders for the com.publicdomainrelay.temp.market.accept AT URI/CID)."
},
"cost": {
"type": "unknown",
"description": "Numeric price (integer or float) per the chosen frequency."
},
"prepay": {
"type": "boolean",
"description": "Whether payment is required before compute starts."
},
"currency": {
"type": "string",
"description": "Currency code, e.g. 'USDC'."
},
"frequency": {
"type": "string",
"description": "Billing frequency, e.g. 'monthly', 'hourly', 'one-time'."
}
}
},
"description": "Includes pricing/payment terms and x402 endpoint for issuing a receipt against an accept."
}