Veterans Affairs · Example Payload

Va Higher Level Review Request Example

VeteransGovernmentHealthBenefitsFHIRAppealsFederal

Va Higher Level Review Request Example is an example object payload from Veterans Affairs, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

dataincluded

Example Payload

Raw ↑
{
  "data": {
    "type": "higherLevelReview",
    "attributes": {
      "informalConference": false,
      "benefitType": "lifeInsurance",
      "veteran": {
        "icn": "1012667145V762142",
        "ssn": "123456789",
        "firstName": "Jane",
        "lastName": "Doe",
        "birthDate": "1969-12-31",
        "homeless": false,
        "address": {
          "addressLine1": "123 Some St.",
          "city": "Sometown",
          "countryCodeIso3": "USA",
          "zipCode5": "12345"
        }
      }
    }
  },
  "included": [
    {
      "type": "appealableIssue",
      "attributes": {
        "issue": "left shoulder",
        "decisionDate": "1920-12-01"
      }
    }
  ]
}