VA Benefits Claim

Status and lifecycle metadata for a Veteran benefits claim.

Federal GovernmentHealthcareVeterans

Properties

Name Type Description
id string
type string
attributes object
View JSON Schema on GitHub

JSON Schema

va-claim-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.com/department-of-veterans-affairs/schemas/claim.json",
  "title": "VA Benefits Claim",
  "description": "Status and lifecycle metadata for a Veteran benefits claim.",
  "type": "object",
  "required": ["id", "type", "attributes"],
  "properties": {
    "id": { "type": "string" },
    "type": { "type": "string", "const": "claim" },
    "attributes": {
      "type": "object",
      "properties": {
        "baseEndProductCode": { "type": ["string", "null"] },
        "claimDate": { "type": ["string", "null"], "format": "date" },
        "claimType": { "type": ["string", "null"] },
        "claimPhaseDates": {
          "type": "object",
          "properties": {
            "phaseChangeDate": { "type": ["string", "null"], "format": "date" },
            "currentPhaseBack": { "type": "boolean" },
            "latestPhaseType": { "type": ["string", "null"] }
          }
        },
        "decisionLetterSent": { "type": "boolean" },
        "developmentLetterSent": { "type": "boolean" },
        "documentsNeeded": { "type": "boolean" },
        "endProductCode": { "type": ["string", "null"] },
        "evidenceWaiverSubmitted5103": { "type": "boolean" },
        "lighthouseId": { "type": ["string", "null"] },
        "status": {
          "type": "string",
          "enum": [
            "PENDING",
            "CLAIM_RECEIVED",
            "INITIAL_REVIEW",
            "EVIDENCE_GATHERING_REVIEW_DECISION",
            "PREPARATION_FOR_NOTIFICATION",
            "COMPLETE"
          ]
        }
      }
    }
  }
}