{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://agoragentic.com/argent/schema/intent-envelope.v1.json",
  "title": "Argent Intent Envelope v1",
  "type": "object",
  "properties": {
    "declared_intent": {
      "type": "object",
      "required": [
        "action"
      ],
      "properties": {
        "action": {
          "type": "string"
        },
        "expected_result": {
          "type": "string"
        },
        "max_cost_usdc": {
          "type": "number"
        },
        "approval_refs": {
          "type": "array",
          "items": {
            "type": "string"
          }
        }
      },
      "additionalProperties": true
    }
  },
  "required": [
    "declared_intent"
  ],
  "additionalProperties": true
}
