glossarist 2.8.18 → 2.9.0
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 +4 -4
- data/.rubocop_todo.yml +175 -8
- data/Rakefile +4 -0
- data/config.yml +2 -3
- data/data/concept-model/README.md +35 -0
- data/data/concept-model/SOURCE.json +5 -0
- data/data/concept-model/glossarist.context.jsonld +209 -0
- data/data/concept-model/glossarist.ttl +960 -0
- data/data/concept-model/shapes/glossarist.shacl.ttl +575 -0
- data/glossarist.gemspec +2 -0
- data/lib/glossarist/asset_reference.rb +2 -0
- data/lib/glossarist/bibliographic_reference.rb +13 -0
- data/lib/glossarist/cli/export_command.rb +130 -7
- data/lib/glossarist/cli.rb +11 -2
- data/lib/glossarist/concept_document.rb +13 -0
- data/lib/glossarist/concept_reference.rb +6 -0
- data/lib/glossarist/concept_store.rb +2 -3
- data/lib/glossarist/dataset_register.rb +2 -2
- data/lib/glossarist/figure_reference.rb +0 -4
- data/lib/glossarist/formula_reference.rb +0 -4
- data/lib/glossarist/non_verbal_reference.rb +10 -0
- data/lib/glossarist/rdf/gloss_detailed_definition.rb +6 -1
- data/lib/glossarist/rdf/gloss_localized_concept.rb +65 -0
- data/lib/glossarist/rdf/lutaml_ext.rb +33 -0
- data/lib/glossarist/rdf.rb +2 -0
- data/lib/glossarist/reference.rb +33 -0
- data/lib/glossarist/table_reference.rb +0 -4
- data/lib/glossarist/tasks/shacl.rake +30 -0
- data/lib/glossarist/tasks/sync.rake +14 -0
- data/lib/glossarist/tasks/sync_model.rb +92 -0
- data/lib/glossarist/transforms/concept_to_gloss_transform.rb +3 -2
- data/lib/glossarist/utilities/uuid.rb +5 -1
- data/lib/glossarist/validation/rules/related_concept_cycle_rule.rb +15 -1
- data/lib/glossarist/validation/shacl_validator.rb +97 -0
- data/lib/glossarist/validation.rb +1 -0
- data/lib/glossarist/version.rb +1 -1
- data/lib/glossarist.rb +1 -0
- metadata +41 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bb2836ebc94ff60e6d5d7dc1bebae5c69da3894855e9a872edae442caa6a1754
|
|
4
|
+
data.tar.gz: 4ec6b999d1bc72f416dfff5885b89c31a72cf92feb9c1e9d387ba0c79c926040
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e7db28097d4bd49ca7ca29cdcd0c988be0679d349de14823beebd6d7d13c699b9610d6e381b7fce3507334cfddbedd50bab32b9e7007de4e49e8ff1e18a0e090
|
|
7
|
+
data.tar.gz: c4b5c96b1a62920cea474ed1b5bd598d4877f5f4ec364a50738106784963592d833a340abff63e98dc18f29357dc87348b2e6cc8aa6226f63726db666252fcd7
|
data/.rubocop_todo.yml
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# This configuration was generated by
|
|
2
2
|
# `rubocop --auto-gen-config`
|
|
3
|
-
# on 2026-07-
|
|
3
|
+
# on 2026-07-03 16:10:56 UTC using RuboCop version 1.86.1.
|
|
4
4
|
# The point is for the user to remove these configuration records
|
|
5
5
|
# one by one as the offenses are removed from the code base.
|
|
6
6
|
# Note that changes in the inspected code, or installation of new
|
|
@@ -11,13 +11,135 @@ Gemspec/RequiredRubyVersion:
|
|
|
11
11
|
Exclude:
|
|
12
12
|
- 'glossarist.gemspec'
|
|
13
13
|
|
|
14
|
-
# Offense count:
|
|
14
|
+
# Offense count: 12
|
|
15
|
+
# This cop supports safe autocorrection (--autocorrect).
|
|
16
|
+
# Configuration parameters: EnforcedStyle, IndentationWidth.
|
|
17
|
+
# SupportedStyles: with_first_argument, with_fixed_indentation
|
|
18
|
+
Layout/ArgumentAlignment:
|
|
19
|
+
Exclude:
|
|
20
|
+
- 'lib/glossarist/reference_extractor.rb'
|
|
21
|
+
- 'lib/glossarist/tasks/sync_model.rb'
|
|
22
|
+
- 'spec/unit/bibliography_data_spec.rb'
|
|
23
|
+
- 'spec/unit/figure_spec.rb'
|
|
24
|
+
- 'spec/unit/utilities/uuid_spec.rb'
|
|
25
|
+
|
|
26
|
+
# Offense count: 6
|
|
27
|
+
# This cop supports safe autocorrection (--autocorrect).
|
|
28
|
+
# Configuration parameters: EnforcedStyleAlignWith.
|
|
29
|
+
# SupportedStylesAlignWith: either, start_of_block, start_of_line
|
|
30
|
+
Layout/BlockAlignment:
|
|
31
|
+
Exclude:
|
|
32
|
+
- 'lib/glossarist/dataset_register.rb'
|
|
33
|
+
- 'lib/glossarist/rdf/gloss_detailed_definition.rb'
|
|
34
|
+
- 'lib/glossarist/tasks/sync_model.rb'
|
|
35
|
+
- 'spec/unit/gcr_package_spec.rb'
|
|
36
|
+
|
|
37
|
+
# Offense count: 5
|
|
38
|
+
# This cop supports safe autocorrection (--autocorrect).
|
|
39
|
+
Layout/BlockEndNewline:
|
|
40
|
+
Exclude:
|
|
41
|
+
- 'lib/glossarist/dataset_register.rb'
|
|
42
|
+
- 'lib/glossarist/rdf/gloss_detailed_definition.rb'
|
|
43
|
+
- 'lib/glossarist/tasks/sync_model.rb'
|
|
44
|
+
- 'spec/unit/gcr_package_spec.rb'
|
|
45
|
+
|
|
46
|
+
# Offense count: 1
|
|
47
|
+
# This cop supports safe autocorrection (--autocorrect).
|
|
48
|
+
Layout/ClosingParenthesisIndentation:
|
|
49
|
+
Exclude:
|
|
50
|
+
- 'lib/glossarist/cli/export_command.rb'
|
|
51
|
+
|
|
52
|
+
# Offense count: 2
|
|
53
|
+
# This cop supports safe autocorrection (--autocorrect).
|
|
54
|
+
# Configuration parameters: EnforcedStyle.
|
|
55
|
+
# SupportedStyles: empty_lines, no_empty_lines
|
|
56
|
+
Layout/EmptyLinesAroundBlockBody:
|
|
57
|
+
Exclude:
|
|
58
|
+
- 'lib/glossarist/tasks/sync_model.rb'
|
|
59
|
+
|
|
60
|
+
# Offense count: 1
|
|
61
|
+
# This cop supports safe autocorrection (--autocorrect).
|
|
62
|
+
# Configuration parameters: EnforcedStyle, IndentationWidth.
|
|
63
|
+
# SupportedStyles: consistent, consistent_relative_to_receiver, special_for_inner_method_call, special_for_inner_method_call_in_parentheses
|
|
64
|
+
Layout/FirstArgumentIndentation:
|
|
65
|
+
Exclude:
|
|
66
|
+
- 'lib/glossarist/cli/export_command.rb'
|
|
67
|
+
|
|
68
|
+
# Offense count: 7
|
|
69
|
+
# This cop supports safe autocorrection (--autocorrect).
|
|
70
|
+
# Configuration parameters: AllowMultipleStyles, EnforcedHashRocketStyle, EnforcedColonStyle, EnforcedLastArgumentHashStyle.
|
|
71
|
+
# SupportedHashRocketStyles: key, separator, table
|
|
72
|
+
# SupportedColonStyles: key, separator, table
|
|
73
|
+
# SupportedLastArgumentHashStyles: always_inspect, always_ignore, ignore_implicit, ignore_explicit
|
|
74
|
+
Layout/HashAlignment:
|
|
75
|
+
Exclude:
|
|
76
|
+
- 'spec/unit/figure_spec.rb'
|
|
77
|
+
- 'spec/unit/non_verbal_reference_spec.rb'
|
|
78
|
+
- 'spec/unit/table_spec.rb'
|
|
79
|
+
- 'spec/unit/validation/rules/concept_context_spec.rb'
|
|
80
|
+
|
|
81
|
+
# Offense count: 11
|
|
82
|
+
# This cop supports safe autocorrection (--autocorrect).
|
|
83
|
+
# Configuration parameters: Width, EnforcedStyleAlignWith, AllowedPatterns.
|
|
84
|
+
# SupportedStylesAlignWith: start_of_line, relative_to_receiver
|
|
85
|
+
Layout/IndentationWidth:
|
|
86
|
+
Exclude:
|
|
87
|
+
- 'lib/glossarist/dataset_register.rb'
|
|
88
|
+
- 'lib/glossarist/rdf/gloss_detailed_definition.rb'
|
|
89
|
+
- 'lib/glossarist/tasks/sync_model.rb'
|
|
90
|
+
- 'spec/unit/gcr_package_spec.rb'
|
|
91
|
+
|
|
92
|
+
# Offense count: 492
|
|
15
93
|
# This cop supports safe autocorrection (--autocorrect).
|
|
16
94
|
# Configuration parameters: Max, AllowHeredoc, AllowURI, AllowQualifiedName, URISchemes, AllowRBSInlineAnnotation, AllowCopDirectives, AllowedPatterns, SplitStrings.
|
|
17
95
|
# URISchemes: http, https
|
|
18
96
|
Layout/LineLength:
|
|
19
97
|
Enabled: false
|
|
20
98
|
|
|
99
|
+
# Offense count: 1
|
|
100
|
+
# This cop supports safe autocorrection (--autocorrect).
|
|
101
|
+
# Configuration parameters: EnforcedStyle.
|
|
102
|
+
# SupportedStyles: symmetrical, new_line, same_line
|
|
103
|
+
Layout/MultilineMethodCallBraceLayout:
|
|
104
|
+
Exclude:
|
|
105
|
+
- 'lib/glossarist/cli/export_command.rb'
|
|
106
|
+
|
|
107
|
+
# Offense count: 4
|
|
108
|
+
# This cop supports safe autocorrection (--autocorrect).
|
|
109
|
+
# Configuration parameters: EnforcedStyle, IndentationWidth.
|
|
110
|
+
# SupportedStyles: aligned, indented, indented_relative_to_receiver
|
|
111
|
+
Layout/MultilineMethodCallIndentation:
|
|
112
|
+
Exclude:
|
|
113
|
+
- 'spec/unit/rdf/direct_skos_emission_spec.rb'
|
|
114
|
+
|
|
115
|
+
# Offense count: 1
|
|
116
|
+
# This cop supports safe autocorrection (--autocorrect).
|
|
117
|
+
Layout/RescueEnsureAlignment:
|
|
118
|
+
Exclude:
|
|
119
|
+
- 'lib/glossarist/tasks/sync_model.rb'
|
|
120
|
+
|
|
121
|
+
# Offense count: 1
|
|
122
|
+
# This cop supports safe autocorrection (--autocorrect).
|
|
123
|
+
# Configuration parameters: EnforcedStyle.
|
|
124
|
+
# SupportedStyles: final_newline, final_blank_line
|
|
125
|
+
Layout/TrailingEmptyLines:
|
|
126
|
+
Exclude:
|
|
127
|
+
- 'spec/unit/utilities/uuid_spec.rb'
|
|
128
|
+
|
|
129
|
+
# Offense count: 15
|
|
130
|
+
# This cop supports safe autocorrection (--autocorrect).
|
|
131
|
+
# Configuration parameters: AllowInHeredoc.
|
|
132
|
+
Layout/TrailingWhitespace:
|
|
133
|
+
Exclude:
|
|
134
|
+
- 'lib/glossarist/reference_extractor.rb'
|
|
135
|
+
- 'lib/glossarist/tasks/sync_model.rb'
|
|
136
|
+
- 'spec/unit/bibliography_data_spec.rb'
|
|
137
|
+
- 'spec/unit/figure_spec.rb'
|
|
138
|
+
- 'spec/unit/non_verbal_reference_spec.rb'
|
|
139
|
+
- 'spec/unit/table_spec.rb'
|
|
140
|
+
- 'spec/unit/utilities/uuid_spec.rb'
|
|
141
|
+
- 'spec/unit/validation/rules/concept_context_spec.rb'
|
|
142
|
+
|
|
21
143
|
# Offense count: 1
|
|
22
144
|
# Configuration parameters: AllowedMethods.
|
|
23
145
|
# AllowedMethods: enums
|
|
@@ -31,6 +153,13 @@ Lint/DuplicateBranch:
|
|
|
31
153
|
Exclude:
|
|
32
154
|
- 'scripts/migrate_dataset.rb'
|
|
33
155
|
|
|
156
|
+
# Offense count: 2
|
|
157
|
+
# This cop supports safe autocorrection (--autocorrect).
|
|
158
|
+
Lint/RedundantStringCoercion:
|
|
159
|
+
Exclude:
|
|
160
|
+
- 'lib/glossarist/cli/export_command.rb'
|
|
161
|
+
- 'lib/glossarist/tasks/shacl.rake'
|
|
162
|
+
|
|
34
163
|
# Offense count: 1
|
|
35
164
|
# This cop supports safe autocorrection (--autocorrect).
|
|
36
165
|
# Configuration parameters: AllowUnusedKeywordArguments, IgnoreEmptyMethods, IgnoreNotImplementedMethods, NotImplementedExceptions.
|
|
@@ -44,7 +173,7 @@ Lint/UselessConstantScoping:
|
|
|
44
173
|
Exclude:
|
|
45
174
|
- 'lib/glossarist/sts/term_extractor.rb'
|
|
46
175
|
|
|
47
|
-
# Offense count:
|
|
176
|
+
# Offense count: 94
|
|
48
177
|
# Configuration parameters: AllowedMethods, AllowedPatterns, CountRepeatedAttributes, Max.
|
|
49
178
|
Metrics/AbcSize:
|
|
50
179
|
Enabled: false
|
|
@@ -55,12 +184,12 @@ Metrics/AbcSize:
|
|
|
55
184
|
Metrics/BlockLength:
|
|
56
185
|
Max: 41
|
|
57
186
|
|
|
58
|
-
# Offense count:
|
|
187
|
+
# Offense count: 61
|
|
59
188
|
# Configuration parameters: AllowedMethods, AllowedPatterns, Max.
|
|
60
189
|
Metrics/CyclomaticComplexity:
|
|
61
190
|
Enabled: false
|
|
62
191
|
|
|
63
|
-
# Offense count:
|
|
192
|
+
# Offense count: 113
|
|
64
193
|
# Configuration parameters: CountComments, CountAsOne, AllowedMethods, AllowedPatterns.
|
|
65
194
|
Metrics/MethodLength:
|
|
66
195
|
Max: 47
|
|
@@ -70,17 +199,33 @@ Metrics/MethodLength:
|
|
|
70
199
|
Metrics/ParameterLists:
|
|
71
200
|
Max: 6
|
|
72
201
|
|
|
73
|
-
# Offense count:
|
|
202
|
+
# Offense count: 46
|
|
74
203
|
# Configuration parameters: AllowedMethods, AllowedPatterns, Max.
|
|
75
204
|
Metrics/PerceivedComplexity:
|
|
76
205
|
Enabled: false
|
|
77
206
|
|
|
207
|
+
# Offense count: 8
|
|
208
|
+
# This cop supports safe autocorrection (--autocorrect).
|
|
209
|
+
# Configuration parameters: EnforcedStyle, ProceduralMethods, FunctionalMethods, AllowedMethods, AllowedPatterns, AllowBracesOnProceduralOneLiners, BracesRequiredMethods.
|
|
210
|
+
# SupportedStyles: line_count_based, semantic, braces_for_chaining, always_braces
|
|
211
|
+
# ProceduralMethods: benchmark, bm, bmbm, create, each_with_object, measure, new, realtime, tap, with_object
|
|
212
|
+
# FunctionalMethods: let, let!, subject, watch
|
|
213
|
+
# AllowedMethods: lambda, proc, it
|
|
214
|
+
Style/BlockDelimiters:
|
|
215
|
+
Exclude:
|
|
216
|
+
- 'lib/glossarist/dataset_register.rb'
|
|
217
|
+
- 'lib/glossarist/rdf/gloss_detailed_definition.rb'
|
|
218
|
+
- 'lib/glossarist/tasks/sync_model.rb'
|
|
219
|
+
- 'spec/unit/gcr_package_spec.rb'
|
|
220
|
+
- 'spec/unit/utilities/uuid_spec.rb'
|
|
221
|
+
|
|
78
222
|
# Offense count: 6
|
|
79
223
|
# This cop supports safe autocorrection (--autocorrect).
|
|
80
|
-
# Configuration parameters: MaxUnannotatedPlaceholdersAllowed, Mode, AllowedMethods, AllowedPatterns.
|
|
224
|
+
# Configuration parameters: EnforcedStyle, MaxUnannotatedPlaceholdersAllowed, Mode, AllowedMethods, AllowedPatterns.
|
|
81
225
|
# SupportedStyles: annotated, template, unannotated
|
|
82
226
|
Style/FormatStringToken:
|
|
83
|
-
|
|
227
|
+
Exclude:
|
|
228
|
+
- 'lib/glossarist/utilities/uuid.rb'
|
|
84
229
|
|
|
85
230
|
# Offense count: 2
|
|
86
231
|
# This cop supports unsafe autocorrection (--autocorrect-all).
|
|
@@ -88,6 +233,12 @@ Style/IdenticalConditionalBranches:
|
|
|
88
233
|
Exclude:
|
|
89
234
|
- 'scripts/migrate_dataset.rb'
|
|
90
235
|
|
|
236
|
+
# Offense count: 1
|
|
237
|
+
# This cop supports safe autocorrection (--autocorrect).
|
|
238
|
+
Style/RedundantBegin:
|
|
239
|
+
Exclude:
|
|
240
|
+
- 'lib/glossarist/tasks/sync_model.rb'
|
|
241
|
+
|
|
91
242
|
# Offense count: 3
|
|
92
243
|
# Configuration parameters: Max.
|
|
93
244
|
Style/SafeNavigationChainLength:
|
|
@@ -95,3 +246,19 @@ Style/SafeNavigationChainLength:
|
|
|
95
246
|
- 'lib/glossarist/managed_concept.rb'
|
|
96
247
|
- 'lib/glossarist/transforms/concept_to_tbx_transform.rb'
|
|
97
248
|
- 'lib/glossarist/validation/rules/source_urn_format_rule.rb'
|
|
249
|
+
|
|
250
|
+
# Offense count: 1
|
|
251
|
+
# This cop supports unsafe autocorrection (--autocorrect-all).
|
|
252
|
+
# Configuration parameters: Mode.
|
|
253
|
+
Style/StringConcatenation:
|
|
254
|
+
Exclude:
|
|
255
|
+
- 'lib/glossarist/tasks/sync_model.rb'
|
|
256
|
+
|
|
257
|
+
# Offense count: 9
|
|
258
|
+
# This cop supports safe autocorrection (--autocorrect).
|
|
259
|
+
# Configuration parameters: EnforcedStyleForMultiline.
|
|
260
|
+
# SupportedStylesForMultiline: comma, consistent_comma, diff_comma, no_comma
|
|
261
|
+
Style/TrailingCommaInArguments:
|
|
262
|
+
Exclude:
|
|
263
|
+
- 'lib/glossarist/validation/shacl_validator.rb'
|
|
264
|
+
- 'spec/unit/utilities/uuid_spec.rb'
|
data/Rakefile
CHANGED
data/config.yml
CHANGED
|
@@ -29,9 +29,6 @@ designation:
|
|
|
29
29
|
- admitted
|
|
30
30
|
- deprecated
|
|
31
31
|
- superseded
|
|
32
|
-
- <símbolo> # in iev-data => '<symbol>'
|
|
33
|
-
- 티에스 # in iev-data => translates to 'TS' I think it is a synonym and not status.
|
|
34
|
-
- prąd startowy # in iev-data => 'starting current' I think it is a synonym and not status.
|
|
35
32
|
relationship_type:
|
|
36
33
|
# Term-level (designation-to-designation within the same concept entry)
|
|
37
34
|
- abbreviated_form_for
|
|
@@ -169,6 +166,8 @@ grammar_info:
|
|
|
169
166
|
- singular
|
|
170
167
|
- dual
|
|
171
168
|
- plural
|
|
169
|
+
- mass
|
|
170
|
+
- other_number
|
|
172
171
|
|
|
173
172
|
concept:
|
|
174
173
|
status:
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# data/concept-model — vendored data artifacts from concept-model repo
|
|
2
|
+
|
|
3
|
+
This directory holds **data-only** artifacts copied from
|
|
4
|
+
[glossarist/concept-model](https://github.com/glossarist/concept-model).
|
|
5
|
+
|
|
6
|
+
concept-model is a *model* repo (TTL, JSON-LD, YAML schemas). It holds no
|
|
7
|
+
code, no npm package, no Ruby gem. glossarist-ruby vendors the small set
|
|
8
|
+
of data files it needs at build time. There is no runtime dependency on
|
|
9
|
+
concept-model.
|
|
10
|
+
|
|
11
|
+
## Files
|
|
12
|
+
|
|
13
|
+
| File | Purpose |
|
|
14
|
+
|------|---------|
|
|
15
|
+
| `glossarist.context.jsonld` | JSON-LD term map — reference |
|
|
16
|
+
| `glossarist.ttl` | OWL ontology (reference; not currently read at runtime) |
|
|
17
|
+
| `shapes/glossarist.shacl.ttl` | SHACL shapes — loaded by `Glossarist::Validation::ShaclValidator` at runtime |
|
|
18
|
+
|
|
19
|
+
## Syncing
|
|
20
|
+
|
|
21
|
+
Update these files from the latest concept-model tag:
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
rake glossarist:sync:model # fetches latest from glossarist/concept-model
|
|
25
|
+
rake glossarist:sync:model[v3.0.0] # pin to a specific tag
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
The sync task fetches via the GitHub raw endpoint (no clone needed).
|
|
29
|
+
|
|
30
|
+
## Why vendor instead of `gem add`?
|
|
31
|
+
|
|
32
|
+
Because concept-model is not a gem. Treating it as one would require
|
|
33
|
+
bolting codegen + packaging onto a repo that should only hold data.
|
|
34
|
+
Vendoring the small data files we need keeps the model repo clean and
|
|
35
|
+
lets this repo's bindings evolve independently.
|
|
@@ -0,0 +1,209 @@
|
|
|
1
|
+
{
|
|
2
|
+
"@context": {
|
|
3
|
+
"@version": 1.1,
|
|
4
|
+
|
|
5
|
+
"gloss": "https://www.glossarist.org/ontologies/",
|
|
6
|
+
"skos": "http://www.w3.org/2004/02/skos/core#",
|
|
7
|
+
"skosxl": "http://www.w3.org/2008/05/skos-xl#",
|
|
8
|
+
"iso-thes": "http://purl.org/iso25964/skos-thes#",
|
|
9
|
+
"dcterms": "http://purl.org/dc/terms/",
|
|
10
|
+
"prov": "http://www.w3.org/ns/prov#",
|
|
11
|
+
"owl": "http://www.w3.org/2002/07/owl#",
|
|
12
|
+
"rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
|
|
13
|
+
"rdfs": "http://www.w3.org/2000/01/rdf-schema#",
|
|
14
|
+
"xsd": "http://www.w3.org/2001/XMLSchema#",
|
|
15
|
+
"vann": "http://purl.org/vocab/vann/",
|
|
16
|
+
|
|
17
|
+
"Concept": "gloss:Concept",
|
|
18
|
+
"ConceptCollection": "gloss:ConceptCollection",
|
|
19
|
+
"LocalizedConcept": "gloss:LocalizedConcept",
|
|
20
|
+
"Designation": "gloss:Designation",
|
|
21
|
+
"Expression": "gloss:Expression",
|
|
22
|
+
"Abbreviation": "gloss:Abbreviation",
|
|
23
|
+
"Symbol": "gloss:Symbol",
|
|
24
|
+
"LetterSymbol": "gloss:LetterSymbol",
|
|
25
|
+
"GraphicalSymbol": "gloss:GraphicalSymbol",
|
|
26
|
+
"Prefix": "gloss:Prefix",
|
|
27
|
+
"Suffix": "gloss:Suffix",
|
|
28
|
+
"Pronunciation": "gloss:Pronunciation",
|
|
29
|
+
"GrammarInfo": "gloss:GrammarInfo",
|
|
30
|
+
"DetailedDefinition": "gloss:DetailedDefinition",
|
|
31
|
+
"ConceptSource": "gloss:ConceptSource",
|
|
32
|
+
"Citation": "gloss:Citation",
|
|
33
|
+
"CitationRef": "gloss:CitationRef",
|
|
34
|
+
"ConceptRef": "gloss:ConceptRef",
|
|
35
|
+
"Reference": "gloss:Reference",
|
|
36
|
+
"RelatedConcept": "gloss:RelatedConcept",
|
|
37
|
+
"ConceptDate": "gloss:ConceptDate",
|
|
38
|
+
"NonVerbalRepresentation": "gloss:NonVerbalRepresentation",
|
|
39
|
+
"CustomLocality": "gloss:CustomLocality",
|
|
40
|
+
"Locality": "gloss:Locality",
|
|
41
|
+
|
|
42
|
+
"identifier": { "@id": "gloss:identifier", "@type": "xsd:string" },
|
|
43
|
+
"uri": { "@id": "gloss:uri", "@type": "xsd:anyURI" },
|
|
44
|
+
"hasLocalization": { "@id": "gloss:hasLocalization", "@type": "@id" },
|
|
45
|
+
"isLocalizationOf": { "@id": "gloss:isLocalizationOf", "@type": "@id" },
|
|
46
|
+
"hasStatus": { "@id": "gloss:hasStatus", "@type": "@id" },
|
|
47
|
+
"hasDomain": { "@id": "gloss:hasDomain", "@type": "@id" },
|
|
48
|
+
"hasRelatedConcept": { "@id": "gloss:hasRelatedConcept", "@type": "@id" },
|
|
49
|
+
"hasDate": { "@id": "gloss:hasDate", "@type": "@id" },
|
|
50
|
+
"hasSource": { "@id": "gloss:hasSource", "@type": "@id" },
|
|
51
|
+
|
|
52
|
+
"hasEntryStatus": { "@id": "gloss:hasEntryStatus", "@type": "@id" },
|
|
53
|
+
"hasDesignation": { "@id": "gloss:hasDesignation", "@type": "@id" },
|
|
54
|
+
"hasDefinition": { "@id": "gloss:hasDefinition", "@type": "@id" },
|
|
55
|
+
"hasNote": { "@id": "gloss:hasNote", "@type": "@id" },
|
|
56
|
+
"hasExample": { "@id": "gloss:hasExample", "@type": "@id" },
|
|
57
|
+
"hasNonVerbalRep": { "@id": "gloss:hasNonVerbalRep", "@type": "@id" },
|
|
58
|
+
"domain": { "@id": "gloss:domain", "@type": "xsd:anyURI" },
|
|
59
|
+
"release": { "@id": "gloss:release", "@type": "xsd:string" },
|
|
60
|
+
"lineageSimilarity": { "@id": "gloss:lineageSimilarity", "@type": "xsd:integer" },
|
|
61
|
+
"reviewType": { "@id": "gloss:reviewType", "@type": "xsd:string" },
|
|
62
|
+
|
|
63
|
+
"normativeStatus": { "@id": "gloss:normativeStatus", "@type": "@id" },
|
|
64
|
+
"hasPronunciation": { "@id": "gloss:hasPronunciation", "@type": "@id" },
|
|
65
|
+
"hasTermType": { "@id": "gloss:hasTermType", "@type": "@id" },
|
|
66
|
+
"classification": { "@id": "gloss:classification", "@type": "xsd:string" },
|
|
67
|
+
"hasReference": { "@id": "gloss:hasReference", "@type": "@id" },
|
|
68
|
+
"hasGrammarInfo": { "@id": "gloss:hasGrammarInfo", "@type": "@id" },
|
|
69
|
+
"geographicalArea": { "@id": "gloss:geographicalArea", "@type": "xsd:string" },
|
|
70
|
+
"isInternational": { "@id": "gloss:isInternational", "@type": "xsd:boolean" },
|
|
71
|
+
"isAbsent": { "@id": "gloss:isAbsent", "@type": "xsd:boolean" },
|
|
72
|
+
"register": { "@id": "gloss:register", "@type": "xsd:string" },
|
|
73
|
+
|
|
74
|
+
"prefix": { "@id": "gloss:prefix", "@type": "xsd:string" },
|
|
75
|
+
"usageInfo": { "@id": "gloss:usageInfo", "@type": "xsd:string" },
|
|
76
|
+
"fieldOfApplication": { "@id": "gloss:fieldOfApplication", "@type": "xsd:string" },
|
|
77
|
+
|
|
78
|
+
"isAcronym": { "@id": "gloss:isAcronym", "@type": "xsd:boolean" },
|
|
79
|
+
"isInitialism": { "@id": "gloss:isInitialism", "@type": "xsd:boolean" },
|
|
80
|
+
"isTruncation": { "@id": "gloss:isTruncation", "@type": "xsd:boolean" },
|
|
81
|
+
|
|
82
|
+
"text": { "@id": "gloss:text", "@type": "xsd:string" },
|
|
83
|
+
"image": { "@id": "gloss:image", "@type": "xsd:anyURI" },
|
|
84
|
+
|
|
85
|
+
"pronunciationContent": { "@id": "gloss:pronunciationContent", "@type": "xsd:string" },
|
|
86
|
+
"pronunciationLanguage": { "@id": "gloss:pronunciationLanguage", "@type": "xsd:string" },
|
|
87
|
+
"pronunciationScript": { "@id": "gloss:pronunciationScript", "@type": "xsd:string" },
|
|
88
|
+
"pronunciationCountry": { "@id": "gloss:pronunciationCountry", "@type": "xsd:string" },
|
|
89
|
+
"pronunciationSystem": { "@id": "gloss:pronunciationSystem", "@type": "xsd:string" },
|
|
90
|
+
|
|
91
|
+
"relationshipType": { "@id": "gloss:relationshipType", "@type": "@id" },
|
|
92
|
+
"relationshipContent": { "@id": "gloss:relationshipContent", "@type": "xsd:string" },
|
|
93
|
+
"relationshipRef": { "@id": "gloss:relationshipRef", "@type": "@id" },
|
|
94
|
+
|
|
95
|
+
"refType": { "@id": "gloss:refType", "@type": "xsd:string" },
|
|
96
|
+
"urn": { "@id": "gloss:urn", "@type": "xsd:anyURI" },
|
|
97
|
+
"term": { "@id": "gloss:term", "@type": "xsd:string" },
|
|
98
|
+
"refId": { "@id": "gloss:refId", "@type": "xsd:string" },
|
|
99
|
+
"refVersion": { "@id": "gloss:refVersion", "@type": "xsd:string" },
|
|
100
|
+
"refLink": { "@id": "gloss:refLink", "@type": "xsd:anyURI" },
|
|
101
|
+
|
|
102
|
+
"sourceType": { "@id": "gloss:sourceType", "@type": "@id" },
|
|
103
|
+
"sourceStatus": { "@id": "gloss:sourceStatus", "@type": "@id" },
|
|
104
|
+
"sourceOrigin": { "@id": "gloss:sourceOrigin", "@type": "@id" },
|
|
105
|
+
"modification": { "@id": "gloss:modification", "@type": "xsd:string" },
|
|
106
|
+
|
|
107
|
+
"hasCitationRef": { "@id": "gloss:hasCitationRef", "@type": "@id" },
|
|
108
|
+
"hasCitationLocality": { "@id": "gloss:hasCitationLocality", "@type": "@id" },
|
|
109
|
+
"citationOriginal": { "@id": "gloss:citationOriginal", "@type": "xsd:string" },
|
|
110
|
+
"hasCustomLocality": { "@id": "gloss:hasCustomLocality", "@type": "@id" },
|
|
111
|
+
|
|
112
|
+
"citationRefSource": { "@id": "gloss:citationRefSource", "@type": "xsd:string" },
|
|
113
|
+
"citationRefId": { "@id": "gloss:citationRefId", "@type": "xsd:string" },
|
|
114
|
+
"citationRefVersion": { "@id": "gloss:citationRefVersion", "@type": "xsd:string" },
|
|
115
|
+
|
|
116
|
+
"conceptRefSource": { "@id": "gloss:conceptRefSource", "@type": "xsd:string" },
|
|
117
|
+
"conceptRefId": { "@id": "gloss:conceptRefId", "@type": "xsd:string" },
|
|
118
|
+
|
|
119
|
+
"customLocalityName": { "@id": "gloss:customLocalityName", "@type": "xsd:string" },
|
|
120
|
+
"customLocalityValue": { "@id": "gloss:customLocalityValue", "@type": "xsd:string" },
|
|
121
|
+
|
|
122
|
+
"citationLink": { "@id": "gloss:citationLink", "@type": "xsd:anyURI" },
|
|
123
|
+
"hasLocality": { "@id": "gloss:hasLocality", "@type": "@id" },
|
|
124
|
+
|
|
125
|
+
"dateValue": { "@id": "gloss:dateValue", "@type": "xsd:dateTime" },
|
|
126
|
+
"dateType": { "@id": "gloss:dateType", "@type": "@id" },
|
|
127
|
+
"eventDescription": { "@id": "gloss:eventDescription", "@type": "xsd:string" },
|
|
128
|
+
|
|
129
|
+
"representationType": { "@id": "gloss:representationType", "@type": "xsd:string" },
|
|
130
|
+
"representationRef": { "@id": "gloss:representationRef", "@type": "xsd:anyURI" },
|
|
131
|
+
"representationText": { "@id": "gloss:representationText", "@type": "xsd:string" },
|
|
132
|
+
|
|
133
|
+
"localityType": { "@id": "gloss:localityType", "@type": "xsd:string" },
|
|
134
|
+
"referenceFrom": { "@id": "gloss:referenceFrom", "@type": "xsd:string" },
|
|
135
|
+
"referenceTo": { "@id": "gloss:referenceTo", "@type": "xsd:string" },
|
|
136
|
+
|
|
137
|
+
"gender": { "@id": "gloss:gender", "@type": "@id" },
|
|
138
|
+
"number": { "@id": "gloss:number", "@type": "@id" },
|
|
139
|
+
"isNoun": { "@id": "gloss:isNoun", "@type": "xsd:boolean" },
|
|
140
|
+
"isVerb": { "@id": "gloss:isVerb", "@type": "xsd:boolean" },
|
|
141
|
+
"isAdjective": { "@id": "gloss:isAdjective", "@type": "xsd:boolean" },
|
|
142
|
+
"isAdverb": { "@id": "gloss:isAdverb", "@type": "xsd:boolean" },
|
|
143
|
+
"isPreposition": { "@id": "gloss:isPreposition", "@type": "xsd:boolean" },
|
|
144
|
+
"isParticiple": { "@id": "gloss:isParticiple", "@type": "xsd:boolean" },
|
|
145
|
+
"partOfSpeech": { "@id": "gloss:partOfSpeech", "@type": "xsd:string" },
|
|
146
|
+
|
|
147
|
+
"script": { "@id": "gloss:script", "@type": "xsd:string" },
|
|
148
|
+
"conversionSystem": { "@id": "gloss:conversionSystem", "@type": "xsd:string" },
|
|
149
|
+
|
|
150
|
+
"deprecates": { "@id": "gloss:deprecates", "@type": "@id" },
|
|
151
|
+
"deprecatedBy": { "@id": "gloss:deprecatedBy", "@type": "@id" },
|
|
152
|
+
"supersedes": { "@id": "gloss:supersedes", "@type": "@id" },
|
|
153
|
+
"supersededBy": { "@id": "gloss:supersededBy", "@type": "@id" },
|
|
154
|
+
"compares": { "@id": "gloss:compares", "@type": "@id" },
|
|
155
|
+
"contrasts": { "@id": "gloss:contrasts", "@type": "@id" },
|
|
156
|
+
"sequentiallyRelated": { "@id": "gloss:sequentiallyRelated", "@type": "@id" },
|
|
157
|
+
"spatiallyRelated": { "@id": "gloss:spatiallyRelated", "@type": "@id" },
|
|
158
|
+
"temporallyRelated": { "@id": "gloss:temporallyRelated", "@type": "@id" },
|
|
159
|
+
"hasHomograph": { "@id": "gloss:hasHomograph", "@type": "@id" },
|
|
160
|
+
"hasFalseFriend": { "@id": "gloss:hasFalseFriend", "@type": "@id" },
|
|
161
|
+
"abbreviatedFormFor": { "@id": "gloss:abbreviatedFormFor", "@type": "@id" },
|
|
162
|
+
"shortFormFor": { "@id": "gloss:shortFormFor", "@type": "@id" },
|
|
163
|
+
|
|
164
|
+
"prefLabel": "skos:prefLabel",
|
|
165
|
+
"altLabel": "skos:altLabel",
|
|
166
|
+
"hiddenLabel": "skos:hiddenLabel",
|
|
167
|
+
"definition": "skos:definition",
|
|
168
|
+
"scopeNote": "skos:scopeNote",
|
|
169
|
+
"note": "skos:note",
|
|
170
|
+
"example": "skos:example",
|
|
171
|
+
"notation": "skos:notation",
|
|
172
|
+
"inScheme": { "@id": "skos:inScheme", "@type": "@id" },
|
|
173
|
+
"hasTopConcept": { "@id": "skos:hasTopConcept", "@type": "@id" },
|
|
174
|
+
"broader": { "@id": "skos:broader", "@type": "@id" },
|
|
175
|
+
"narrower": { "@id": "skos:narrower", "@type": "@id" },
|
|
176
|
+
"related": { "@id": "skos:related", "@type": "@id" },
|
|
177
|
+
"exactMatch": { "@id": "skos:exactMatch", "@type": "@id" },
|
|
178
|
+
"closeMatch": { "@id": "skos:closeMatch", "@type": "@id" },
|
|
179
|
+
"broadMatch": { "@id": "skos:broadMatch", "@type": "@id" },
|
|
180
|
+
"narrowMatch": { "@id": "skos:narrowMatch", "@type": "@id" },
|
|
181
|
+
"relatedMatch": { "@id": "skos:relatedMatch", "@type": "@id" },
|
|
182
|
+
|
|
183
|
+
"literalForm": "skosxl:literalForm",
|
|
184
|
+
"labelRelation": "skosxl:labelRelation",
|
|
185
|
+
|
|
186
|
+
"broaderGeneric": { "@id": "iso-thes:broaderGeneric", "@type": "@id" },
|
|
187
|
+
"narrowerGeneric": { "@id": "iso-thes:narrowerGeneric", "@type": "@id" },
|
|
188
|
+
"broaderPartitive": { "@id": "iso-thes:broaderPartitive", "@type": "@id" },
|
|
189
|
+
"narrowerPartitive": { "@id": "iso-thes:narrowerPartitive", "@type": "@id" },
|
|
190
|
+
"broaderInstantial": { "@id": "iso-thes:broaderInstantial", "@type": "@id" },
|
|
191
|
+
"narrowerInstantial": { "@id": "iso-thes:narrowerInstantial", "@type": "@id" },
|
|
192
|
+
|
|
193
|
+
"language": { "@id": "gloss:language", "@type": "xsd:string" },
|
|
194
|
+
"bibliographicCitation": { "@id": "dcterms:bibliographicCitation", "@type": "xsd:string" },
|
|
195
|
+
|
|
196
|
+
"wasDerivedFrom": { "@id": "prov:wasDerivedFrom", "@type": "@id" },
|
|
197
|
+
"hadDerivation": { "@id": "prov:hadDerivation", "@type": "@id" },
|
|
198
|
+
"qualifiedDerivation": { "@id": "prov:qualifiedDerivation", "@type": "@id" },
|
|
199
|
+
|
|
200
|
+
"label": "rdfs:label",
|
|
201
|
+
"comment": "rdfs:comment",
|
|
202
|
+
"seeAlso": { "@id": "rdfs:seeAlso", "@type": "@id" },
|
|
203
|
+
"subClassOf": { "@id": "rdfs:subClassOf", "@type": "@id" },
|
|
204
|
+
|
|
205
|
+
"type": { "@id": "@type", "@container": "@set" },
|
|
206
|
+
"id": "@id",
|
|
207
|
+
"value": "rdf:value"
|
|
208
|
+
}
|
|
209
|
+
}
|