-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deployment updates
- Loading branch information
Showing
10 changed files
with
850 additions
and
66 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
{ | ||
"resourceType": "Patient", | ||
"id": "davinci-amy-shaw", | ||
"meta": { | ||
"profile": [ | ||
"http://hl7.org/fhir/us/davinci-cdex/StructureDefinition/cdex-patient-demographics" | ||
], | ||
"tag": [ | ||
{ | ||
"system": "http://terminology.hl7.org/CodeSystem/v3-ActReason", | ||
"code": "HTEST", | ||
"display": "test health data" | ||
} | ||
] | ||
}, | ||
"identifier": [ | ||
{ | ||
"use": "usual", | ||
"type": { | ||
"coding": [ | ||
{ | ||
"system": "http://hl7.org/fhir/us/davinci-hrex/CodeSystem/hrex-temp", | ||
"code": "UMB", | ||
"display": "Member Number" | ||
} | ||
], | ||
"text": "Member Number" | ||
}, | ||
"system": "http://example.org/cdex/payer/member-ids", | ||
"value": "Member123" | ||
} | ||
], | ||
"name": [ | ||
{ | ||
"family": "Shaw", | ||
"given": [ | ||
"Amy" | ||
] | ||
} | ||
], | ||
"birthDate": "1987-02-20" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
{ | ||
"resourceType": "Patient", | ||
"id": "davinci-jesse-smith", | ||
"meta": { | ||
"profile": [ | ||
"http://hl7.org/fhir/us/davinci-pas/StructureDefinition/profile-beneficiary" | ||
], | ||
"tag": [ | ||
{ | ||
"system": "http://terminology.hl7.org/CodeSystem/v3-ActReason", | ||
"code": "HTEST", | ||
"display": "test health data" | ||
} | ||
] | ||
}, | ||
"identifier": [ | ||
{ | ||
"system": "http://example.org/MIN", | ||
"value": "12345678902" | ||
} | ||
], | ||
"name": [ | ||
{ | ||
"family": "SMITH", | ||
"given": [ | ||
"JESSE" | ||
] | ||
} | ||
], | ||
"gender": "female", | ||
"birthDate": "1947-01-18", | ||
"address": [ | ||
{ | ||
"country": "US" | ||
} | ||
], | ||
"multipleBirthInteger": 1 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
{ | ||
"resourceType": "Patient", | ||
"id": "davinci-joe-smith", | ||
"meta": { | ||
"profile": [ | ||
"http://hl7.org/fhir/us/davinci-pas/StructureDefinition/profile-subscriber" | ||
], | ||
"tag": [ | ||
{ | ||
"system": "http://terminology.hl7.org/CodeSystem/v3-ActReason", | ||
"code": "HTEST", | ||
"display": "test health data" | ||
} | ||
] | ||
}, | ||
"extension": [ | ||
{ | ||
"url": "http://hl7.org/fhir/us/davinci-pas/StructureDefinition/extension-militaryStatus", | ||
"valueCodeableConcept": { | ||
"coding": [ | ||
{ | ||
"system": "https://codesystem.x12.org/005010/584", | ||
"code": "RU" | ||
} | ||
] | ||
} | ||
} | ||
], | ||
"identifier": [ | ||
{ | ||
"system": "http://example.org/MIN", | ||
"value": "12345678901" | ||
} | ||
], | ||
"name": [ | ||
{ | ||
"family": "SMITH", | ||
"given": [ | ||
"JOE" | ||
] | ||
} | ||
], | ||
"gender": "male" | ||
} |
62 changes: 62 additions & 0 deletions
62
fhirData/feature-cs/r4/Practitioner-davinci-ronald-bone.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
{ | ||
"resourceType": "Practitioner", | ||
"id": "davinci-ronald-bone", | ||
"meta": { | ||
"profile": [ | ||
"http://hl7.org/fhir/us/core/StructureDefinition/us-core-practitioner" | ||
], | ||
"tag": [ | ||
{ | ||
"system": "http://terminology.hl7.org/CodeSystem/v3-ActReason", | ||
"code": "HTEST", | ||
"display": "test health data" | ||
} | ||
] | ||
}, | ||
"identifier": [ | ||
{ | ||
"system": "http://hl7.org/fhir/sid/us-npi", | ||
"value": "9941339100" | ||
}, | ||
{ | ||
"extension": [ | ||
{ | ||
"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-jurisdiction", | ||
"valueCodeableConcept": { | ||
"coding": [ | ||
{ | ||
"system": "https://www.usps.com/", | ||
"code": "MA" | ||
} | ||
], | ||
"text": "Massachusetts" | ||
} | ||
} | ||
], | ||
"system": "http://www.acme.org/practitioners", | ||
"value": "25456" | ||
} | ||
], | ||
"name": [ | ||
{ | ||
"family": "Bone", | ||
"given": [ | ||
"Ronald" | ||
], | ||
"prefix": [ | ||
"Dr" | ||
] | ||
} | ||
], | ||
"address": [ | ||
{ | ||
"use": "work", | ||
"line": [ | ||
"1003 Healthcare Drive" | ||
], | ||
"city": "Amherst", | ||
"state": "MA", | ||
"postalCode": "01002" | ||
} | ||
] | ||
} |
36 changes: 36 additions & 0 deletions
36
fhirData/feature-cs/r4/Practitioner-davinci-susan-watson.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
{ | ||
"resourceType" : "Practitioner", | ||
"id" : "davinci-susan-watson", | ||
"meta" : { | ||
"profile" : [ | ||
"http://hl7.org/fhir/us/davinci-pas/StructureDefinition/profile-practitioner" | ||
], | ||
"tag": [ | ||
{ | ||
"system": "http://terminology.hl7.org/CodeSystem/v3-ActReason", | ||
"code": "HTEST", | ||
"display": "test health data" | ||
} | ||
] | ||
}, | ||
"identifier" : [ | ||
{ | ||
"system" : "http://hl7.org/fhir/sid/us-npi", | ||
"value" : "987654321" | ||
} | ||
], | ||
"name" : [ | ||
{ | ||
"family" : "WATSON", | ||
"given" : [ | ||
"SUSAN" | ||
] | ||
} | ||
], | ||
"telecom" : [ | ||
{ | ||
"system" : "phone", | ||
"value" : "4029993456" | ||
} | ||
] | ||
} |
17 changes: 17 additions & 0 deletions
17
fhirData/feature-cs/r4/PractitionerRole-referral-example.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"resourceType" : "PractitionerRole", | ||
"id" : "ReferralPractitionerRoleExample", | ||
"meta" : { | ||
"profile" : [ | ||
"http://hl7.org/fhir/us/davinci-pas/StructureDefinition/profile-practitionerrole" | ||
] | ||
}, | ||
"practitioner" : { | ||
"reference" : "Practitioner/davinci-susan-watson" | ||
}, | ||
"location" : [ | ||
{ | ||
"reference" : "Location/davinci-example-location" | ||
} | ||
] | ||
} |
17 changes: 17 additions & 0 deletions
17
fhirData/feature-cs/r4/PractitionerRole-surgical-example.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"resourceType" : "PractitionerRole", | ||
"id" : "SurgicalPractitionerRoleExample", | ||
"meta" : { | ||
"profile" : [ | ||
"http://hl7.org/fhir/us/davinci-pas/StructureDefinition/profile-practitionerrole" | ||
] | ||
}, | ||
"practitioner" : { | ||
"reference" : "Practitioner/davinci-susan-watson" | ||
}, | ||
"location" : [ | ||
{ | ||
"reference" : "Location/davinci-example-location" | ||
} | ||
] | ||
} |
Oops, something went wrong.