pyMetaModel 0.3.3__tar.gz → 0.4.0__tar.gz
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.
- {pymetamodel-0.3.3 → pymetamodel-0.4.0}/.github/workflows/build.yml +3 -3
- {pymetamodel-0.3.3 → pymetamodel-0.4.0}/.github/workflows/upload-to-pypi.yml +2 -2
- {pymetamodel-0.3.3 → pymetamodel-0.4.0}/PKG-INFO +4 -3
- {pymetamodel-0.3.3 → pymetamodel-0.4.0}/README.md +2 -1
- pymetamodel-0.4.0/docs/index.md +5 -0
- {pymetamodel-0.3.3 → pymetamodel-0.4.0}/examples/ceur-ws/ceur-ws.puml +6 -3
- {pymetamodel-0.3.3 → pymetamodel-0.4.0}/examples/ceur-ws/ceur-ws.xlsx +0 -0
- {pymetamodel-0.3.3 → pymetamodel-0.4.0}/examples/ceur-ws/ceur-ws.yaml +128 -3
- {pymetamodel-0.3.3 → pymetamodel-0.4.0}/examples/ceur-ws/ceur-ws_puml.txt +6 -3
- pymetamodel-0.4.0/examples/city/city.puml +94 -0
- {pymetamodel-0.3.3 → pymetamodel-0.4.0}/examples/city/city.xlsx +0 -0
- pymetamodel-0.4.0/examples/city/city.yaml +291 -0
- pymetamodel-0.4.0/examples/city/city_puml.txt +96 -0
- {pymetamodel-0.3.3 → pymetamodel-0.4.0}/examples/family/FamilyContext.puml +4 -2
- {pymetamodel-0.3.3 → pymetamodel-0.4.0}/examples/family/FamilyContext.xlsx +0 -0
- {pymetamodel-0.3.3 → pymetamodel-0.4.0}/examples/family/FamilyContext.yaml +128 -3
- {pymetamodel-0.3.3 → pymetamodel-0.4.0}/examples/family/FamilyContext_puml.txt +4 -2
- pymetamodel-0.4.0/examples/infrastructure/infrastructure.mermaid +41 -0
- pymetamodel-0.4.0/examples/infrastructure/infrastructure.puml +133 -0
- pymetamodel-0.4.0/examples/infrastructure/infrastructure.py +0 -0
- pymetamodel-0.4.0/examples/infrastructure/infrastructure.sidif +364 -0
- pymetamodel-0.4.0/examples/infrastructure/infrastructure.xlsx +0 -0
- pymetamodel-0.4.0/examples/infrastructure/infrastructure.yaml +519 -0
- pymetamodel-0.4.0/examples/infrastructure/infrastructure_puml.txt +135 -0
- {pymetamodel-0.3.3 → pymetamodel-0.4.0}/examples/metamodel/metamodel.puml +97 -5
- pymetamodel-0.4.0/examples/metamodel/metamodel.py +0 -0
- {pymetamodel-0.3.3 → pymetamodel-0.4.0}/examples/metamodel/metamodel.xlsx +0 -0
- {pymetamodel-0.3.3 → pymetamodel-0.4.0}/examples/metamodel/metamodel.yaml +128 -3
- {pymetamodel-0.3.3 → pymetamodel-0.4.0}/examples/metamodel/metamodel_puml.txt +97 -5
- {pymetamodel-0.3.3 → pymetamodel-0.4.0}/examples/scientific-events/scientific-events.puml +18 -7
- pymetamodel-0.4.0/examples/scientific-events/scientific-events.py +0 -0
- {pymetamodel-0.3.3 → pymetamodel-0.4.0}/examples/scientific-events/scientific-events.sidif +158 -366
- {pymetamodel-0.3.3 → pymetamodel-0.4.0}/examples/scientific-events/scientific-events.xlsx +0 -0
- {pymetamodel-0.3.3 → pymetamodel-0.4.0}/examples/scientific-events/scientific-events.yaml +128 -3
- {pymetamodel-0.3.3 → pymetamodel-0.4.0}/examples/scientific-events/scientific-events_puml.txt +18 -7
- {pymetamodel-0.3.3 → pymetamodel-0.4.0}/examples/teaching/TeachingSchema.puml +3 -2
- pymetamodel-0.4.0/examples/teaching/TeachingSchema.py +0 -0
- {pymetamodel-0.3.3 → pymetamodel-0.4.0}/examples/teaching/TeachingSchema.xlsx +0 -0
- {pymetamodel-0.3.3 → pymetamodel-0.4.0}/examples/teaching/TeachingSchema.yaml +128 -3
- {pymetamodel-0.3.3 → pymetamodel-0.4.0}/examples/teaching/TeachingSchema_puml.txt +3 -2
- pymetamodel-0.4.0/meta/__init__.py +1 -0
- {pymetamodel-0.3.3 → pymetamodel-0.4.0}/meta/metamodel.py +89 -49
- {pymetamodel-0.3.3 → pymetamodel-0.4.0}/meta/metamodel_cmd.py +17 -13
- {pymetamodel-0.3.3 → pymetamodel-0.4.0}/meta/mw.py +0 -3
- {pymetamodel-0.3.3 → pymetamodel-0.4.0}/meta/profiler.py +2 -2
- {pymetamodel-0.3.3 → pymetamodel-0.4.0}/meta/sidif2linkml.py +1 -3
- {pymetamodel-0.3.3 → pymetamodel-0.4.0}/meta/smw_type.py +3 -3
- {pymetamodel-0.3.3 → pymetamodel-0.4.0}/meta/uml.py +38 -14
- {pymetamodel-0.3.3 → pymetamodel-0.4.0}/meta/version.py +1 -1
- pymetamodel-0.4.0/mkdocs.yml +18 -0
- {pymetamodel-0.3.3 → pymetamodel-0.4.0}/pyproject.toml +6 -4
- pymetamodel-0.4.0/scripts/doc +88 -0
- pymetamodel-0.4.0/scripts/release +8 -0
- pymetamodel-0.4.0/scripts/test +132 -0
- pymetamodel-0.4.0/tests/__init__.py +0 -0
- pymetamodel-0.4.0/tests/test_generators.py +72 -0
- {pymetamodel-0.3.3 → pymetamodel-0.4.0}/tests/test_mw.py +0 -1
- {pymetamodel-0.3.3 → pymetamodel-0.4.0}/tests/test_plantuml.py +33 -13
- pymetamodel-0.4.0/tests/test_sidif.py +110 -0
- pymetamodel-0.3.3/examples/ceur-ws/ceur-ws.py +0 -397
- pymetamodel-0.3.3/examples/city/city.py +0 -228
- pymetamodel-0.3.3/examples/city/city.yaml +0 -166
- pymetamodel-0.3.3/examples/family/FamilyContext.py +0 -472
- pymetamodel-0.3.3/examples/metamodel/metamodel.py +0 -891
- pymetamodel-0.3.3/examples/scientific-events/scientific-events.py +0 -710
- pymetamodel-0.3.3/examples/teaching/TeachingSchema.py +0 -997
- pymetamodel-0.3.3/meta/__init__.py +0 -1
- pymetamodel-0.3.3/scripts/test +0 -49
- pymetamodel-0.3.3/tests/test_sidif.py +0 -31
- {pymetamodel-0.3.3 → pymetamodel-0.4.0}/.gitignore +0 -0
- {pymetamodel-0.3.3 → pymetamodel-0.4.0}/.project +0 -0
- {pymetamodel-0.3.3 → pymetamodel-0.4.0}/.pydevproject +0 -0
- {pymetamodel-0.3.3 → pymetamodel-0.4.0}/LICENSE +0 -0
- {pymetamodel-0.3.3 → pymetamodel-0.4.0}/examples/ceur-ws/ceur-ws.mermaid +0 -0
- /pymetamodel-0.3.3/examples/city/city.puml → /pymetamodel-0.4.0/examples/ceur-ws/ceur-ws.py +0 -0
- {pymetamodel-0.3.3 → pymetamodel-0.4.0}/examples/ceur-ws/ceur-ws.sidif +0 -0
- {pymetamodel-0.3.3 → pymetamodel-0.4.0}/examples/city/city.mermaid +0 -0
- /pymetamodel-0.3.3/examples/city/city_puml.txt → /pymetamodel-0.4.0/examples/city/city.py +0 -0
- {pymetamodel-0.3.3 → pymetamodel-0.4.0}/examples/city/city.sidif +0 -0
- {pymetamodel-0.3.3 → pymetamodel-0.4.0}/examples/family/FamilyContext.mermaid +0 -0
- /pymetamodel-0.3.3/tests/__init__.py → /pymetamodel-0.4.0/examples/family/FamilyContext.py +0 -0
- {pymetamodel-0.3.3 → pymetamodel-0.4.0}/examples/family/FamilyContext.sidif +0 -0
- {pymetamodel-0.3.3 → pymetamodel-0.4.0}/examples/metamodel/metamodel.mermaid +0 -0
- {pymetamodel-0.3.3 → pymetamodel-0.4.0}/examples/metamodel/metamodel.sidif +0 -0
- {pymetamodel-0.3.3 → pymetamodel-0.4.0}/examples/scientific-events/scientific-events.mermaid +0 -0
- {pymetamodel-0.3.3 → pymetamodel-0.4.0}/examples/teaching/TeachingSchema.mermaid +0 -0
- {pymetamodel-0.3.3 → pymetamodel-0.4.0}/examples/teaching/TeachingSchema.sidif +0 -0
- {pymetamodel-0.3.3 → pymetamodel-0.4.0}/metamodel.puml +0 -0
- {pymetamodel-0.3.3 → pymetamodel-0.4.0}/scripts/blackisort +0 -0
- {pymetamodel-0.3.3 → pymetamodel-0.4.0}/scripts/genexamples +0 -0
- {pymetamodel-0.3.3 → pymetamodel-0.4.0}/scripts/install +0 -0
- {pymetamodel-0.3.3 → pymetamodel-0.4.0}/tests/basemwtest.py +0 -0
- {pymetamodel-0.3.3 → pymetamodel-0.4.0}/tests/basetest.py +0 -0
- {pymetamodel-0.3.3 → pymetamodel-0.4.0}/tests/test_linkml.py +0 -0
- {pymetamodel-0.3.3 → pymetamodel-0.4.0}/tests/test_metamodel.py +0 -0
|
@@ -19,12 +19,12 @@ jobs:
|
|
|
19
19
|
strategy:
|
|
20
20
|
matrix:
|
|
21
21
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
|
22
|
-
python-version: [ 3.9, '3.10','3.11' ]
|
|
22
|
+
python-version: [ '3.9', '3.10', '3.11', '3.12' ]
|
|
23
23
|
|
|
24
24
|
steps:
|
|
25
|
-
- uses: actions/checkout@
|
|
25
|
+
- uses: actions/checkout@v4
|
|
26
26
|
- name: Set up Python ${{ matrix.python-version }}
|
|
27
|
-
uses: actions/setup-python@
|
|
27
|
+
uses: actions/setup-python@v5
|
|
28
28
|
with:
|
|
29
29
|
python-version: ${{ matrix.python-version }}
|
|
30
30
|
- name: Install python dependencies
|
|
@@ -11,9 +11,9 @@ jobs:
|
|
|
11
11
|
# IMPORTANT: this permission is mandatory for trusted publishing
|
|
12
12
|
id-token: write
|
|
13
13
|
steps:
|
|
14
|
-
- uses: actions/checkout@
|
|
14
|
+
- uses: actions/checkout@v4
|
|
15
15
|
- name: Set up Python
|
|
16
|
-
uses: actions/setup-python@
|
|
16
|
+
uses: actions/setup-python@v5
|
|
17
17
|
with:
|
|
18
18
|
python-version: '3.x'
|
|
19
19
|
- name: Install dependencies
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: pyMetaModel
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.4.0
|
|
4
4
|
Dynamic: Summary
|
|
5
5
|
Project-URL: Home, https://github.com/WolfgangFahl/pyMetaModel
|
|
6
6
|
Project-URL: Documentation, https://wiki.bitplan.com/index.php/PyMetaModel
|
|
@@ -227,7 +227,7 @@ Requires-Dist: linkml-runtime>=1.4.10
|
|
|
227
227
|
Requires-Dist: linkml>=1.4.11
|
|
228
228
|
Requires-Dist: mwparserfromhell>=0.6.6
|
|
229
229
|
Requires-Dist: py-3rdparty-mediawiki>=0.11.3
|
|
230
|
-
Requires-Dist: py-sidif>=0.
|
|
230
|
+
Requires-Dist: py-sidif>=0.2.0
|
|
231
231
|
Requires-Dist: pylodstorage>=0.11.7
|
|
232
232
|
Requires-Dist: urllib3
|
|
233
233
|
Provides-Extra: test
|
|
@@ -239,10 +239,11 @@ migrates https://wiki.bitplan.com/index.php/MetaModel#tab=Model to python
|
|
|
239
239
|
|
|
240
240
|
[](https://github.com/WolfgangFahl/pyMetaModel/discussions)
|
|
241
241
|
[](https://pypi.org/project/pyMetaModel/)
|
|
242
|
-
[](https://github.com/WolfgangFahl/pyMetaModel/actions/workflows/build.yml)
|
|
243
243
|
[](https://pypi.python.org/pypi/pyMetaModel/)
|
|
244
244
|
[](https://github.com/WolfgangFahl/pyMetaModel/issues)
|
|
245
245
|
[](https://github.com/WolfgangFahl/pyMetaModel/issues/?q=is%3Aissue+is%3Aclosed)
|
|
246
|
+
[](https://WolfgangFahl.github.io/pyMetaModel/)
|
|
246
247
|
[](https://www.apache.org/licenses/LICENSE-2.0)
|
|
247
248
|
|
|
248
249
|
## Introduction
|
|
@@ -3,10 +3,11 @@ migrates https://wiki.bitplan.com/index.php/MetaModel#tab=Model to python
|
|
|
3
3
|
|
|
4
4
|
[](https://github.com/WolfgangFahl/pyMetaModel/discussions)
|
|
5
5
|
[](https://pypi.org/project/pyMetaModel/)
|
|
6
|
-
[](https://github.com/WolfgangFahl/pyMetaModel/actions/workflows/build.yml)
|
|
7
7
|
[](https://pypi.python.org/pypi/pyMetaModel/)
|
|
8
8
|
[](https://github.com/WolfgangFahl/pyMetaModel/issues)
|
|
9
9
|
[](https://github.com/WolfgangFahl/pyMetaModel/issues/?q=is%3Aissue+is%3Aclosed)
|
|
10
|
+
[](https://WolfgangFahl.github.io/pyMetaModel/)
|
|
10
11
|
[](https://www.apache.org/licenses/LICENSE-2.0)
|
|
11
12
|
|
|
12
13
|
## Introduction
|
|
@@ -12,13 +12,16 @@ package CeurwsSchema {
|
|
|
12
12
|
urn:External identifier
|
|
13
13
|
}
|
|
14
14
|
Note top of Volume
|
|
15
|
-
A Volume is a collection of papers
|
|
15
|
+
A Volume is a collection of papers
|
|
16
|
+
mostly documenting the results of an
|
|
17
|
+
academic event
|
|
16
18
|
End note
|
|
17
19
|
class Session {
|
|
18
20
|
title:Text
|
|
19
21
|
}
|
|
20
22
|
Note top of Session
|
|
21
|
-
A Session is a a collection of papers as
|
|
23
|
+
A Session is a a collection of papers as
|
|
24
|
+
part of a Volume
|
|
22
25
|
End note
|
|
23
26
|
class Paper {
|
|
24
27
|
id:Text
|
|
@@ -38,7 +41,7 @@ Session "session 1" -- "papers *" Paper
|
|
|
38
41
|
Paper "papers *" -- "authors *" Scholar
|
|
39
42
|
|
|
40
43
|
' BITPlan Corporate identity skin params
|
|
41
|
-
' Copyright (c) 2015-
|
|
44
|
+
' Copyright (c) 2015-2024 BITPlan GmbH
|
|
42
45
|
' see http://wiki.bitplan.com/PlantUmlSkinParams#BITPlanCI
|
|
43
46
|
' skinparams generated by com.bitplan.restmodelmanager
|
|
44
47
|
skinparam note {
|
|
Binary file
|
|
@@ -13,45 +13,79 @@ prefixes:
|
|
|
13
13
|
shex:
|
|
14
14
|
prefix_prefix: shex
|
|
15
15
|
prefix_reference: http://www.w3.org/ns/shex#
|
|
16
|
+
schema:
|
|
17
|
+
prefix_prefix: schema
|
|
18
|
+
prefix_reference: http://schema.org/
|
|
16
19
|
default_prefix: CeurwsSchema
|
|
17
20
|
default_range: string
|
|
18
21
|
types:
|
|
19
22
|
string:
|
|
20
23
|
name: string
|
|
21
24
|
description: A character string
|
|
25
|
+
notes:
|
|
26
|
+
- In RDF serializations, a slot with range of string is treated as a literal or
|
|
27
|
+
type xsd:string. If you are authoring schemas in LinkML YAML, the type is
|
|
28
|
+
referenced with the lower case "string".
|
|
22
29
|
from_schema: https://w3id.org/linkml/types
|
|
30
|
+
exact_mappings:
|
|
31
|
+
- schema:Text
|
|
23
32
|
base: str
|
|
24
33
|
uri: xsd:string
|
|
25
34
|
integer:
|
|
26
35
|
name: integer
|
|
27
36
|
description: An integer
|
|
37
|
+
notes:
|
|
38
|
+
- If you are authoring schemas in LinkML YAML, the type is referenced with the
|
|
39
|
+
lower case "integer".
|
|
28
40
|
from_schema: https://w3id.org/linkml/types
|
|
41
|
+
exact_mappings:
|
|
42
|
+
- schema:Integer
|
|
29
43
|
base: int
|
|
30
44
|
uri: xsd:integer
|
|
31
45
|
boolean:
|
|
32
46
|
name: boolean
|
|
33
47
|
description: A binary (true or false) value
|
|
48
|
+
notes:
|
|
49
|
+
- If you are authoring schemas in LinkML YAML, the type is referenced with the
|
|
50
|
+
lower case "boolean".
|
|
34
51
|
from_schema: https://w3id.org/linkml/types
|
|
52
|
+
exact_mappings:
|
|
53
|
+
- schema:Boolean
|
|
35
54
|
base: Bool
|
|
36
55
|
uri: xsd:boolean
|
|
37
56
|
repr: bool
|
|
38
57
|
float:
|
|
39
58
|
name: float
|
|
40
59
|
description: A real number that conforms to the xsd:float specification
|
|
60
|
+
notes:
|
|
61
|
+
- If you are authoring schemas in LinkML YAML, the type is referenced with the
|
|
62
|
+
lower case "float".
|
|
41
63
|
from_schema: https://w3id.org/linkml/types
|
|
64
|
+
exact_mappings:
|
|
65
|
+
- schema:Float
|
|
42
66
|
base: float
|
|
43
67
|
uri: xsd:float
|
|
44
68
|
double:
|
|
45
69
|
name: double
|
|
46
70
|
description: A real number that conforms to the xsd:double specification
|
|
71
|
+
notes:
|
|
72
|
+
- If you are authoring schemas in LinkML YAML, the type is referenced with the
|
|
73
|
+
lower case "double".
|
|
47
74
|
from_schema: https://w3id.org/linkml/types
|
|
75
|
+
close_mappings:
|
|
76
|
+
- schema:Float
|
|
48
77
|
base: float
|
|
49
78
|
uri: xsd:double
|
|
50
79
|
decimal:
|
|
51
80
|
name: decimal
|
|
52
81
|
description: A real number with arbitrary precision that conforms to the xsd:decimal
|
|
53
82
|
specification
|
|
83
|
+
notes:
|
|
84
|
+
- If you are authoring schemas in LinkML YAML, the type is referenced with the
|
|
85
|
+
lower case "decimal".
|
|
54
86
|
from_schema: https://w3id.org/linkml/types
|
|
87
|
+
broad_mappings:
|
|
88
|
+
- schema:Number
|
|
55
89
|
base: Decimal
|
|
56
90
|
uri: xsd:decimal
|
|
57
91
|
time:
|
|
@@ -59,30 +93,46 @@ types:
|
|
|
59
93
|
description: A time object represents a (local) time of day, independent of any
|
|
60
94
|
particular day
|
|
61
95
|
notes:
|
|
62
|
-
- URI is dateTime because OWL reasoners
|
|
96
|
+
- URI is dateTime because OWL reasoners do not work with straight date or time
|
|
97
|
+
- If you are authoring schemas in LinkML YAML, the type is referenced with the
|
|
98
|
+
lower case "time".
|
|
63
99
|
from_schema: https://w3id.org/linkml/types
|
|
100
|
+
exact_mappings:
|
|
101
|
+
- schema:Time
|
|
64
102
|
base: XSDTime
|
|
65
|
-
uri: xsd:
|
|
103
|
+
uri: xsd:time
|
|
66
104
|
repr: str
|
|
67
105
|
date:
|
|
68
106
|
name: date
|
|
69
107
|
description: a date (year, month and day) in an idealized calendar
|
|
70
108
|
notes:
|
|
71
109
|
- URI is dateTime because OWL reasoners don't work with straight date or time
|
|
110
|
+
- If you are authoring schemas in LinkML YAML, the type is referenced with the
|
|
111
|
+
lower case "date".
|
|
72
112
|
from_schema: https://w3id.org/linkml/types
|
|
113
|
+
exact_mappings:
|
|
114
|
+
- schema:Date
|
|
73
115
|
base: XSDDate
|
|
74
116
|
uri: xsd:date
|
|
75
117
|
repr: str
|
|
76
118
|
datetime:
|
|
77
119
|
name: datetime
|
|
78
120
|
description: The combination of a date and time
|
|
121
|
+
notes:
|
|
122
|
+
- If you are authoring schemas in LinkML YAML, the type is referenced with the
|
|
123
|
+
lower case "datetime".
|
|
79
124
|
from_schema: https://w3id.org/linkml/types
|
|
125
|
+
exact_mappings:
|
|
126
|
+
- schema:DateTime
|
|
80
127
|
base: XSDDateTime
|
|
81
128
|
uri: xsd:dateTime
|
|
82
129
|
repr: str
|
|
83
130
|
date_or_datetime:
|
|
84
131
|
name: date_or_datetime
|
|
85
132
|
description: Either a date or a datetime
|
|
133
|
+
notes:
|
|
134
|
+
- If you are authoring schemas in LinkML YAML, the type is referenced with the
|
|
135
|
+
lower case "date_or_datetime".
|
|
86
136
|
from_schema: https://w3id.org/linkml/types
|
|
87
137
|
base: str
|
|
88
138
|
uri: linkml:DateOrDatetime
|
|
@@ -90,20 +140,50 @@ types:
|
|
|
90
140
|
uriorcurie:
|
|
91
141
|
name: uriorcurie
|
|
92
142
|
description: a URI or a CURIE
|
|
143
|
+
notes:
|
|
144
|
+
- If you are authoring schemas in LinkML YAML, the type is referenced with the
|
|
145
|
+
lower case "uriorcurie".
|
|
93
146
|
from_schema: https://w3id.org/linkml/types
|
|
94
147
|
base: URIorCURIE
|
|
95
148
|
uri: xsd:anyURI
|
|
96
149
|
repr: str
|
|
150
|
+
curie:
|
|
151
|
+
name: curie
|
|
152
|
+
conforms_to: https://www.w3.org/TR/curie/
|
|
153
|
+
description: a compact URI
|
|
154
|
+
notes:
|
|
155
|
+
- If you are authoring schemas in LinkML YAML, the type is referenced with the
|
|
156
|
+
lower case "curie".
|
|
157
|
+
comments:
|
|
158
|
+
- in RDF serializations this MUST be expanded to a URI
|
|
159
|
+
- in non-RDF serializations MAY be serialized as the compact representation
|
|
160
|
+
from_schema: https://w3id.org/linkml/types
|
|
161
|
+
base: Curie
|
|
162
|
+
uri: xsd:string
|
|
163
|
+
repr: str
|
|
97
164
|
uri:
|
|
98
165
|
name: uri
|
|
166
|
+
conforms_to: https://www.ietf.org/rfc/rfc3987.txt
|
|
99
167
|
description: a complete URI
|
|
168
|
+
notes:
|
|
169
|
+
- If you are authoring schemas in LinkML YAML, the type is referenced with the
|
|
170
|
+
lower case "uri".
|
|
171
|
+
comments:
|
|
172
|
+
- in RDF serializations a slot with range of uri is treated as a literal or type
|
|
173
|
+
xsd:anyURI unless it is an identifier or a reference to an identifier, in which
|
|
174
|
+
case it is translated directly to a node
|
|
100
175
|
from_schema: https://w3id.org/linkml/types
|
|
176
|
+
close_mappings:
|
|
177
|
+
- schema:URL
|
|
101
178
|
base: URI
|
|
102
179
|
uri: xsd:anyURI
|
|
103
180
|
repr: str
|
|
104
181
|
ncname:
|
|
105
182
|
name: ncname
|
|
106
183
|
description: Prefix part of CURIE
|
|
184
|
+
notes:
|
|
185
|
+
- If you are authoring schemas in LinkML YAML, the type is referenced with the
|
|
186
|
+
lower case "ncname".
|
|
107
187
|
from_schema: https://w3id.org/linkml/types
|
|
108
188
|
base: NCName
|
|
109
189
|
uri: xsd:string
|
|
@@ -111,8 +191,11 @@ types:
|
|
|
111
191
|
objectidentifier:
|
|
112
192
|
name: objectidentifier
|
|
113
193
|
description: A URI or CURIE that represents an object in the model.
|
|
194
|
+
notes:
|
|
195
|
+
- If you are authoring schemas in LinkML YAML, the type is referenced with the
|
|
196
|
+
lower case "objectidentifier".
|
|
114
197
|
comments:
|
|
115
|
-
- Used for
|
|
198
|
+
- Used for inheritance and type checking
|
|
116
199
|
from_schema: https://w3id.org/linkml/types
|
|
117
200
|
base: ElementIdentifier
|
|
118
201
|
uri: shex:iri
|
|
@@ -120,10 +203,52 @@ types:
|
|
|
120
203
|
nodeidentifier:
|
|
121
204
|
name: nodeidentifier
|
|
122
205
|
description: A URI, CURIE or BNODE that represents a node in a model.
|
|
206
|
+
notes:
|
|
207
|
+
- If you are authoring schemas in LinkML YAML, the type is referenced with the
|
|
208
|
+
lower case "nodeidentifier".
|
|
123
209
|
from_schema: https://w3id.org/linkml/types
|
|
124
210
|
base: NodeIdentifier
|
|
125
211
|
uri: shex:nonLiteral
|
|
126
212
|
repr: str
|
|
213
|
+
jsonpointer:
|
|
214
|
+
name: jsonpointer
|
|
215
|
+
conforms_to: https://datatracker.ietf.org/doc/html/rfc6901
|
|
216
|
+
description: A string encoding a JSON Pointer. The value of the string MUST conform
|
|
217
|
+
to JSON Point syntax and SHOULD dereference to a valid object within the current
|
|
218
|
+
instance document when encoded in tree form.
|
|
219
|
+
notes:
|
|
220
|
+
- If you are authoring schemas in LinkML YAML, the type is referenced with the
|
|
221
|
+
lower case "jsonpointer".
|
|
222
|
+
from_schema: https://w3id.org/linkml/types
|
|
223
|
+
base: str
|
|
224
|
+
uri: xsd:string
|
|
225
|
+
repr: str
|
|
226
|
+
jsonpath:
|
|
227
|
+
name: jsonpath
|
|
228
|
+
conforms_to: https://www.ietf.org/archive/id/draft-goessner-dispatch-jsonpath-00.html
|
|
229
|
+
description: A string encoding a JSON Path. The value of the string MUST conform
|
|
230
|
+
to JSON Point syntax and SHOULD dereference to zero or more valid objects within
|
|
231
|
+
the current instance document when encoded in tree form.
|
|
232
|
+
notes:
|
|
233
|
+
- If you are authoring schemas in LinkML YAML, the type is referenced with the
|
|
234
|
+
lower case "jsonpath".
|
|
235
|
+
from_schema: https://w3id.org/linkml/types
|
|
236
|
+
base: str
|
|
237
|
+
uri: xsd:string
|
|
238
|
+
repr: str
|
|
239
|
+
sparqlpath:
|
|
240
|
+
name: sparqlpath
|
|
241
|
+
conforms_to: https://www.w3.org/TR/sparql11-query/#propertypaths
|
|
242
|
+
description: A string encoding a SPARQL Property Path. The value of the string
|
|
243
|
+
MUST conform to SPARQL syntax and SHOULD dereference to zero or more valid objects
|
|
244
|
+
within the current instance document when encoded as RDF.
|
|
245
|
+
notes:
|
|
246
|
+
- If you are authoring schemas in LinkML YAML, the type is referenced with the
|
|
247
|
+
lower case "sparqlpath".
|
|
248
|
+
from_schema: https://w3id.org/linkml/types
|
|
249
|
+
base: str
|
|
250
|
+
uri: xsd:string
|
|
251
|
+
repr: str
|
|
127
252
|
slots:
|
|
128
253
|
number:
|
|
129
254
|
name: number
|
|
@@ -13,13 +13,16 @@ package CeurwsSchema {
|
|
|
13
13
|
urn:External identifier
|
|
14
14
|
}
|
|
15
15
|
Note top of Volume
|
|
16
|
-
A Volume is a collection of papers
|
|
16
|
+
A Volume is a collection of papers
|
|
17
|
+
mostly documenting the results of an
|
|
18
|
+
academic event
|
|
17
19
|
End note
|
|
18
20
|
class Session {
|
|
19
21
|
title:Text
|
|
20
22
|
}
|
|
21
23
|
Note top of Session
|
|
22
|
-
A Session is a a collection of papers as
|
|
24
|
+
A Session is a a collection of papers as
|
|
25
|
+
part of a Volume
|
|
23
26
|
End note
|
|
24
27
|
class Paper {
|
|
25
28
|
id:Text
|
|
@@ -39,7 +42,7 @@ Session "session 1" -- "papers *" Paper
|
|
|
39
42
|
Paper "papers *" -- "authors *" Scholar
|
|
40
43
|
|
|
41
44
|
' BITPlan Corporate identity skin params
|
|
42
|
-
' Copyright (c) 2015-
|
|
45
|
+
' Copyright (c) 2015-2024 BITPlan GmbH
|
|
43
46
|
' see http://wiki.bitplan.com/PlantUmlSkinParams#BITPlanCI
|
|
44
47
|
' skinparams generated by com.bitplan.restmodelmanager
|
|
45
48
|
skinparam note {
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
package City {
|
|
2
|
+
class City {
|
|
3
|
+
name:Text
|
|
4
|
+
webpage:URL
|
|
5
|
+
wikipedia_url:URL
|
|
6
|
+
Population:Number
|
|
7
|
+
}
|
|
8
|
+
Note top of City
|
|
9
|
+
I represent a City like Berlin, New York
|
|
10
|
+
or Tokyo
|
|
11
|
+
End note
|
|
12
|
+
class Country {
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
' BITPlan Corporate identity skin params
|
|
17
|
+
' Copyright (c) 2015-2024 BITPlan GmbH
|
|
18
|
+
' see http://wiki.bitplan.com/PlantUmlSkinParams#BITPlanCI
|
|
19
|
+
' skinparams generated by com.bitplan.restmodelmanager
|
|
20
|
+
skinparam note {
|
|
21
|
+
BackGroundColor #FFFFFF
|
|
22
|
+
FontSize 12
|
|
23
|
+
ArrowColor #FF8000
|
|
24
|
+
BorderColor #FF8000
|
|
25
|
+
FontColor black
|
|
26
|
+
FontName Technical
|
|
27
|
+
}
|
|
28
|
+
skinparam component {
|
|
29
|
+
BackGroundColor #FFFFFF
|
|
30
|
+
FontSize 12
|
|
31
|
+
ArrowColor #FF8000
|
|
32
|
+
BorderColor #FF8000
|
|
33
|
+
FontColor black
|
|
34
|
+
FontName Technical
|
|
35
|
+
}
|
|
36
|
+
skinparam package {
|
|
37
|
+
BackGroundColor #FFFFFF
|
|
38
|
+
FontSize 12
|
|
39
|
+
ArrowColor #FF8000
|
|
40
|
+
BorderColor #FF8000
|
|
41
|
+
FontColor black
|
|
42
|
+
FontName Technical
|
|
43
|
+
}
|
|
44
|
+
skinparam usecase {
|
|
45
|
+
BackGroundColor #FFFFFF
|
|
46
|
+
FontSize 12
|
|
47
|
+
ArrowColor #FF8000
|
|
48
|
+
BorderColor #FF8000
|
|
49
|
+
FontColor black
|
|
50
|
+
FontName Technical
|
|
51
|
+
}
|
|
52
|
+
skinparam activity {
|
|
53
|
+
BackGroundColor #FFFFFF
|
|
54
|
+
FontSize 12
|
|
55
|
+
ArrowColor #FF8000
|
|
56
|
+
BorderColor #FF8000
|
|
57
|
+
FontColor black
|
|
58
|
+
FontName Technical
|
|
59
|
+
}
|
|
60
|
+
skinparam classAttribute {
|
|
61
|
+
BackGroundColor #FFFFFF
|
|
62
|
+
FontSize 12
|
|
63
|
+
ArrowColor #FF8000
|
|
64
|
+
BorderColor #FF8000
|
|
65
|
+
FontColor black
|
|
66
|
+
FontName Technical
|
|
67
|
+
}
|
|
68
|
+
skinparam interface {
|
|
69
|
+
BackGroundColor #FFFFFF
|
|
70
|
+
FontSize 12
|
|
71
|
+
ArrowColor #FF8000
|
|
72
|
+
BorderColor #FF8000
|
|
73
|
+
FontColor black
|
|
74
|
+
FontName Technical
|
|
75
|
+
}
|
|
76
|
+
skinparam class {
|
|
77
|
+
BackGroundColor #FFFFFF
|
|
78
|
+
FontSize 12
|
|
79
|
+
ArrowColor #FF8000
|
|
80
|
+
BorderColor #FF8000
|
|
81
|
+
FontColor black
|
|
82
|
+
FontName Technical
|
|
83
|
+
}
|
|
84
|
+
skinparam object {
|
|
85
|
+
BackGroundColor #FFFFFF
|
|
86
|
+
FontSize 12
|
|
87
|
+
ArrowColor #FF8000
|
|
88
|
+
BorderColor #FF8000
|
|
89
|
+
FontColor black
|
|
90
|
+
FontName Technical
|
|
91
|
+
}
|
|
92
|
+
hide Circle
|
|
93
|
+
' end of skinparams '
|
|
94
|
+
|
|
Binary file
|