Skip to content

Commit 76d92ef

Browse files
committed
fix: status's range is string instead of uriorcurie
The slot `status` declares it's range to be `string`, but in fact raw strings like `testing` or `unstable` are being used in the metamodel itself. This patch aligns the specification with its current use. Fixing it to remain `uriorcurie` would require multiple changes with bigger impact than this change. They might get implemented in the future. Signed-off-by: Silvano Cirujano Cuesta <silvano.cirujano-cuesta@siemens.com>
1 parent 986c788 commit 76d92ef

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

linkml_model/model/schema/meta.yaml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -434,11 +434,13 @@ slots:
434434
aliases:
435435
- workflow status
436436
domain: element
437-
range: uriorcurie
437+
range: string
438438
description: status of the element
439-
slot_uri: bibo:status
439+
close_mappings:
440+
- bibo:status
440441
examples:
441-
- value: "bibo:draft"
442+
- value: "testing"
443+
- value: "unstable"
442444
see_also:
443445
- https://www.hl7.org/fhir/valueset-publication-status.html ## Draft, Active, Retired, Unknown
444446
- https://www.hl7.org/fhir/versions.html#std-process ## Draft, Trial Use, Normative, Informative, Deprecated

0 commit comments

Comments
 (0)