Skip to content

Commit e53a511

Browse files
authored
Merge pull request #183 from linkml/release-candidate-1.7.0rc3
1.7.0rc3
2 parents 8fbc37e + 757f626 commit e53a511

File tree

18 files changed

+7931
-5330
lines changed

18 files changed

+7931
-5330
lines changed

linkml_model/annotations.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Auto generated from annotations.yaml by pythongen.py version: 0.0.1
2-
# Generation date: 2024-01-29T16:05:46
2+
# Generation date: 2024-02-07T17:29:22
33
# Schema: annotations
44
#
55
# id: https://w3id.org/linkml/annotations

linkml_model/datasets.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Auto generated from datasets.yaml by pythongen.py version: 0.0.1
2-
# Generation date: 2024-01-29T16:05:52
2+
# Generation date: 2024-02-07T17:29:27
33
# Schema: datasets
44
#
55
# id: https://w3id.org/linkml/datasets

linkml_model/excel/meta.xlsx

1.68 KB
Binary file not shown.

linkml_model/extensions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Auto generated from extensions.yaml by pythongen.py version: 0.0.1
2-
# Generation date: 2024-01-29T16:05:53
2+
# Generation date: 2024-02-07T17:29:29
33
# Schema: extensions
44
#
55
# id: https://w3id.org/linkml/extensions

linkml_model/graphql/meta.graphql

Lines changed: 91 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,7 @@ type AnonymousSlotExpression implements SlotExpression
171171
equalsStringIn: [String]
172172
equalsNumber: Integer
173173
equalsExpression: String
174+
exactCardinality: Integer
174175
minimumCardinality: Integer
175176
maximumCardinality: Integer
176177
hasMember: AnonymousSlotExpression
@@ -206,6 +207,50 @@ type AnyValue
206207
{
207208
}
208209

210+
type ArrayExpression implements Extensible, Annotatable, CommonMetadata
211+
{
212+
exactNumberDimensions: Integer
213+
minimumNumberDimensions: Integer
214+
maximumNumberDimensions: Anything
215+
hasExtraDimensions: Boolean
216+
dimensions: [DimensionExpression]
217+
extensions: [Extension]
218+
annotations: [Annotation]
219+
description: String
220+
altDescriptions: [AltDescription]
221+
title: String
222+
deprecated: String
223+
todos: [String]
224+
notes: [String]
225+
comments: [String]
226+
examples: [Example]
227+
inSubset: [SubsetDefinition]
228+
fromSchema: Uri
229+
importedFrom: String
230+
source: Uriorcurie
231+
inLanguage: String
232+
seeAlso: [Uriorcurie]
233+
deprecatedElementHasExactReplacement: Uriorcurie
234+
deprecatedElementHasPossibleReplacement: Uriorcurie
235+
aliases: [String]
236+
structuredAliases: [StructuredAlias]
237+
mappings: [Uriorcurie]
238+
exactMappings: [Uriorcurie]
239+
closeMappings: [Uriorcurie]
240+
relatedMappings: [Uriorcurie]
241+
narrowMappings: [Uriorcurie]
242+
broadMappings: [Uriorcurie]
243+
createdBy: Uriorcurie
244+
contributors: [Uriorcurie]
245+
createdOn: Datetime
246+
lastUpdatedOn: Datetime
247+
modifiedBy: Uriorcurie
248+
status: Uriorcurie
249+
rank: Integer
250+
categories: [Uriorcurie]
251+
keywords: [String]
252+
}
253+
209254
type ClassDefinition implements ClassExpression
210255
{
211256
name: String!
@@ -429,6 +474,49 @@ interface Definition
429474
stringSerialization: String
430475
}
431476

