{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Get Accounts Request",
  "description": "Request to get all Options trading accounts",
  "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"]
    }
  },
  "required": ["headers"]
}
