Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prefix data model with domain name explicitly. #18505

Merged
merged 1 commit into from
Apr 1, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7,37 +7,37 @@
},
"paths": {},
"definitions": {
"FhirResourceCreatedEventData": {
"HealthcareFhirResourceCreatedEventData": {
"description": "Schema of the Data property of an EventGridEvent for a Microsoft.HealthcareApis.FhirResourceCreated event.",
"allOf": [
{
"$ref": "#/definitions/FhirResourceEventBaseProperties"
"$ref": "#/definitions/HealthcareFhirResourceEventBaseProperties"
}
]
},
"FhirResourceUpdatedEventData": {
"HealthcareFhirResourceUpdatedEventData": {
"description": "Schema of the Data property of an EventGridEvent for a Microsoft.HealthcareApis.FhirResourceUpdated event.",
"allOf": [
{
"$ref": "#/definitions/FhirResourceEventBaseProperties"
"$ref": "#/definitions/HealthcareFhirResourceEventBaseProperties"
}
]
},
"FhirResourceDeletedEventData": {
"HealthcareFhirResourceDeletedEventData": {
"description": "Schema of the Data property of an EventGridEvent for a Microsoft.HealthcareApis.FhirResourceDeleted event.",
"allOf": [
{
"$ref": "#/definitions/FhirResourceEventBaseProperties"
"$ref": "#/definitions/HealthcareFhirResourceEventBaseProperties"
}
]
},
"FhirResourceEventBaseProperties": {
"HealthcareFhirResourceEventBaseProperties": {
"description": "Schema of common properties of all FhirResource events",
"type": "object",
"properties": {
"resourceType": {
"description": "Type of HL7 FHIR resource.",
"$ref": "#/definitions/FhirResourceType"
"$ref": "#/definitions/HealthcareFhirResourceType"
},
"resourceFhirAccount": {
"description": "Domain name of FHIR account for this resource.",
Expand All @@ -54,7 +54,7 @@
}
}
},
"FhirResourceType": {
"HealthcareFhirResourceType": {
"description": "Schema of FHIR resource type enumeration.",
"type": "string",
"enum": [
Expand Down Expand Up @@ -221,7 +221,7 @@
"VisionPrescription"
],
"x-ms-enum": {
"name": "FhirResourceType",
"name": "HealthcareFhirResourceType",
JoshLove-msft marked this conversation as resolved.
Show resolved Hide resolved
"modelAsString": true,
"values": [
{
Expand Down