Skip to content

Commit

Permalink
Update HealthcareApis.json (Azure#18586)
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshLove-msft authored and FredericHeem committed May 16, 2022
1 parent d708a38 commit b6a6969
Showing 1 changed file with 55 additions and 20 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,48 +9,82 @@
"definitions": {
"HealthcareFhirResourceCreatedEventData": {
"description": "Schema of the Data property of an EventGridEvent for a Microsoft.HealthcareApis.FhirResourceCreated event.",
"allOf": [
{
"$ref": "#/definitions/HealthcareFhirResourceEventBaseProperties"
"type": "object",
"properties": {
"resourceType": {
"description": "Type of HL7 FHIR resource.",
"$ref": "#/definitions/HealthcareFhirResourceType",
"x-ms-client-name": "FhirResourceType"
},
"resourceFhirAccount": {
"description": "Domain name of FHIR account for this resource.",
"type": "string",
"x-ms-client-name": "FhirServiceHostName"
},
"resourceFhirId": {
"description": "Id of HL7 FHIR resource.",
"type": "string",
"x-ms-client-name": "FhirResourceId"
},
"resourceVersionId": {
"description": "VersionId of HL7 FHIR resource. It changes when the resource is created, updated, or deleted(soft-deletion).",
"type": "integer",
"format": "int64",
"x-ms-client-name": "FhirResourceVersionId"
}
]
}
},
"HealthcareFhirResourceUpdatedEventData": {
"description": "Schema of the Data property of an EventGridEvent for a Microsoft.HealthcareApis.FhirResourceUpdated event.",
"allOf": [
{
"$ref": "#/definitions/HealthcareFhirResourceEventBaseProperties"
"type": "object",
"properties": {
"resourceType": {
"description": "Type of HL7 FHIR resource.",
"$ref": "#/definitions/HealthcareFhirResourceType",
"x-ms-client-name": "FhirResourceType"
},
"resourceFhirAccount": {
"description": "Domain name of FHIR account for this resource.",
"type": "string",
"x-ms-client-name": "FhirServiceHostName"
},
"resourceFhirId": {
"description": "Id of HL7 FHIR resource.",
"type": "string",
"x-ms-client-name": "FhirResourceId"
},
"resourceVersionId": {
"description": "VersionId of HL7 FHIR resource. It changes when the resource is created, updated, or deleted(soft-deletion).",
"type": "integer",
"format": "int64",
"x-ms-client-name": "FhirResourceVersionId"
}
]
}
},
"HealthcareFhirResourceDeletedEventData": {
"description": "Schema of the Data property of an EventGridEvent for a Microsoft.HealthcareApis.FhirResourceDeleted event.",
"allOf": [
{
"$ref": "#/definitions/HealthcareFhirResourceEventBaseProperties"
}
]
},
"HealthcareFhirResourceEventBaseProperties": {
"description": "Schema of common properties of all FhirResource events",
"type": "object",
"properties": {
"resourceType": {
"description": "Type of HL7 FHIR resource.",
"$ref": "#/definitions/HealthcareFhirResourceType"
"$ref": "#/definitions/HealthcareFhirResourceType",
"x-ms-client-name": "FhirResourceType"
},
"resourceFhirAccount": {
"description": "Domain name of FHIR account for this resource.",
"type": "string"
"type": "string",
"x-ms-client-name": "FhirServiceHostName"
},
"resourceFhirId": {
"description": "Id of HL7 FHIR resource.",
"type": "string"
"type": "string",
"x-ms-client-name": "FhirResourceId"
},
"resourceVersionId": {
"description": "VersionId of HL7 FHIR resource. It changes when the resource is created, updated, or deleted(soft-deletion).",
"type": "integer",
"format": "int64"
"format": "int64",
"x-ms-client-name": "FhirResourceVersionId"
}
}
},
Expand Down Expand Up @@ -873,3 +907,4 @@
}
}
}

0 comments on commit b6a6969

Please sign in to comment.