Skip to content

Commit

Permalink
Doc: Fix example effective dates.
Browse files Browse the repository at this point in the history
  • Loading branch information
kaicode committed Apr 14, 2024
1 parent e370826 commit c28538d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/running-with-java.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ The index will be created in the `lucene-index` directory. When the index creati

Building the index for the International Edition can happen in resource constrained environments, limit memory use to 1gb using java parameter `-Xmx1g`.

The following examples use the version URI for the January 2024 International Edition with module `900000000000207008` and version `20240131`.
The following examples use the version URI for the January 2024 International Edition with module `900000000000207008` and version `20240101`.
[See "URIs for Editions and Versions" in the SNOMED CT URI Standard](http:https://snomed.org/uri).

#### Option 1: Loading via the command line
Expand All @@ -23,14 +23,14 @@ For example:
```
java -jar snowstorm-lite.jar \
--load=my-release-files/SnomedCT_InternationalRF2_xxxxx.zip \
--version-uri=http:https://snomed.info/sct/900000000000207008/version/20240131
--version-uri=http:https://snomed.info/sct/900000000000207008/version/20240101
```

#### Option 2: Loading via the REST API
Alternatively the index can be created by uploading the release file:
```
curl --form file=@my-release-files/SnomedCT_InternationalRF2_xxxxx.zip \
--form version-uri="http:https://snomed.info/sct/900000000000207008/version/20240131" \
--form version-uri="http:https://snomed.info/sct/900000000000207008/version/20240101" \
http:https://localhost:8080/fhir-admin/load-package
```

Expand Down

0 comments on commit c28538d

Please sign in to comment.