availity · JSON Structure

Service Reviews Attachment Request Structure

AttachmentRequest schema from Availity API

Type: object Properties: 6 Required: 6

AttachmentRequest is a JSON Structure definition published by availity, describing 6 properties, of which 6 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

payerId patient subscriber provider certificationNumber attachments

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/availity/refs/heads/main/json-structure/service-reviews-attachment-request-structure.json",
  "description": "AttachmentRequest schema from Availity API",
  "type": "object",
  "required": [
    "payerId",
    "patient",
    "subscriber",
    "provider",
    "certificationNumber",
    "attachments"
  ],
  "properties": {
    "payerId": {
      "type": "string",
      "example": "BCBS001"
    },
    "patient": {
      "type": "object",
      "properties": {
        "firstName": {
          "type": "string",
          "example": "Jane"
        },
        "lastName": {
          "type": "string",
          "example": "Smith"
        }
      }
    },
    "subscriber": {
      "type": "object",
      "properties": {
        "memberId": {
          "type": "string",
          "example": "MEM123456"
        }
      }
    },
    "provider": {
      "type": "object",
      "properties": {
        "npi": {
          "type": "string",
          "example": "1234567890"
        }
      }
    },
    "certificationNumber": {
      "type": "string",
      "example": "AUTH-2025-001234"
    },
    "attachments": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "contentType": {
            "type": "string",
            "example": "application/pdf"
          },
          "data": {
            "type": "string",
            "format": "byte"
          },
          "name": {
            "type": "string",
            "example": "Clinical Notes"
          }
        }
      }
    }
  },
  "name": "AttachmentRequest"
}