-
Notifications
You must be signed in to change notification settings - Fork 159
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
Investigate approach to offering most appropriate CapabilityStatement for given use cases #1449
Comments
A few approaches for this one.
We might want to combine this with #1272 if we decide to drive this from the config (option B). For example, we could potentially combine the two through a structure like this: "resources": {
"includeOmittedResourceTypes": false,
"ExplanationOfBenefit": {
"interactions": ["read", "vread", "history", "search"],
"searchParameters": [
"http://hl7.org/fhir/us/carin-bb/SearchParameter/explanationofbenefit-patient",
"http://hl7.org/fhir/us/carin-bb/SearchParameter/explanationofbenefit-type",
"http://hl7.org/fhir/us/carin-bb/SearchParameter/explanationofbenefit-identifier",
"http://hl7.org/fhir/us/carin-bb/SearchParameter/explanationofbenefit-service-date"
]
},
"Organization": {
"interactions": ["read", "vread", "history", "search"],
"searchParameters": [
]
},
"Resource": {
"searchParameters": [
"http://hl7.org/fhir/SearchParameter/Resource-id",
"http://hl7.org/fhir/SearchParameter/Resource-lastUpdated"
]
}
} |
Now operators can configure the server to advertise only a subset of resource types and/or interactions via the new resources config section of fhir-server-config.json. Signed-off-by: Lee Surprenant <[email protected]>
Now operators can configure the server to advertise only a subset of resource types and/or interactions via the new resources config section of fhir-server-config.json. Signed-off-by: Lee Surprenant <[email protected]>
Now operators can configure the server to advertise only a subset of resource types and/or interactions via the new resources config section of fhir-server-config.json. Signed-off-by: Lee Surprenant <[email protected]>
We don't make it very easy to add component-level tests for our rest layer. This pull request works with what we have to test the public JAX-RS methods for building the CapabilityStatement resource and the smart-configuration JSON from various configs. Signed-off-by: Lee Surprenant <[email protected]>
We don't make it very easy to add component-level tests for our rest layer. This pull request works with what we have to test the public JAX-RS methods for building the CapabilityStatement resource and the smart-configuration JSON from various configs. Signed-off-by: Lee Surprenant <[email protected]>
Now operators can configure the server to advertise only a subset of resource types and/or interactions via the new resources config section of fhir-server-config.json. Signed-off-by: Lee Surprenant <[email protected]>
We don't make it very easy to add component-level tests for our rest layer. This pull request works with what we have to test the public JAX-RS methods for building the CapabilityStatement resource and the smart-configuration JSON from various configs. Signed-off-by: Lee Surprenant <[email protected]>
Now operators can configure the server to advertise only a subset of resource types and/or interactions via the new resources config section of fhir-server-config.json. Signed-off-by: Lee Surprenant <[email protected]>
Generating the capability statement from the config seems to be working. I opened #1615 for using this new config to drive server behavior. |
relates to #1315
The text was updated successfully, but these errors were encountered: