{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ClaimAttachmentRequest", "title": "ClaimAttachmentRequest", "type": "object", "required": [ "payerId", "claimNumber", "provider", "attachments" ], "properties": { "payerId": { "type": "string", "example": "BCBS001" }, "claimNumber": { "type": "string", "example": "CLM-2025-001234" }, "provider": { "type": "object", "properties": { "npi": { "type": "string", "example": "1234567890" } } }, "attachmentType": { "type": "string", "enum": [ "STRUCTURED", "UNSTRUCTURED" ], "example": "UNSTRUCTURED" }, "attachments": { "type": "array", "items": { "type": "object", "properties": { "contentType": { "type": "string", "example": "application/pdf" }, "title": { "type": "string", "example": "Operative Report" }, "data": { "type": "string", "format": "byte" } } } } } }