{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Get Payment Agent Request",
  "description": "Request for the full profile of a single payment agent",
  "type": "object",
  "properties": {
    "headers": {
      "type": "object",
      "properties": {
        "Deriv-App-ID": {
          "type": "string",
          "description": "Application identifier"
        },
        "Authorization": {
          "type": "string",
          "description": "Bearer token for authentication",
          "example": "Bearer YOUR_AUTH_TOKEN"
        }
      },
      "required": ["Deriv-App-ID", "Authorization"]
    },
    "path": {
      "type": "object",
      "properties": {
        "id": {
          "type": "string",
          "description": "Numeric ID of the payment agent (as returned by the list endpoint) or the literal string `me` to return the authenticated client's own agent profile. Any other non-numeric value returns `InvalidAgentID`.",
          "example": "42"
        }
      },
      "required": ["id"]
    }
  },
  "required": ["headers", "path"]
}
