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

Update HealthcareApis.json #18586

Merged
merged 1 commit into from
Apr 6, 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 @@ -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 @@
}
}
}