Skip to content

Commit

Permalink
#430 - Adjust ui profiles to adjust for translations
Browse files Browse the repository at this point in the history
- update ontology tag to 3.0.2-alpha.2
- modify AttributeDefinition to include displayentry
  • Loading branch information
michael-82 committed Jan 24, 2025
1 parent ac2ae46 commit 83c58a4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ jobs:
needs: tests
runs-on: ubuntu-latest
env:
ONTOLOGY_GIT_TAG: v3.0.2-alpha
ONTOLOGY_GIT_TAG: v3.0.2-alpha.2
ELASTIC_HOST: http://localhost:9200
ELASTIC_FILEPATH: https://github.com/medizininformatik-initiative/fhir-ontology-generator/releases/download/TAGPLACEHOLDER/
ELASTIC_FILENAME: elastic.zip
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<java.version>17</java.version>
<mockwebserver.version>4.12.0</mockwebserver.version>
<okhttp3.version>4.10.0</okhttp3.version>
<ontology-tag>v3.0.1</ontology-tag>
<ontology-tag>v3.0.2-alpha.2</ontology-tag>
</properties>

<dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonInclude.Include;
import com.fasterxml.jackson.annotation.JsonProperty;
import de.numcodex.feasibility_gui_backend.common.api.DisplayEntry;
import de.numcodex.feasibility_gui_backend.common.api.TermCode;
import de.numcodex.feasibility_gui_backend.common.api.Comparator;
import lombok.AllArgsConstructor;
Expand All @@ -19,7 +20,8 @@
@Builder
@JsonInclude(Include.NON_NULL)
public class AttributeDefinition {

@JsonProperty(value= "display", required = true)
private DisplayEntry display;
@JsonProperty(value = "type", required = true)
private ValueDefinitonType type;
@JsonProperty("selectableConcepts")
Expand Down

0 comments on commit 83c58a4

Please sign in to comment.