{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://weverlabs.com/schemas/free-agent-tools.schema.json",
  "title": "Free Agent Tools",
  "type": "object",
  "additionalProperties": true,
  "properties": {
    "mode": {
      "type": "string"
    },
    "rail_key": {
      "type": "string"
    },
    "idempotency_key": {
      "type": "string"
    },
    "transcript_hashes": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "movement_amount_units": {
      "type": "number"
    },
    "movement_type": {
      "type": "string",
      "enum": [
        "transaction",
        "escrow",
        "hybrid"
      ]
    }
  }
}