477+
type DimensionExpression implements Extensible, Annotatable, CommonMetadata
478+
{
479+
alias: String
480+
maximumCardinality: Integer
481+
minimumCardinality: Integer
482+
exactCardinality: Integer
483+
extensions: [Extension]
484+
annotations: [Annotation]
485+
description: String
486+
altDescriptions: [AltDescription]
487+
title: String
488+
deprecated: String
489+
todos: [String]
490+
notes: [String]
491+
comments: [String]
492+
examples: [Example]
493+
inSubset: [SubsetDefinition]
494+
fromSchema: Uri
495+
importedFrom: String
496+
source: Uriorcurie
497+
inLanguage: String
498+
seeAlso: [Uriorcurie]
499+
deprecatedElementHasExactReplacement: Uriorcurie
500+
deprecatedElementHasPossibleReplacement: Uriorcurie
501+
aliases: [String]
502+
structuredAliases: [StructuredAlias]
503+
mappings: [Uriorcurie]
504+
exactMappings: [Uriorcurie]
505+
closeMappings: [Uriorcurie]
506+
relatedMappings: [Uriorcurie]
507+
narrowMappings: [Uriorcurie]
508+
broadMappings: [Uriorcurie]
509+
createdBy: Uriorcurie
510+
contributors: [Uriorcurie]
511+
createdOn: Datetime
512+
lastUpdatedOn: Datetime
513+
modifiedBy: Uriorcurie
514+
status: Uriorcurie
515+
rank: Integer
516+
categories: [Uriorcurie]
517+
keywords: [String]
518+
}
519+
432520
type Element implements Extensible, Annotatable, CommonMetadata
433521
{
434522
name: String!
@@ -910,6 +998,7 @@ type SlotDefinition implements SlotExpression
910998
domain: ClassDefinition
911999
slotUri: Uriorcurie
9121000
multivalued: Boolean
1001+
array: ArrayExpression
9131002
inherited: Boolean
9141003
readonly: String
9151004
ifabsent: String
@@ -964,6 +1053,7 @@ type SlotDefinition implements SlotExpression
9641053
equalsStringIn: [String]
9651054
equalsNumber: Integer
9661055
equalsExpression: String
1056+
exactCardinality: Integer
9671057
minimumCardinality: Integer
9681058
maximumCardinality: Integer
9691059
hasMember: AnonymousSlotExpression
@@ -994,6 +1084,7 @@ interface SlotExpression
9941084
equalsStringIn: [String]
9951085
equalsNumber: Integer
9961086
equalsExpression: String
1087+
exactCardinality: Integer
9971088
minimumCardinality: Integer
9981089
maximumCardinality: Integer
9991090
hasMember: AnonymousSlotExpression

linkml_model/jsonld/meta.context.jsonld

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"comments": {
33
"description": "Auto generated by LinkML jsonld context generator",
4-
"generation_date": "2024-01-29T16:06:12",
4+
"generation_date": "2024-02-07T17:29:49",
55
"source": "meta.yaml"
66
},
77
"@context": {
@@ -74,6 +74,9 @@
7474
"apply_to": {
7575
"@type": "@id"
7676
},
77+
"array": {
78+
"@type": "@id"
79+
},
7780
"asymmetric": {
7881
"@type": "xsd:boolean"
7982
},
@@ -165,6 +168,9 @@
165168
"designates_type": {
166169
"@type": "xsd:boolean"
167170
},
171+
"dimensions": {
172+
"@type": "@id"
173+
},
168174
"disjoint_with": {
169175
"@type": "@id"
170176
},
@@ -196,6 +202,12 @@
196202
"@type": "@id",
197203
"@id": "skos:exactMatch"
198204
},
205+
"exact_cardinality": {
206+
"@type": "xsd:integer"
207+
},
208+
"exact_number_dimensions": {
209+
"@type": "xsd:integer"
210+
},
199211
"exactly_one_of": {
200212
"@type": "@id"
201213
},
@@ -221,6 +233,9 @@
221233
"generation_date": {
222234
"@type": "xsd:dateTime"
223235
},
236+
"has_extra_dimensions": {
237+
"@type": "xsd:boolean"
238+
},
224239
"has_member": {
225240
"@type": "@id"
226241
},
@@ -352,6 +367,9 @@
352367
"maximum_cardinality": {
353368
"@type": "xsd:integer"
354369
},
370+
"maximum_number_dimensions": {
371+
"@type": "@id"
372+
},
355373
"maximum_value": {
356374
"@type": "@id"
357375
},
@@ -361,6 +379,9 @@
361379
"minimum_cardinality": {
362380
"@type": "xsd:integer"
363381
},
382+
"minimum_number_dimensions": {
383+
"@type": "xsd:integer"
384+
},
364385
"minimum_value": {
365386
"@type": "@id"
366387
},

0 commit comments

Comments
 (0)