-
Notifications
You must be signed in to change notification settings - Fork 15
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
Replace FhirPathFunction documentation string with a class #84
base: master
Are you sure you want to change the base?
Conversation
702f97b
to
a49f23b
Compare
onfhir-path/src/main/scala/io/onfhir/path/AbstractFhirPathFunctionLibrary.scala
Outdated
Show resolved
Hide resolved
onfhir-path/src/main/scala/io/onfhir/path/AbstractFhirPathFunctionLibrary.scala
Outdated
Show resolved
Hide resolved
onfhir-path/src/main/scala/io/onfhir/path/FhirPathTerminologyServiceFunctions.scala
Outdated
Show resolved
Hide resolved
For the function max, we have this return type: Seq(FHIR_DATA_TYPES.STRING, "number", FHIR_DATA_TYPES.DATETIME, FHIR_DATA_TYPES.TIME, "quantity") I see that we do not have quantity or number in FHIR_DATA_TYPES but can we use FHIR_DATA_TYPES.QUANTITY and FHIR_DATA_TYPES.DECIMAL ? Does it break any functionality on the web ? |
a49f23b
to
5aa8412
Compare
They can be replaced without any problem. return type and input type fields are not used on the web. |
5aa8412
to
196c996
Compare
…rPathFunctionLibrary
…he new documenatation model of Fhir Path Function class
…notations with FHIR_DATA_TYPES values
196c996
to
126c3f2
Compare
The FhirPathFunction documentation was previously managed using a string containing all emojis, formats, and tags, which made it difficult to handle. This string has been replaced with a more organized data structure, and the corresponding annotation parser function is updated