Skip to content

Commit

Permalink
Prefix data model with domain name explicitly. (Azure#18505)
Browse files Browse the repository at this point in the history
  • Loading branch information
ms-teli authored and FredericHeem committed May 16, 2022
1 parent e43517c commit 6fd3572
Showing 1 changed file with 10 additions and 10 deletions.
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",
"modelAsString": true,
"values": [
{
Expand Down

0 comments on commit 6fd3572

Please sign in to comment.