The raw content of the file is shown because it could not be parsed as a FHIR resource
{
  "resourceType" : "Condition",
  // from Resource: id, meta, implicitRules, and language
  // from DomainResource: text, contained, extension, and modifierExtension
  "identifier" : "Identifier", // External Ids for this condition
  "clinicalStatus" : "CodeableConcept", // I R!  active | recurrence | relapse | inactive | remission | resolved | unknown
  "verificationStatus" : "CodeableConcept", // unconfirmed | provisional | differential | confirmed | refuted | entered-in-error
  "category" : "CodeableConcept", // I problem-list-item | encounter-diagnosis
  "severity" : "CodeableConcept", // Subjective severity of condition
  "code" : "CodeableConcept", // Identification of the condition, problem or diagnosis
  "bodySite" : "CodeableConcept", // Anatomical location, if relevant
  "subject" : { Reference(Group|Patient) }, // R!  Who has the condition?
  "encounter" : { Reference(Encounter) }, // The Encounter during which this Condition was created
  // onset[x]: Estimated or actual date,  date-time, or age. One of these 5:
  "onsetDateTime" : "<dateTime>",
  "onsetAge" : { Age },
  "onsetPeriod" : { Period },
  "onsetRange" : { Range },
  "onsetString" : "<string>",
  // abatement[x]: When in resolution/remission. One of these 5:
  "abatementDateTime" : "<dateTime>",
  "abatementAge" : { Age },
  "abatementPeriod" : { Period },
  "abatementRange" : { Range },
  "abatementString" : "<string>",
  "recordedDate" : "<dateTime>", // Date condition was first recorded
  "participant" : [{ // Who or what participated in the activities related to the condition and how they were involved
    "function" : { CodeableConcept }, // Type of involvement
    "actor" : { Reference(CareTeam|Device|Organization|Patient|Practitioner|
    PractitionerRole|RelatedPerson) } // R!  Who or what participated in the activities related to the condition
  }],
  "stage" : [{ // Stage/grade, usually assessed formally
    "summary" : { CodeableConcept }, // I Simple summary (disease specific)
    "assessment" : [{ Reference(ClinicalImpression|DiagnosticReport|Observation) }], // I Formal record of assessment
    "type" : { CodeableConcept } // Kind of staging
  }],
  "evidence" : [{ CodeableReference(Any) }], // Supporting evidence for the verification status
  "note" : [{ Annotation }] // Additional information about the Condition
}