-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOKH-LD.ttl
748 lines (644 loc) · 19.9 KB
/
OKH-LD.ttl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
# SPDX-License-Identifier: GPL-3.0-or-later
@base <https://github.com/OPEN-NEXT/OKH-LOSH/raw/master/OKH-LOSH.ttl> .
@prefix okh: <#> .
@prefix okshwa: </oshwa-#> .
@prefix obo: <http://purl.obolibrary.org/obo/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix schema: <http://schema.org/> .
@prefix spdxt: <http://spdx.org/rdf/terms#> .
@prefix terms: <http://purl.org/dc/terms/> .
@prefix epo: <http://data.epo.org/linked-data/def/patent/> .
@prefix npg: <http://ns.nature.com/terms/> .
@prefix otrl: <https://github.com/OPEN-NEXT/OKH-LOSH/raw/master/OTRL.ttl#> .
@prefix tsdc: <https://gitlab.com/OSEGermany/oh-tsdc/-/raw/master/oh-tsdc.ttl#> .
# NOTE:
# Regarding the use of `owl:unionOf` for `rdfs:domain` and `rdfs:range` in this ontology:
# Looking at the definitions for the later two properties:
# * https://www.w3.org/TR/rdf-schema/#ch_domain
# * https://www.w3.org/TR/rdf-schema/#ch_range
# and as described in this StackOverflow answer:
# <https://stackoverflow.com/a/23729566/586229>,
# multiple objects for the two properties mean,
# that *all of them* apply, simultaneously, not *one of them*.
# We want the *one of them* meaning though.
# To get that, in RDF/OWL logic,
# one needs to use the `owl:unionOf` approach.
<>
a owl:Ontology ;
owl:versionInfo "0.1" ;
owl:versionIRI <> ;
rdfs:label "OSH meta-data"@en ;
rdfs:comment "Open Source Hardware metadata - Base Ontology"@en ;
terms:contributor "Martin Häuer <[email protected]>" ;
terms:contributor "Robin Vobruba <[email protected]>" ;
terms:license "GPL v3" .
# ----- CLASSES -----
okh:Component
a owl:Class ;
rdfs:label "Component"@en ;
rdfs:comment "Either a module (MOSH) or Part (POSH); more component types may be added in the future"@en ;
# That's the main class then!
.
okh:Module
a owl:Class ;
rdfs:label "Module"@en ;
rdfs:comment "Module of Open Source Hardware (MOSH)"@en ;
rdfs:subClassOf okh:Component ;
.
okh:Part
a owl:Class ;
rdfs:label "Part"@en ;
rdfs:comment "Piece of Open Source Hardware (POSH)"@en ;
rdfs:subClassOf okh:Component ;
.
okh:Software
a owl:Class ;
rdfs:label "Software"@en ;
rdfs:comment "Software (including firmware) needed to run & use the OSH" ;
rdfs:subClassOf okh:Component ;
.
okh:Reference
a owl:Class ;
rdfs:label "unambiguous reference" ;
.
okh:Publication
a owl:Class ;
rdfs:label "Scientific Publication" ;
rdfs:comment "_scientific_ (that is: peer reviewed) publication that _contains_ the design files";
rdfs:subClassOf npg:Publication;
.
okh:Standard
a owl:Class ;
rdfs:label "Technical Standard"@en ;
rdfs:comment "official standard used in the _design_ (not e.g. DIN SPEC 3105-1)" ;
# rdfs:subClassOf wd:Q317623 ;
.
okh:WebsiteURL
a owl:Class ;
rdfs:label "Website URL" ;
rdfs:subClassOf okh:Reference ;
rdfs:subClassOf schema:URL ;
.
okh:FileURL
a owl:Class ;
rdfs:label "permanent URL to file" ;
rdfs:subClassOf okh:ComponentReference ;
rdfs:subClassOf schema:URL ;
.
okh:File
a owl:Class ;
rdfs:label "File" ;
.
okh:ManifestFile
a owl:Class ;
rdfs:label "manifest file" ;
rdfs:comment "file holding the metadata" ;
rdfs:subClassOf okh:File
.
okh:Readme
a owl:Class ;
rdfs:label "Readme" ;
rdfs:subClassOf okh:File
.
okh:ContributionGuide
a owl:Class ;
rdfs:label "Contribution Guide" ;
rdfs:subClassOf okh:File
.
okh:Image
a owl:Class ;
rdfs:label "Image" ;
rdfs:subClassOf okh:File
.
okh:BoM
a owl:Class ;
rdfs:label "Bill of Materials" ;
rdfs:subClassOf okh:File
.
okh:SourceFile
a owl:Class ;
rdfs:label "source file" ;
rdfs:subClassOf okh:File ;
.
okh:ExportFile
a owl:Class ;
rdfs:label "exported source file" ;
rdfs:subClassOf okh:File ;
.
okh:AuxiliaryFile
a owl:Class ;
rdfs:label "auxiliary file (neither source nor export)" ;
rdfs:subClassOf okh:File ;
.
okh:ManufacturingInstructions
a owl:Class ;
rdfs:label "Manufacturing Instructions" ;
rdfs:subClassOf okh:File ;
.
okh:UserManual
a owl:Class ;
rdfs:label "User Manual" ;
rdfs:subClassOf okh:File ;
.
okh:OuterDimensions
a owl:Class ;
rdfs:label "outer dimensions"@en ;
rdfs:comment "…of a module or a part"@en
.
okh:Mass
a owl:Class ;
rdfs:label "mass"@en ;
rdfs:comment "…of a module or a part"@en
.
okh:ComponentReference
a owl:Class ;
rdfs:subClassOf okh:Reference ;
rdfs:label "Component Reference" ;
rdfs:comment '''
others shall be able to identify/procure this component only by the given reference(s),
MOSH → URL to corresponding release
POSH → URL to containing folder
STD → standard designation (preferably naming the _latest_ standard)
BUY → unambiguous reference'''@en ;
.
# ----- PROPERTIES -----
okh:okhv
a owl:DatatypeProperty ;
rdfs:label "OKH version" ;
rdfs:comment "version of OKH specification the metadata is following (different version → different data fields)" ;
rdfs:subPropertyOf schema:version ;
rdfs:domain okh:ManifestFile ;
owl:cardinality 1
.
okh:dataSource
a owl:DatatypeProperty ;
rdfs:label "Metadata Source" ;
rdfs:comment "platform, where the crawler found the metadata (e.g. GitHub, Wikifactory)"@en ;
rdfs:subClassOf schema:URL ;
rdfs:domain okh:Module ;
owl:cardinality 1
.
okh:repoHost
a owl:DatatypeProperty ;
rdfs:label "Repo Host" ;
rdfs:comment "platform, where the OSH documentation is located (e.g. GitLab, Wikifactory or any self-hosted website or wiki)"@en ;
rdfs:subClassOf schema:URL ;
rdfs:domain okh:Module ;
owl:cardinality 1
.
okh:uploadMethod
a owl:DatatypeProperty ;
rdfs:label "Upload Method" ;
rdfs:comment "e.g. auto (fully integrated platforms) or manifest file (for connected platforms)"@en ;
rdfs:range xsd:string ;
rdfs:domain okh:Component ;
owl:cardinality 1
.
## ----- identification -----
okh:repository
a owl:ObjectProperty ;
rdfs:label "repository" ;
rdfs:comment '''
URL to the place where development happens (typically the repository)" ;
following this link people shall be able to contribute to the development
(reporting issues, suggesting changes, connecting to the team etc.)" '''@en;
rdfs:subPropertyOf schema:codeRepository ;
rdfs:range okh:WebsiteURL ;
owl:cardinality 1 ;
rdfs:domain okh:Module ;
.
okh:repoSnapshot
a owl:ObjectProperty ;
rdfs:label "URL respository snapshot (=specific version)" ;
rdfs:comment "LOSH-Krawler takes the commit hash from the version tag and creates this permalink" ;
rdfs:subPropertyOf okh:repository ;
rdfs:range okh:WebsiteURL ;
owl:cardinality 1 ;
rdfs:domain okh:Module ;
.
okh:version
a owl:DatatypeProperty ;
rdfs:label "version" ;
rdfs:comment "version of this Component, preferably in the semantic versioning scheme (semver.org)" ;
rdfs:subPropertyOf schema:version ;
rdfs:domain okh:Module ;
owl:cardinality 1
.
okh:forkOf
a owl:ObjectProperty ;
rdfs:label "fork of" ;
rdfs:subPropertyOf schema:isBasedOn ;
owl:cardinality 1 ;
rdfs:domain [ owl:unionOf (okh:Module okh:Part) ] ;
.
okh:versionOf
a owl:ObjectProperty ;
rdfs:label "version of" ;
rdfs:comment "connects specific versions of Modules with their versionless superclass" ;
rdfs:range okh:Module ;
rdfs:domain okh:Module ;
.
okh:documentationLanguage
a owl:DatatypeProperty ;
rdfs:label "documentation language" ;
rdfs:comment '''
IETF language tag
following the BCP 47 standard e.g. en-GB
denotes the language of the documentation for the component subject '''@en;
rdfs:subPropertyOf schema:inLanguage ;
owl:cardinality 1 ;
rdfs:domain [ owl:unionOf (okh:Module okh:Part) ] ;
.
## ----- legal -----
okh:licensor
a owl:ObjectProperty ;
rdfs:label "licensor" ;
rdfs:comment "organization/individual behind the hardware design (holder of intellectual property)" ;
rdfs:subPropertyOf schema:copyrightHolder ;
rdfs:range [ owl:unionOf (schema:Person schema:Organization) ] ;
rdfs:domain okh:Module ;
owl:cardinality 1
.
okh:organization
a owl:ObjectProperty ;
rdfs:label "organization" ;
rdfs:comment "organization representing (most) contributors of this project" ;
rdfs:range schema:Organization ;
rdfs:domain okh:Module ;
.
okh:spdxLicense
a owl:ObjectProperty ;
rdfs:label "SPDX license identifier" ;
rdfs:comment "view complete list under https://spdx.org/licenses/" ;
rdfs:domain okh:Module ;
rdfs:range spdxt:ListedLicense ; # aka SPDX license identifier for a single, atomar license
owl:cardinality 1 ;
.
okh:alternativeLicense
a owl:ObjectProperty ;
rdfs:label "non-SPDX license" ;
rdfs:comment "URL to legal code of a license without SPDX identifier, hence OSHWA-compliance is to be checked manually" ;
# rdfs:subPropertyOf spdxt:License ;
rdfs:domain okh:Module ;
rdfs:range okh:FileURL ;
owl:cardinality 1 ;
.
## ----- informative -----
# okh:contributorCount
# a owl:DatatypeProperty ;
# rdfs:label "number of conributors participating in the project" ;
# rdfs:domain okh:Module ;
# rdfs:range xsd:int ;
# .
## ----- development stage -----
okh:technologyReadinessLevel
a owl:ObjectProperty ;
rdfs:label "Technology Readiness Level (TRL)" ;
rdfs:comment "…using the OTRL definitions" ;
owl:cardinality 1 ;
rdfs:range otrl:OTRL ;
rdfs:domain okh:Module ;
.
okh:documentationReadinessLevel
a owl:ObjectProperty ;
rdfs:label "Documentation Readiness Level (DLR)" ;
rdfs:comment "…using the ODRL definitions" ;
owl:cardinality 1 ;
rdfs:range otrl:ODRL ;
rdfs:domain okh:Module ;
.
okh:attestation
a owl:ObjectProperty ;
rdfs:label "attestation" ;
rdfs:comment "permanent URL to evidence of compliance (OSHWA, FSF, DIN SPEC 3105)" ;
rdfs:range okh:WebsiteURL ;
rdfs:domain okh:Module ;
.
okh:hasPublication
a owl:ObjectProperty ;
rdfs:label "has Publication" ;
rdfs:comment "design files of this OSH modules have been peer reviewed in a scientific publication" ;
rdfs:subPropertyOf npg:hasPublication;
rdfs:domain okh:Module ;
.
# okh:certificate
# a owl:ObjectProperty ;
# rdfs:label "certificate" ;
# rdfs:comment "official certificate, such as CE mark" ;
# FIXME rdfs:subPropertyOf ;
# rdfs:domain okh:Module ;
# .
## ----- basic description -----
okh:cpcPatentClass
a owl:ObjectProperty ;
rdfs:label "Patent Class" ;
rdfs:comment "International Patent Classification (IPC)" ;
rdfs:subPropertyOf epo:classificationIPCInventive;
rdfs:domain okh:Module ;
.
okh:compliesWith
a owl:ObjectProperty ;
rdfs:label "complies with a technical standard" ;
# rdfs:subPropertyOf wdp:P5009 ;
rdfs:domain okh:Component ;
.
okh:standardID
a owl:DatatypeProperty ;
rdfs:label "Document Identifier for the technical Standard" ;
# rdfs:subPropertyOf wdp:P5046 ;
rdfs:range xsd:string ;
rdfs:domain okh:Standard ;
.
okh:function
a owl:DatatypeProperty ;
rdfs:label "functional description" ;
rdfs:comment '''
functional description, e.g. what it actually does, what problem it solves, for whom, under which conditions etc.
so if you wish that someone finds & uses your okh specifically e.g. for COVID-19-crisis response, include relevant keywords in this field
optional: description of input, output and interfaces'''@en ;
rdfs:subPropertyOf obo:BFO_0000016 ; # aka function
owl:cardinality 1 ;
rdfs:domain okh:Module ;
.
okh:hasReadme
a owl:ObjectProperty ;
rdfs:label "has Readme" ;
rdfs:comment "links to the corresponding Readme" ;
rdfs:range okh:Readme ;
rdfs:domain okh:Module ;
.
okh:hasContributionGuide
a owl:ObjectProperty ;
rdfs:label "has Contribution Guide" ;
rdfs:comment "links to the corresponding Contribution Guide" ;
rdfs:range okh:ContributionGuide ;
rdfs:domain okh:Module ;
.
okh:hasBoM
a owl:ObjectProperty ;
rdfs:label "has Bill of Materials" ;
rdfs:comment "links to the corresponding Bill of Materials" ;
rdfs:range okh:BoM ;
rdfs:domain okh:Module ;
.
okh:hasComponent
a owl:ObjectProperty ;
rdfs:label "has Component" ;
rdfs:comment "links to parts of the module" ;
rdfs:range okh:Part ;
rdfs:domain okh:Module ;
.
okh:usesModule
a owl:ObjectProperty ;
rdfs:label "uses Module" ;
rdfs:comment "refers to a *release*/snapshot of an (external) OSH Module used in this design (should also appear in the BoM)" ;
rdfs:range [ owl:unionOf (okh:Module okh:WebsiteURL) ] ;
rdfs:domain okh:Module ;
.
okh:hasImage
a owl:ObjectProperty ;
rdfs:label "has image" ;
rdfs:comment "links to the corresponding Image" ;
rdfs:subPropertyOf schema:image ;
rdfs:range okh:Image ;
rdfs:domain okh:Component ;
.
okh:functionalMetadata
a owl:DatatypeProperty ;
rdfs:label "functionality metadata" ;
rdfs:comment "Metadata addressing functionality, such as dimensions, material, weight, RPM,… (not standardised)" ;
rdfs:subPropertyOf schema:value ;
rdfs:range schema:StructuredValue ;
rdfs:domain okh:Module ;
.
okh:productionMetadata
a owl:ObjectProperty ;
rdfs:label "production metadata" ;
rdfs:comment "production-relevant metadata, such as material, manufacturing technology, outer dimensions, smallest tolerance, finest surface roughness" ;
rdfs:subPropertyOf schema:value ;
rdfs:range schema:StructuredValue ;
rdfs:domain [ owl:unionOf (okh:Module okh:Part) ] ;
.
## ----- production metadata -----
okh:manufacturingProcess
a owl:DatatypeProperty ;
rdfs:label "manufacturing process" ;
rdfs:subPropertyOf okh:productionMetadata ;
.
okh:material
a owl:DatatypeProperty ;
rdfs:label "material" ;
rdfs:subPropertyOf okh:productionMetadata ;
.
okh:hasOuterDimensions
a owl:ObjectProperty ;
rdfs:label "outer dimensions using openSCAD primitives" ;
rdfs:comment "https://en.wikibooks.org/wiki/OpenSCAD_User_Manual/Primitive_Solids" ;
.
okh:hasMass
a owl:ObjectProperty ;
rdfs:label "mass of the component" ;
rdfs:subPropertyOf okh:productionMetadata ;
.
okh:openScad
a owl:DatatypeProperty ;
rdfs:label "material" ;
rdfs:subPropertyOf okh:productionMetadata ;
rdfs:domain okh:OuterDimensions ;
.
okh:unit
a owl:DatatypeProperty ;
rdfs:label "unit" ;
rdfs:comment "mm, cm, m, g, kg" ;
rdfs:subPropertyOf okh:productionMetadata ;
rdfs:domain [ owl:unionOf (okh:OuterDimensions okh:Mass) ] ;
.
okh:value
a owl:DatatypeProperty ;
rdfs:label "value" ;
rdfs:subPropertyOf okh:productionMetadata ;
rdfs:domain okh:Mass ;
.
okh:smallestToleranceClass
a owl:ObjectProperty ;
rdfs:label "smallest tolerance class (following ISO 286)" ;
# fixme rdfs:subPropertyOf ;
rdfs:subPropertyOf okh:productionMetadata ;
rdfs:domain okh:Part ;
.
## ----- design files -----
## (diving into the documentation)
# okh:assemblyInstruction
# a owl:ObjectProperty ;
# rdfs:label "assembly instruction" ;
# rdfs:comment "can be a technical drawing, instruction etc." ;
# rdfs:range okh:FileURL ;
# rdfs:domain okh:Module ;
# .
okh:hasManifestFile
a owl:ObjectProperty ;
rdfs:label "has manifest file" ;
rdfs:range okh:ManifestFile ;
rdfs:domain [ owl:unionOf (okh:Module okh:Part) ] ;
.
okh:doi
a owl:DatatypeProperty ;
rdfs:label "DOI"@en ;
rdfs:comment "this publication has a digital object identifier (DOI)"@en ;
rdfs:domain okh:Publication ;
rdfs:subPropertyOf npg:doi ;
rdfs:range rdfs:Literal ;
.
okh:fileURL
a owl:ObjectProperty ;
rdfs:label "file URL" ;
# rdfs:subPropertyOf schema:URL ; # NOTE This is not valid, because schema:URL is a class, not a property
rdfs:domain okh:File ;
.
okh:fileFormat
a owl:ObjectProperty ;
rdfs:label "file format" ;
rdfs:subPropertyOf schema:fileFormat ;
rdfs:domain okh:File ;
.
okh:timestamp
a owl:ObjectProperty ;
rdfs:label "timestamp" ;
rdfs:comment "following ISO 8601" ;
# FixMe rdfs:subPropertyOf
rdfs:domain okh:Module ;
.
okh:source
a owl:ObjectProperty ;
rdfs:label "source file" ;
rdfs:comment "relative link to a source file" ;
rdfs:range okh:SourceFile ;
rdfs:domain [ owl:unionOf (okh:Module okh:Part) ] ;
.
okh:export
a owl:ObjectProperty ;
rdfs:label "exported source file" ;
rdfs:comment "URL to a (generated) exported source file" ;
rdfs:range okh:ExportFile ;
rdfs:domain [ owl:unionOf (okh:Module okh:Part) ] ;
.
okh:auxiliary
a owl:ObjectProperty ;
rdfs:label "has auxiliary file" ;
rdfs:comment "reference to an auxiliary file" ;
rdfs:range okh:AuxiliaryFile ;
rdfs:domain [ owl:unionOf (okh:Module okh:Part) ] ;
.
okh:hasUserManual
a owl:ObjectProperty ;
rdfs:label "has User Manual" ;
rdfs:range okh:UserManual ;
rdfs:domain okh:Module ;
.
okh:hasManufacturingInstructions
a owl:ObjectProperty ;
rdfs:label "has Manufacturing Instructions" ;
rdfs:range okh:ManufacturingInstructions ;
rdfs:domain [ owl:unionOf (okh:Module okh:Part) ] ;
.
okh:relatedTsDC
a owl:ObjectProperty ;
rdfs:label "related TsDC" ;
rdfs:comment "Identifier for the applying Technology-specific Documentation Criteria according to DIN SPEC 3105-1, e.g. `tsdc:3DP`" ;
# FIXME rdfs:subPropertyOf ;
rdfs:range tsdc:OHTsDC ;
rdfs:domain okh:Component
.
# source, export
okh:hasSoftware
a owl:ObjectProperty ;
rdfs:label "has Software" ;
rdfs:range okh:Software ;
rdfs:domain okh:Module ;
.
okh:release
a owl:DatatypeProperty ;
rdfs:label "release" ;
rdfs:comment "URL to release" ;
# rdfs:subClassOf schema:URL ;
rdfs:domain [ owl:unionOf (okh:Module okh:Software) ] ;
.
okh:installationGuide
a owl:DatatypeProperty ;
rdfs:label "Installation Guide" ;
# rdfs:subClassOf schema:URL ;
rdfs:domain okh:Software ;
.
# ----- platform-specific fields -----
## ----- OSHWA -----
okshwa:primaryType
a owl:DatatypeProperty ;
rdfs:label "primary category"@en ;
rdfs:comment "…as stated at OSHWA - possilbe values: 3D Printing, Agriculture, Arts, Education, Electronics, Enclosure, Environmental, Home Connection, IOT, Manufacturing, Other, Robotics, Science, Sound, Space, Tool, Wearables"@en ;
rdfs:range xsd:string ;
rdfs:domain okh:Module ;
.
okshwa:additionalType
a owl:DatatypeProperty ;
rdfs:label "additional category"@en ;
rdfs:comment "…as stated at OSHWA - possilbe values: 3D Printing, Agriculture, Arts, Education, Electronics, Enclosure, Environmental, Home Connection, IOT, Manufacturing, Other, Robotics, Science, Sound, Space, Tool, Wearables"@en ;
rdfs:range xsd:string ;
rdfs:domain okh:Module ;
.
okshwa:hardwareLicense
a owl:DatatypeProperty ;
rdfs:label "hardware license"@en ;
rdfs:comment "…as stated at OSHWA"@en ;
rdfs:subPropertyOf okh:spdxLicense ;
rdfs:domain okh:Module ;
.
okshwa:softwareLicense
a owl:DatatypeProperty ;
rdfs:label "software license"@en ;
rdfs:comment "…as stated at OSHWA"@en ;
rdfs:subPropertyOf okh:spdxLicense ;
rdfs:domain okh:Module ;
.
okshwa:documentationLicense
a owl:DatatypeProperty ;
rdfs:label "documenation license"@en ;
rdfs:comment "…as stated at OSHWA"@en ;
rdfs:subPropertyOf okh:spdxLicense ;
rdfs:domain okh:Module ;
.
okshwa:country
a owl:DatatypeProperty ;
rdfs:label "origin (country)"@en ;
rdfs:comment "…as stated at OSHWA"@en ;
rdfs:range xsd:string ;
rdfs:domain okh:Module ;
.
okshwa:certificationDate
a owl:DatatypeProperty ;
rdfs:label "certification date"@en ;
rdfs:comment "…as stated at OSHWA"@en ;
rdfs:domain okh:Module ;
.
## ----- Wikifactory -----
# see https://github.com/OPEN-NEXT/LOSH-Reporter/issues/8
## ----- Thingiverse -----
# nothing so far, since this would slow down fetching enormously
### ----- source/export subproperties -----
### (from TsDC)
#
#okh:rationale
# a owl:ObjectProperty ;
# rdfs:label "rationale" ;
# rdfs:range [ owl:unionOf (okh:source okh:export) ] ;
# rdfs:domain okh:Component ;
# .
#
#okh:design
# a owl:ObjectProperty ;
# rdfs:label "design file" ;
# rdfs:range [ owl:unionOf (okh:source okh:export) ] ;
# rdfs:domain [ owl:unionOf (okh:Module okh:Part) ] ;
# .