From c8327826665b557d416917b6640c0ce5da260dcf Mon Sep 17 00:00:00 2001 From: "John T.E. Timm" Date: Fri, 12 Mar 2021 07:16:46 -0500 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Paul Bastide Signed-off-by: John T.E. Timm --- docs/src/pages/guides/FHIRServerUsersGuide.md | 2 +- docs/src/pages/guides/FHIRTerminologyGuide.md | 7 +++---- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/docs/src/pages/guides/FHIRServerUsersGuide.md b/docs/src/pages/guides/FHIRServerUsersGuide.md index 81e11826e35..a14636be9c5 100644 --- a/docs/src/pages/guides/FHIRServerUsersGuide.md +++ b/docs/src/pages/guides/FHIRServerUsersGuide.md @@ -1947,7 +1947,7 @@ This section contains reference information about each of the configuration prop |`fhirServer/core/checkReferenceTypes`|boolean|Indicates whether reference type checking is performed by the server during parsing / deserialization.| |`fhirServer/core/serverRegistryResourceProviderEnabled`|boolean|Indicates whether the server registry resource provider should be used by the FHIR registry component to access definitional resources through the persistence layer.| |`fhirServer/core/graphTermServiceProvider/enabled`|boolean|Indicates whether the graph term service provider should be used by the FHIR term service to access code system content| -|`fhirServer/core/graphTermServiceProvider/configuration`|object (name/value pairs)|A JSON object that contains the name/value pairs used to configure the graph database behind the graph term service provider see: https://docs.janusgraph.org/basics/configuration-reference/| +|`fhirServer/core/graphTermServiceProvider/configuration`|object (name/value pairs)|A JSON object that contains the name/value pairs used to configure the graph database behind the graph term service provider see: [https://docs.janusgraph.org/basics/configuration-reference/](https://docs.janusgraph.org/basics/configuration-reference/)| |`fhirServer/core/conditionalDeleteMaxNumber`|integer|The max number of matches supported in conditional delete. | |`fhirServer/core/capabilityStatementCacheTimeout`|integer|The number of minutes that a tenant's CapabilityStatement is cached for the metadata endpoint. | |`fhirServer/core/extendedCodeableConceptValidation`|boolean|A boolean flag which indicates whether extended validation is performed by the server during object construction for code, Coding, CodeableConcept, Quantity, Uri, and String elements which have required bindings to value sets.| diff --git a/docs/src/pages/guides/FHIRTerminologyGuide.md b/docs/src/pages/guides/FHIRTerminologyGuide.md index 2763de6f6e4..3c1117e51b9 100644 --- a/docs/src/pages/guides/FHIRTerminologyGuide.md +++ b/docs/src/pages/guides/FHIRTerminologyGuide.md @@ -1,7 +1,7 @@ --- slug: "/FHIR/guides/FHIRTerminologyGuide/" title: "FHIR Terminology Guide" -date: "2021-03-11 12:00:00 -0400" +date: "2021-03-11" --- ## Overview @@ -99,9 +99,9 @@ Additionally, the FHIRPath functions `subsumedBy` and `subsumes` have been imple ## Graph Terminology Service Provider Implementation (experimental) -The FHIR term graph module ([fhir-term-graph](https://github.com/IBM/FHIR/tree/main/fhir-term-graph)) provides an implementation of `FHIRTermServiceProvider` that is backed by a graph database ([JanusGraph](https://janusgraph.org)). The module also contains term graph loaders for SNOMED-CT Release Format 2 (RF2) files (SnomedTermGraphLoader), UMLS Rich Release Format (RRF) files (UMLSTermGraphLoader), and FHIR CodeSystem resources (CodeSystemTermGraphLoader). The GraphTermServiceProvider can be enabled through the `fhir-server-config.json` file per the configuration properties specified in the [FHIR Server User's Guide](https://ibm.github.io/FHIR/guides/FHIRServerUsersGuide#51-configuration-properties-reference). Example configuration: +The FHIR term graph module [fhir-term-graph](https://github.com/IBM/FHIR/tree/main/fhir-term-graph) provides an implementation of `FHIRTermServiceProvider` that is backed by a graph database ([JanusGraph](https://janusgraph.org)). The module also contains term graph loaders for SNOMED-CT Release Format 2 (RF2) files (SnomedTermGraphLoader), UMLS Rich Release Format (RRF) files (UMLSTermGraphLoader), and FHIR CodeSystem resources (CodeSystemTermGraphLoader). The GraphTermServiceProvider can be enabled through the `fhir-server-config.json` file per the configuration properties specified in the [FHIR Server User's Guide](https://ibm.github.io/FHIR/guides/FHIRServerUsersGuide#51-configuration-properties-reference). Example configuration: -``` +``` json "graphTermServiceProvider": { "enabled": true, "configuration": { @@ -116,4 +116,3 @@ The FHIR term graph module ([fhir-term-graph](https://github.com/IBM/FHIR/tree/m } } ``` -