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

FHIR Implementation Guides configuration #1

Merged
Show file tree
Hide file tree
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 @@ -60,6 +60,9 @@
"enabled": false,
"initialImportMode": false,
"integrationDataStore": "existingStorageAccount"
},
"implementationGuidesConfiguration": {
"usCoreMissingData": false
}
}
}
Expand Down Expand Up @@ -118,6 +121,9 @@
"initialImportMode": false,
"integrationDataStore": "existingStorageAccount"
},
"implementationGuidesConfiguration": {
"usCoreMissingData": false
},
"eventState": "Disabled",
"provisioningState": "Succeeded"
}
Expand Down Expand Up @@ -176,6 +182,9 @@
"initialImportMode": false,
"integrationDataStore": "existingStorageAccount"
},
"implementationGuidesConfiguration": {
"usCoreMissingData": false
},
"eventState": "Disabled",
"provisioningState": "Creating"
}
Expand Down Expand Up @@ -234,6 +243,9 @@
"initialImportMode": false,
"integrationDataStore": "existingStorageAccount"
},
"implementationGuidesConfiguration": {
"usCoreMissingData": false
},
"eventState": "Disabled",
"provisioningState": "Accepted"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,42 @@
"id": "/subscriptions/subid/resourceGroups/testRG/providers/Microsoft.HealthcareApis/workspaces/workspace1/fhirservices/fhirservices1",
"type": "Microsoft.HealthcareApis/workspaces/fhirservices",
"properties": {
"authenticationConfiguration": {
"authority": "https://login.microsoftonline.com/abfde7b2-df0f-47e6-aabf-2462b07508dc",
"audiences": [
"https://azurehealthcareapis.com/",
"https://azurehealthcareapis.com"
]
},
"corsConfiguration": {
"origins": [
"*"
],
"headers": [
"*"
],
"methods": [
"DELETE",
"GET",
"OPTIONS",
"PATCH",
"POST",
"PUT"
],
"maxAge": 1440,
"allowCredentials": false
},
"exportConfiguration": {
"storageAccountName": "bar"
},
"importConfiguration": {
"enabled": false,
"initialImportMode": false,
"integrationDataStore": "for"
},
"implementationGuidesConfiguration": {
"usCoreMissingData": false
},
"provisioningState": "Creating"
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3798,6 +3798,10 @@
"importConfiguration": {
"description": "Fhir Service import configuration.",
"$ref": "#/definitions/FhirServiceImportConfiguration"
},
"implementationGuidesConfiguration": {
"description": "Implementation Guides configuration.",
"$ref": "#/definitions/ImplementationGuidesConfiguration"
}
}
},
Expand All @@ -3818,6 +3822,17 @@
}
}
},
"ImplementationGuidesConfiguration": {
"description": "The settings for Implementation Guides - defining capabilities for national standards, vendor consortiums, clinical societies, etc.",
"type": "object",
"properties": {
"usCoreMissingData": {
"type": "boolean",
"description": "If US Core Missing Data requirement is enabled.",
"readOnly": false
}
}
},
"FhirResourceVersionPolicy": {
"type": "string",
"description": "Controls how resources are versioned on the FHIR service",
Expand Down