Resolve a FHIR CodeableConcept with vocabulary preference
Source:R/fhir.R
fhir_resolve_codeable_concept.RdStandalone wrapper for client$fhir$resolve_codeable_concept().
Arguments
- client
An OMOPHubClient instance.
- ...
Arguments passed to
FhirResource$resolve_codeable_concept().
Examples
if (FALSE) { # \dontrun{
client <- OMOPHubClient$new(api_key = Sys.getenv("OMOPHUB_API_KEY"))
fhir_resolve_codeable_concept(
client,
coding = list(
list(system = "http://snomed.info/sct", code = "44054006"),
list(system = "http://hl7.org/fhir/sid/icd-10-cm", code = "E11.9")
),
resource_type = "Condition"
)
} # }