Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/FHIR/fhir-test-cases
Browse files Browse the repository at this point in the history
  • Loading branch information
Grahame Grieve committed Nov 14, 2023
2 parents 27bf132 + 78da0af commit 56f6505
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 19 deletions.
51 changes: 34 additions & 17 deletions r4b/explanationofbenefit-example.json
Original file line number Diff line number Diff line change
@@ -1,40 +1,57 @@
{
"resourceType" : "ExplanationOfBenefit",
"resourceType": "ExplanationOfBenefit",
"id": "example",
"supportingInfo" : [
"status": "active",
"type": { "text": "type" },
"use": "preauthorization",
"patient": { "display": "Mr not so good today sir" },
"created": "2023-09",
"insurer": { "display": "insurer" },
"provider": { "display": "provider" },
"outcome": "queued",
"insurance": [
{
"sequence" : 1,
"category" : {
"coding" : [
"focal": true,
"coverage": { "display": "coverage" },
"preAuthRef": "ref#1"
}
],
"supportingInfo": [
{
"sequence": 1,
"category": {
"coding": [
{
"system" : "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBSupportingInfoType",
"code" : "additionalbodysite"
"system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBSupportingInfoType",
"code": "additionalbodysite"
}
]
}
},
{
"sequence" : 2,
"category" : {
"coding" : [
"sequence": 2,
"category": {
"coding": [
{
"system" : "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBSupportingInfoType",
"code" : "additionalbodysite"
"system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBSupportingInfoType",
"code": "additionalbodysite"
}
]
}
}
],
"item" : [
"item": [
{
"sequence" : 1,
"informationSequence" : [
"sequence": 1,
"productOrService": { "text": "item 1" },
"informationSequence": [
2
]
},
{
"sequence" : 2,
"informationSequence" : [
"sequence": 2,
"productOrService": { "text": "item 2" },
"informationSequence": [
1
]
}
Expand Down
5 changes: 3 additions & 2 deletions r4b/patient-container-example.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,14 @@
"id" : "example-container",
"contained" : [{
"resourceType" : "Organization",
"id" : "1"
"id" : "1",
"name" : "Gastroenterology"
}],
"name" : [{
"text" : "some-name"
}],
"managingOrganization" : {
"reference" : "1",
"reference" : "#1",
"display" : "Gastroenterology"
}
}

0 comments on commit 56f6505

Please sign in to comment.