Home
last modified time | relevance | path

Searched refs:type_code (Results 1 – 2 of 2) sorted by relevance

/packages/modules/HealthFitness/service/proto/phr/
Dfhir_spec_extractor.py371 def _get_multi_type_name_for_type(self, field_name, type_code) -> bool: argument
378 return field_name[:-3] + type_code[0].upper() + type_code[1:]
419 type_code = fhir_type["code"]
432 if type_code in ["Element", "BackboneElement"]:
445 if type_code == "http://hl7.org/fhirpath/System.String":
460 return self._get_type_enum_from_type_code(type_code)
462 def _get_type_enum_from_type_code(self, type_code: str) -> fhirspec_pb2.R4FhirType:
463 if not type_code.isalnum():
464 raise ValueError("Unexpected characters found in type_string: " + type_code)
467 R4_FHIR_TYPE_PREFIX + to_upper_snake_case(type_code))
Dprint_required_fhir_type_enums.py56 type_code = data_type["code"]
57 if type_code in ["BackboneElement", "Element"]:
62 elif type_code != "http://hl7.org/fhirpath/System.String":
63 fhir_type_strings.add(type_code)