AT&T · Schema

ErrorInfo

5GBroadbandCAMARAConnectivityDevice StatusEdge ComputingEnterpriseFortune 100MessagingMobileNetworkNetwork APIsSIM SwapSpeechTelecommunicationsWirelessWireline

Properties

Name Type Description
status integer HTTP status code
code string CAMARA error code
message string Human-readable error message
View JSON Schema on GitHub

JSON Schema

att-errorinfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ErrorInfo",
  "title": "ErrorInfo",
  "type": "object",
  "properties": {
    "status": {
      "type": "integer",
      "description": "HTTP status code",
      "example": 400
    },
    "code": {
      "type": "string",
      "description": "CAMARA error code",
      "example": "INVALID_ARGUMENT"
    },
    "message": {
      "type": "string",
      "description": "Human-readable error message",
      "example": "Invalid device identifier provided"
    }
  }
}