availity · Schema

ClaimAttachmentResponse

ClaimAttachmentResponse schema from Availity API

Properties

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

JSON Schema

claim-attachments-claim-attachment-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/availity/refs/heads/main/json-schema/claim-attachments-claim-attachment-response-schema.json",
  "title": "ClaimAttachmentResponse",
  "description": "ClaimAttachmentResponse schema from Availity API",
  "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"
    }
  }
}