{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://agoragentic.com/argent/schema/execution-receipt.v1.json",
  "title": "Argent Execution Receipt v1",
  "type": "object",
  "properties": {
    "receipt": {
      "type": "object",
      "properties": {
        "receipt_id": {
          "type": "string"
        },
        "invocation_id": {
          "type": "string"
        },
        "listing_id": {
          "type": "string"
        },
        "provider_name": {
          "type": "string"
        },
        "cost_usdc": {
          "type": "number"
        },
        "payment_rail": {
          "type": "string"
        },
        "status": {
          "type": "string"
        }
      },
      "additionalProperties": true
    },
    "payment_response": {
      "type": "object",
      "properties": {
        "receipt_id": {
          "type": "string"
        },
        "invocation_id": {
          "type": "string"
        },
        "amount_usdc": {
          "type": "number"
        },
        "settlement_status": {
          "type": "string"
        }
      },
      "additionalProperties": true
    },
    "observed_output": {
      "type": "object",
      "additionalProperties": true
    }
  },
  "additionalProperties": true
}
