glossarist 2.8.11 → 2.8.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9c5365426551b5a43eb67d58bd80ec429cc27c7c2d374f45abb7911da3dde329
4
- data.tar.gz: 86394c15f0f7c8db4101682aeb99f2c44aa89f79012c931a59365d3426488a39
3
+ metadata.gz: 284d64ec4a9bac75c0639dd3254a715e881d46949240f430db9d6322cec09379
4
+ data.tar.gz: a349a57dba2f2e5b79c93561dcfa2fd54ee1627326d66b3cf2d6b66cbcca2f3c
5
5
  SHA512:
6
- metadata.gz: 7434ab207294cbbf27f257a3368e7a7e588594d87fd6a3c896668625625c587dc135609664991e7ebd91077429a7d3bc6a7f2aee46d015666048be32a4f830ba
7
- data.tar.gz: 745e77b7e667e43fd05d1b96ab44d44c808092f5c2547e95ffa8d84bca1115d21a0d8756d917eaefc024ba78cf51f2e4818e077b0a74492d2b1383304043a256
6
+ metadata.gz: 270a84779887cf795087a0fb56f923240b26c028bef18c6b436b5129cfcc0985a020e9ab5b2ce2b2b6e5f472f75de7c79546d56fe0a94465f068d3f5ee28617a
7
+ data.tar.gz: 1411213954c8fbbdb95bc9e5c4bc8455d55edf4df1944714dcd8a0ffac4733d64ed16bd32ae6c259691739dda04418fe9bcf91ba2af04451505a0b0d61168c55
data/config.yml CHANGED
@@ -39,10 +39,17 @@ designation:
39
39
 
40
40
  related_concept:
41
41
  type:
42
- # Lifecycle (ISO 10241-1)
42
+ # Lifecycle (ISO 10241-1 / ISO 19135)
43
43
  - deprecates
44
+ - deprecated_by
44
45
  - supersedes
45
46
  - superseded_by
47
+ - replaces
48
+ - replaced_by
49
+ - invalidates
50
+ - invalidated_by
51
+ - retires
52
+ - retired_by
46
53
  # Hierarchical (ISO 10241-1 / ISO 25964)
47
54
  - narrower
48
55
  - broader
@@ -52,9 +59,13 @@ related_concept:
52
59
  # Hierarchical sub-types — ISO 25964 partitive (BTP/NTP)
53
60
  - broader_partitive
54
61
  - narrower_partitive
62
+ - has_part
63
+ - is_part_of
55
64
  # Hierarchical sub-types — ISO 25964 instantial (BTI/NTI)
56
65
  - broader_instantial
57
66
  - narrower_instantial
67
+ - instance_of
68
+ - has_instance
58
69
  # Equivalence (ISO 10241-1 / ISO 25964 exactMatch / SKOS)
59
70
  - equivalent
60
71
  - exact_match
@@ -69,17 +80,30 @@ related_concept:
69
80
  - contrast
70
81
  # Associative (ISO 10241-1 / ISO 25964 RT / TBX crossReference)
71
82
  - see
83
+ - references
72
84
  # Associative sub-types (ISO 25964 / TBX)
73
85
  - related_concept
74
86
  - related_concept_broader
75
87
  - related_concept_narrower
76
88
  # Associative — spatial/temporal (ISO 25964 / TBX)
77
- - sequentially_related_concept
78
- - spatially_related_concept
79
- - temporally_related_concept
89
+ - sequentially_related
90
+ - spatially_related
91
+ - temporally_related
80
92
  # Lexical (ISO 12620 / TBX)
81
93
  - homograph
82
94
  - false_friend
95
+ # Register management (ISO 19135)
96
+ - has_concept
97
+ - is_concept_of
98
+ - has_definition
99
+ - definition_of
100
+ - inherits
101
+ - inherited_by
102
+ # Versioning / definitional (ISO 19135)
103
+ - has_version
104
+ - version_of
105
+ - current_version
106
+ - current_version_of
83
107
 
84
108
  iso12620:
85
109
  term_type:
@@ -17,7 +17,7 @@ module Glossarist
17
17
 
18
18
  key_value do
19
19
  map :term, to: :term
20
- map :concept_id, to: :concept_id
20
+ map %i[concept_id id], to: :concept_id
21
21
  map :source, to: :source
22
22
  map :ref_type, to: :ref_type
23
23
  map :urn, to: :urn
@@ -27,16 +27,17 @@ module Glossarist
27
27
  related_match: [Namespaces::SkosNamespace, :relatedMatch],
28
28
  see: [Namespaces::SkosNamespace, :related],
29
29
  deprecates: [Namespaces::GlossaristNamespace, :deprecates],
30
+ deprecated_by: [Namespaces::GlossaristNamespace, :deprecatedBy],
30
31
  supersedes: [Namespaces::GlossaristNamespace, :supersedes],
31
32
  superseded_by: [Namespaces::GlossaristNamespace, :supersededBy],
32
33
  compare: [Namespaces::GlossaristNamespace, :compares],
33
34
  contrast: [Namespaces::GlossaristNamespace, :contrasts],
34
- sequentially_related_concept: [Namespaces::GlossaristNamespace,
35
- :sequentiallyRelated],
36
- spatially_related_concept: [Namespaces::GlossaristNamespace,
37
- :spatiallyRelated],
38
- temporally_related_concept: [Namespaces::GlossaristNamespace,
39
- :temporallyRelated],
35
+ sequentially_related: [Namespaces::GlossaristNamespace,
36
+ :sequentiallyRelated],
37
+ spatially_related: [Namespaces::GlossaristNamespace,
38
+ :spatiallyRelated],
39
+ temporally_related: [Namespaces::GlossaristNamespace,
40
+ :temporallyRelated],
40
41
  related_concept_broader: [Namespaces::GlossaristNamespace,
41
42
  :relatedConceptBroader],
42
43
  related_concept_narrower: [Namespaces::GlossaristNamespace,
@@ -4,5 +4,5 @@
4
4
  #
5
5
 
6
6
  module Glossarist
7
- VERSION = "2.8.11"
7
+ VERSION = "2.8.12"
8
8
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: glossarist
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.8.11
4
+ version: 2.8.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ribose
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2026-06-14 00:00:00.000000000 Z
11
+ date: 2026-06-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: lutaml-model