availity · Schema

ClaimAttachmentResponse

Properties

Name Type Description
id string
status string
controlNumber string
View JSON Schema on GitHub

JSON Schema

availity-claimattachmentresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ClaimAttachmentResponse",
  "title": "ClaimAttachmentResponse",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "example": "500123"
    },
    "status": {
      "type": "string",
      "enum": [
        "SUBMITTED",
        "ACCEPTED",
        "REJECTED",
        "PENDING"
      ],
      "example": "ACCEPTED"
    },
    "controlNumber": {
      "type": "string",
      "example": "ATT-2025-001234"
    }
  }
}