forked from i40-Tools/I40KG
-
Notifications
You must be signed in to change notification settings - Fork 0
/
frameworks.ttl
7887 lines (6918 loc) · 525 KB
/
frameworks.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
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
@prefix cc: <http://creativecommons.org/ns#> .
@prefix oa: <https://www.w3.org/ns/oa> .
@prefix dbo: <http://dbpedia.org/ontology/> .
@prefix dbr: <http://dbpedia.org/resource/> .
@prefix deo: <http://purl.org/spar/deo/> .
@prefix dul: <http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#> .
@prefix geo: <http://www.geonames.org/ontology#> .
@prefix om2: <http://www.ontology-of-units-of-measure.org/resource/om-2/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix sto: <https://w3id.org/i40/sto#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix doap: <http://usefulinc.com/ns/doap#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix lang: <http://lexvo.org/id/iso639-3/> .
@prefix muto: <http://purl.org/muto/core#> .
@prefix obda: <https://w3id.org/obda/vocabulary#> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix terms: <http://purl.org/dc/terms/> .
@prefix schema: <http://schema.org/> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix void: <http://www.w3.org/TR/void/> .
@prefix sto_iot: <https://w3id.org/i40/sto/iot#> .
sto_iot:frameworks rdf:type owl:Ontology ;
owl:versionIRI <https://w3id.org/i40/sto/iot/0.3/frameworks/> ;
sto:hasWikipediaArticle <https://en.wikipedia.org/wiki/Internet_of_things> ;
dcterms:title "Industrial IoT Architecture Ontology"@en ;
sto:hasOfficialResource <https://webstore.iec.ch/publication/153> ;
vann:preferredNamespacePrefix "sto_iot"^^xsd:string ;
dcterms:creator sto:sebastian ;
sto:hasDBpediaResource <http://dbpedia.org/page/Internet_of_things> ;
rdfs:comment "An ontology to describe the landscape of IIoT, Industry 4.0 and Smart Manufacturing"@en ;
dcterms:creator sto:Priyanka ;
dcterms:modified "2019-06-09"^^xsd:date ;
dcterms:modified "2019-07-21"^^xsd:date ;
dcterms:modified "2019-12-04"^^xsd:date ;
owl:versionInfo "0.3"^^xsd:double ;
rdfs:comment "The Internet of things (IoT) is the network of devices such as vehicles, and home appliances that contain electronics, software, sensors, actuators, and connectivity which allows these things to connect, interact and exchange data."@en ;
dcterms:rights "This work is distributed under a Creative Commons Attribution License (http://creativecommons.org/licenses/by/3.0/)."@en ;
dcterms:license <https://creativecommons.org/licenses/by-nc/3.0/legalcode> ;
dcterms:publisher <http://de.dbpedia.org/resource/Fraunhofer-Gesellschaft> ;
doap:repository <https://github.com/i40-Tools/StandardsOntology> ;
dcterms:created "2019-06-09"^^xsd:date ;
void:sparqlEndpoint <https://dydra.com/mtasnim/stoviz/sparql>;
void:dataDump <https://dydra.com/mtasnim/stoviz.ttl>;
owl:imports <concerns.ttl> .
#################################################################
# Annotation properties
#################################################################
### https://www.w3.org/ns/oahasBody
oa:hasBody rdf:type owl:AnnotationProperty .
### https://www.w3.org/ns/oahasEndSelector
oa:hasEndSelector rdf:type owl:AnnotationProperty .
### https://www.w3.org/ns/oahasSelector
oa:hasSelector rdf:type owl:AnnotationProperty .
### https://www.w3.org/ns/oahasSource
oa:hasSource rdf:type owl:AnnotationProperty .
### https://www.w3.org/ns/oahasStartSelector
oa:hasStartSelector rdf:type owl:AnnotationProperty .
### https://www.w3.org/ns/oahasTarget
oa:hasTarget rdf:type owl:AnnotationProperty .
#################################################################
# Object Properties
#################################################################
### https://w3id.org/i40/sto_iot#frames
sto_iot:frames rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf dul:associatedWith ;
rdfs:domain sto:StandardClassification ;
rdfs:range sto_iot:Concern ;
rdfs:comment "A relation specifying that a vewpoint regards a Concern."@en ;
rdfs:label "frames"@en ;
sto:hasOfficialResource <http://www.iso-architecture.org/42010/> .
### https://w3id.org/i40/sto#supports
sto_iot:supports rdf:type owl:ObjectProperty ;
rdfs:domain sto_iot:Concern ;
rdfs:range sto_iot:Concern ;
rdfs:comment "A relation between two different concerns where dealing with the subject Concern supports in achieving the object concern"@en ;
rdfs:label "supports"^^xsd:string .
#################################################################
# Classes
#################################################################
### https://w3id.org/i40/sto#IdsPerspective
sto:IdsPerspective rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Class ;
owl:oneOf ( sto:IDSRAMCertification
sto:IDSRAMGovernance
sto:IDSRAMSecurity
)
] ;
rdfs:subClassOf sto:StandardClassification ;
rdfs:label "IDS RAM Perspective"@en .
### https://w3id.org/i40/sto#AiiClassification
sto:AiiClassification rdf:type owl:Class ;
rdfs:subClassOf sto:StandardClassification ;
dcterms:creator sto:sebastian ;
rdfs:label "Alliance of Industrial Internet Architecture Classification"@en .
### https://w3id.org/i40/sto#ArchitectureDescription
sto:ArchitectureDescription rdf:type owl:Class ;
rdfs:subClassOf sto:StandardizationFramework ;
rdfs:comment """A Reference Architecture describes the structure of a system with its element types and their structures, as well as their interaction types, among each other and with their environment. Describing this, a Reference Architecture defines restrictions for an instantiation (concrete architecture). Through abstraction from individual details, a Reference Architecture is universally valid within a specific domain. Further architectures with the same functional requirements can be constructed based on the reference architecture. Along with reference architectures comes a recommendation, based on experiences from existing developments as well as from a wide acceptance and recognition by its users or per definition. [ISO/IEC42010]
Note: It is important to distinguish the Reference Architecture from a Reference Architecture Description. While the first refers to a mental model or shared concept, the second is potentially only one of several different documents describing this model."""@en ,
"ISO 42010 definition of an Architecture Description"@en ;
rdfs:label "Architecture Description"^^xsd:string ;
rdfs:seeAlso <https://www.iso.org/standard/50508.html> .
### https://w3id.org/i40/sto#BdvaConcern
sto:BdvaConcern rdf:type owl:Class ;
rdfs:subClassOf sto:StandardClassification .
### https://w3id.org/i40/sto#BusinessCycleSCM
sto:BusinessCycleSCM rdf:type owl:Class ;
rdfs:subClassOf sto:StandardClassification ;
rdfs:comment "Suply Chain Management Business Cycle."@en ;
rdfs:isDefinedBy <http://nvlpubs.nist.gov/nistpubs/ir/2016/NIST.IR.8107.pdf> ;
rdfs:label "Business Cycle SCM"@en ;
rdfs:seeAlso <https://en.wikipedia.org/wiki/Supply_chain_management> .
### https://w3id.org/i40/sto#DataSharingInitiative
sto:DataSharingInitiative rdf:type owl:Class ;
rdfs:subClassOf foaf:Organization .
### https://w3id.org/i40/sto#EdgecrossLayer
sto:EdgecrossLayer rdf:type owl:Class ;
rdfs:subClassOf sto:StandardClassification ,
[ rdf:type owl:Restriction ;
owl:onProperty sto:isDescribedin ;
owl:hasValue sto:EdgecrossArchitecture
] ;
rdfs:label "Edgecross Layer"@en .
### https://w3id.org/i40/sto#FiwareChapter
sto:FiwareChapter rdf:type owl:Class ;
dcterms:creator sto:sebastian ;
rdfs:subClassOf sto:StandardClassification ;
rdfs:comment "Following is a description of the Reference Architecture linked to the different chapters of FIWARE. A description of FIWARE Generic Enablers (GEs) being supported in each chapter is provided, including the high-level description of the APIs that each FIWARE Generic Enabler (GE) exposes to application developers or it uses to connect to another FIWARE GEs."@en ;
rdfs:label "Fiware Chapter"@en .
### https://w3id.org/i40/sto#IDSRAMLayer
sto:IDSRAMLayer rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Class ;
owl:oneOf ( sto:IDSRAMBusinessLayer
sto:IDSRAMFunctionalLayer
sto:IDSRAMInformationLayer
sto:IDSRAMProcessLayer
sto:IDSRAMSystemLayer
)
] ;
rdfs:subClassOf sto:StandardClassification ;
dcterms:creator sto:sebastian ;
rdfs:label "IDS RAM Layer"@en .
### https://w3id.org/i40/sto#IIRACrosscuttingFunction
sto:IIRACrosscuttingFunction rdf:type owl:Class ;
rdfs:subClassOf sto:StandardClassification ,
[ rdf:type owl:Restriction ;
owl:onProperty dul:isPartOf ;
owl:hasValue sto:IIRAFunctionalViewpoint
] .
### https://w3id.org/i40/sto#IIRAFunctionalDomain
sto:IIRAFunctionalDomain rdf:type owl:Class ;
dcterms:creator sto:sebastian ;
rdfs:subClassOf sto:StandardClassification ,
[ rdf:type owl:Restriction ;
owl:onProperty dul:isPartOf ;
owl:hasValue sto:IIRAFunctionalViewpoint
] ,
[ rdf:type owl:Restriction ;
owl:onProperty sto:isDescribedin ;
owl:hasValue sto:IIRA
] ;
rdfs:label "IIRA Functional Domain"@en .
### https://w3id.org/i40/sto#IIRASystemCharacteristics
sto:IIRASystemCharacteristics rdf:type owl:Class ;
rdfs:comment "Class of all System Characteristics as defined by the IIRA."@en ;
rdfs:subClassOf sto:StandardClassification ,
[ rdf:type owl:Restriction ;
owl:onProperty dul:isPartOf ;
owl:hasValue sto:IIRAFunctionalViewpoint
] ,
[ rdf:type owl:Restriction ;
owl:onProperty sto:isDescribedin ;
owl:hasValue sto:IIRA
] .
### https://w3id.org/i40/sto#IIoTConsortium
sto:IIoTConsortium rdf:type owl:Class ;
rdfs:subClassOf foaf:Organization .
### https://w3id.org/i40/sto#IdsPerspective
sto:IdsPerspective rdf:type owl:Class ;
rdfs:subClassOf sto:StandardClassification .
### https://w3id.org/i40/sto#IicfConnectivityLayer
sto:IicfConnectivityLayer rdf:type owl:Class ;
rdfs:subClassOf sto:StandardClassification ,
[ rdf:type owl:Restriction ;
owl:onProperty dul:isPartOf ;
owl:hasValue sto:IIRAConnectivity
] .
### https://w3id.org/i40/sto#IotaPerspective
sto:IotaPerspective rdf:type owl:Class ;
rdfs:subClassOf sto:StandardClassification .
### https://w3id.org/i40/sto#IviLayer
sto:IviLayer rdf:type owl:Class ;
rdfs:subClassOf sto:StandardClassification ;
dcterms:creator sto:sebastian ;
rdfs:comment "A IVI Layer describes one of three layers of smart manufactoring as proposed by the Industrial Value Chain Initiative (IVI)."@en ;
rdfs:isDefinedBy <https://iv-i.org/wp/wp-content/uploads/2018/04/IVRA-Next_en.pdf> ;
rdfs:label "IVI Layer"@en .
### https://w3id.org/i40/sto#Layer
sto:Layer rdf:type owl:Class ;
rdfs:comment "Describes the layers of the standardization frameworks. In some cases, the layers are connected to dimensions of the frameworks. "@en ;
rdfs:label "Layer"@en .
### https://w3id.org/i40/sto#NGSI_Context_Information_Management_API
sto:NGSI_Context_Information_Management_API rdf:type owl:Class ;
rdfs:subClassOf sto:StandardClassification ,
[ rdf:type owl:Restriction ;
owl:onProperty sto:isDescribedin ;
owl:hasValue sto:FIWARE
] ;
dcterms:creator sto:sebastian ;
dcterms:title "NGSI-LD"^^xsd:string ;
rdfs:comment "The section of the FIWARE specification about the NGSI API."@en ;
rdfs:label "NGSI Context Information Management API"@en .
### https://w3id.org/i40/sto#OcfBlock
sto:OcfBlock rdf:type owl:Class ;
rdfs:subClassOf sto:StandardClassification ;
dcterms:creator sto:sebastian ;
rdfs:label "OCF Framework Block"^^xsd:string .
### https://w3id.org/i40/sto#Stakeholder
sto:Stakeholder rdf:type owl:Class ;
rdfs:subClassOf foaf:Person ;
rdfs:comment "A stakeholder is an individual, team, organization or classes thereof,having an interest in a concern and by extension an interest in the viewpoint and system."@en ;
rdfs:label "Layer"@en ;
rdfs:seeAlso "IIC:PUB:G1:V1.80:20170131"^^xsd:string ;
skos:note "Publications referred: 'IIC:PUB:G1:V1.80:20170131' '4.1 STAKEHOLDERS' 'Page 20' "@en ;
sto:hasWikipediaArticle <https://en.wikipedia.org/wiki/Stakeholder> .
### https://w3id.org/i40/sto#Viewpoint
sto:Viewpoint rdf:type owl:Class ;
rdfs:subClassOf sto:StandardClassification .
### https://w3id.org/i40/sto#xRoadSection
sto:xRoadSection rdf:type owl:Class ;
rdfs:subClassOf sto:StandardClassification ,
[ rdf:type owl:Restriction ;
owl:onProperty sto:isDescribedin ;
owl:hasValue sto:xTee
] ;
rdfs:comment "Class of all parts of the xRoad specification."@en ;
dcterms:creator sto:sebastian ;
rdfs:label "x-road Section"@en .
### https://www.w3.org/ns/oaAnnotation
oa:Annotation rdf:type owl:Class .
### https://www.w3.org/ns/oaRangeSelector
oa:RangeSelector rdf:type owl:Class .
### https://www.w3.org/ns/oaSpecificResource
oa:SpecificResource rdf:type owl:Class .
### https://www.w3.org/ns/oaXPathSelector
oa:XPathSelector rdf:type owl:Class .
#################################################################
# Individuals
#################################################################
### http://purl.oclc.org/NET/mvco.owl#EndUser
<http://purl.oclc.org/NET/mvco.owl#EndUser> rdf:type owl:NamedIndividual ,
sto_iot:StakeholderGroup .
### https://w3id.org/i40/sto#AMQP
sto:AMQP rdf:type owl:NamedIndividual ,
foaf:Document ,
sto:Publication ,
sto:TechnicalSpecification ;
dcterms:creator sto:sebastian ;
rdfs:comment "AMQP (Advanced Message Queuing Protocol): An open standard application layer protocol for message-oriented middleware. The defining features of AMQP are message orientation, queuing, routing (including point-to-point and publish-and-subscribe), reliability and security. (source: https://www.postscapes.com/internet-of-things-protocols/)"@en ;
rdfs:label "AMQP"@en ;
sto:hasOfficialResource <http://www.amqp.org/> .
### https://w3id.org/i40/sto#AdministrationShell
sto:AdministrationShell rdf:type owl:NamedIndividual ,
sto:StandardizationFramework ;
dul:associatedWith sto:IdsTrustedConnector ;
sto:alignsWith sto:IdsTrustedConnector ;
sto_iot:frames sto:Lifecycle_Status ,
sto:Availability ,
sto:EnergyEfficiency,
sto:BusinessContext ,
sto:Communication ,
sto:DataAccess ,
sto:DynamicAdjustability ,
sto:EndpointInvocation ,
sto:Identification ,
sto:IdentityManagement ,
sto:IntegrityProtection ,
sto:Interoperability ,
sto:SecureCommunication ,
sto:Security ,
sto:SemanticInteroperability ,
sto:ServiceChoreography ,
sto:ServiceComposition ,
sto:ServiceOrchestration ,
sto:SyntacticInteroperability ,
sto:ThingDescription ,
sto:ThingRepresentation ,
sto:Trustworthiness ;
sto:hasPublisher sto:PlatformIndustry40 ;
rdfs:comment "Represents the classifications of the standards according to the submodels of the administration shell."@en ;
rdfs:label "Administration Shell"@en .
### https://w3id.org/i40/sto#Aeron
sto:Aeron rdf:type owl:NamedIndividual ,
foaf:Document ,
sto:Publication ,
sto:TechnicalSpecification ;
dcterms:creator sto:sebastian ;
rdfs:comment "Aeron - Efficient reliable UDP unicast, UDP multicast, and IPC message transport. (source: https://www.postscapes.com/internet-of-things-protocols/)"@en ;
rdfs:label "Aeron"@en ;
sto:hasOfficialResource <https://github.com/real-logic/Aeron> .
### https://w3id.org/i40/sto#AiiData
sto:AiiData rdf:type owl:NamedIndividual ,
sto:AiiClassification ;
sto:alignsWith sto:IDSRAMInformationLayer ,
sto:InformationDomain ;
sto_iot:frames sto:DataAnalytics ,
sto:DataProcessing ,
sto:DataCollection ,
sto:EdgeComputing ,
sto:SemanticInteroperability ;
sto:isDescribedin sto:IndustrialInternetArchitecture ;
rdfs:label "AII Data Classification"@en .
### https://w3id.org/i40/sto#AiiDataAnno
sto:AiiDataAnno rdf:type owl:NamedIndividual ,
oa:Annotation ;
oa:hasBody sto:AiiData ;
oa:hasTarget [ rdf:type oa:SpecificResource ;
oa:hasSelector [ rdf:type oa:RangeSelector ;
oa:hasEndSelector [ rdf:type oa:XPathSelector ;
rdf:value "Page 32"
] ;
oa:hasStartSelector [ rdf:type oa:XPathSelector ;
rdf:value "Page 25"
]
] ;
oa:hasSource sto:Industrial_Internet_Architecture_Version_1
] .
### https://w3id.org/i40/sto#AiiNetwork
sto:AiiNetwork rdf:type owl:NamedIndividual ,
sto:AiiClassification ;
sto:alignsWith sto:IDSRAMSystemLayer ,
sto:IIRAConnectivity ,
sto:RamiCommunicationlayer ,
sto:RamiIntegrationLayer ;
sto_iot:frames sto:Communication ,
sto:Connectivity ,
sto:Identification ,
sto:SyntacticInteroperability ;
sto:isDescribedin sto:IndustrialInternetArchitecture ;
rdfs:label "AII Network Classification"@en .
### https://w3id.org/i40/sto#AiiNetworkAnno
sto:AiiNetworkAnno rdf:type owl:NamedIndividual ,
oa:Annotation ;
oa:hasBody sto:AiiNetwork ;
oa:hasTarget [ rdf:type oa:SpecificResource ;
dcterms:format "pdf"^^xsd:string ;
oa:hasSelector [ rdf:type oa:RangeSelector ;
oa:hasEndSelector [ rdf:type oa:XPathSelector ;
rdf:value "Page 25"
] ;
oa:hasStartSelector [ rdf:type oa:XPathSelector ;
rdf:value "Page 10"
]
] ;
oa:hasSource sto:Industrial_Internet_Architecture_Version_1
] .
### https://w3id.org/i40/sto#AiiSecurity
sto:AiiSecurity rdf:type owl:NamedIndividual ,
sto:AiiClassification ;
sto:alignsWith sto:IDSRAMSecurity ,
sto:IIRASecurity ;
sto_iot:frames sto:DataAccess ,
sto:Security ;
sto:isDescribedin sto:IndustrialInternetArchitecture ;
rdfs:label "AII Security Classification"@en .
### https://w3id.org/i40/sto#AiiSecurityAnno
sto:AiiSecurityAnno rdf:type owl:NamedIndividual ,
oa:Annotation ;
oa:hasBody sto:AiiSecurity ;
oa:hasTarget [ rdf:type oa:SpecificResource ;
dcterms:format "pdf"^^xsd:string ;
oa:hasSelector [ rdf:type oa:RangeSelector ;
oa:hasEndSelector [ rdf:type oa:XPathSelector ;
rdf:value "Page 37"
] ;
oa:hasStartSelector [ rdf:type oa:XPathSelector ;
rdf:value "Page 32"
]
] ;
oa:hasSource sto:Industrial_Internet_Architecture_Version_1
] .
### https://w3id.org/i40/sto#AllSeenAlliance
sto:AllSeenAlliance rdf:type owl:NamedIndividual ,
foaf:Organization ,
sto:IIoTConsortium ;
dcterms:creator sto:sebastian ;
rdfs:comment "The AllSeen Alliance is a nonprofit consortium dedicated to enabling and driving the widespread adoption of products, systems and services that support the Internet of Everything with an open, universal development framework supported by a vibrant ecosystem and thriving technical community' (source: https://www.postscapes.com/internet-of-things-protocols/)"@en ;
rdfs:label "AllSeen Alliance"@en ;
sto:hasOfficialResource <https://allseenalliance.org/> .
### https://w3id.org/i40/sto#AllianceIndustrieDuFutur
sto:AllianceIndustrieDuFutur rdf:type owl:NamedIndividual ,
sto:IIoTConsortium ;
sto:hasHeadquaterIn sto:France ;
rdfs:label "Alliance Industrie du Futur"@en ;
sto:hasOfficialResource <http://www.industrie-dufutur.org/> .
### https://w3id.org/i40/sto#AllianceOfIndustrialInternet
sto:AllianceOfIndustrialInternet rdf:type owl:NamedIndividual ,
sto:IIoTConsortium ;
sto:hasHeadquaterIn dbr:China ;
rdfs:label "Alliance of Industrial Internet"@en ;
skos:altLabel "工业互联网产业联盟"@cn ;
sto:seeAlso <http://www.aii-alliance.org/> .
### https://w3id.org/i40/sto#Alljoyn
sto:Alljoyn rdf:type owl:NamedIndividual ,
foaf:Document ,
sto:Publication ,
sto:TechnicalSpecification ;
dcterms:creator sto:sebastian ;
rdfs:comment "Alljoyn - An open source software framework that makes it easy for devices and apps to discover and communicate with each other. (source: https://www.postscapes.com/internet-of-things-protocols/)"@en ;
rdfs:label "Alljoyn"@en ;
sto:hasOfficialResource <https://allseenalliance.org/framework> .
### https://w3id.org/i40/sto#AnnoActuation
sto:AnnoActuation rdf:type owl:NamedIndividual ,
oa:Annotation ;
oa:hasBody sto:Actuation ;
oa:hasTarget [ rdf:type oa:SpecificResource ;
dcterms:format "pdf"^^xsd:string ;
oa:hasSelector [ rdf:type oa:RangeSelector ;
oa:hasEndSelector [ rdf:type oa:XPathSelector ;
rdf:value "Page 29"
] ;
oa:hasStartSelector [ rdf:type oa:XPathSelector ;
rdf:value "Page 28"
]
] ;
oa:hasSource sto:IIC_PUB_G1_V1_80_20170131
] ,
[ rdf:type oa:SpecificResource ;
dcterms:format "pdf"^^xsd:string ;
oa:hasSelector [ rdf:type oa:RangeSelector ;
oa:hasEndSelector [ rdf:type oa:XPathSelector ;
rdf:value "Page 29"
] ;
oa:hasStartSelector [ rdf:type oa:XPathSelector ;
rdf:value "Page 28"
]
] ;
oa:hasSource sto:IIC_PUB_G1_V1_80_20170131
] .
### https://w3id.org/i40/sto#AnnoAiiClassification
sto:AnnoAiiClassification rdf:type owl:NamedIndividual ,
oa:Annotation ;
oa:hasBody sto:AiiClassification ;
oa:hasTarget [ rdf:type oa:SpecificResource ;
dcterms:format "pdf"^^xsd:string ;
oa:hasSource sto:Industrial_Internet_Architecture_Version_1
] ,
[ rdf:type oa:SpecificResource ;
dcterms:format "pdf"^^xsd:string ;
oa:hasSource sto:Industrial_Internet_Architecture_Version_1
] .
### https://w3id.org/i40/sto#ArrowheadFramework
sto:ArrowheadFramework rdf:type owl:NamedIndividual ,
sto:IIoTConsortium ,
sto:StandardizationFramework ;
sto:hasPublisher sto:ArrowheadProject ;
rdfs:label "Arrowhead Framework"^^xsd:string ,
"Arrowhead Framework"^^xsd:string ;
sto:seeAlso <http://www.arrowhead.eu/> .
### https://w3id.org/i40/sto#ArrowheadProject
sto:ArrowheadProject rdf:type owl:NamedIndividual ,
foaf:Organization ;
rdfs:label "Arrowhead Project"^^xsd:string ;
sto:seeAlso <http://www.arrowhead.eu/> .
### https://w3id.org/i40/sto#BDVA
sto:BDVA rdf:type owl:NamedIndividual ,
foaf:Organization ;
rdfs:label "Big Data Value Association"^^xsd:string ;
skos:altLabel "BDVA"^^xsd:string .
### https://w3id.org/i40/sto#BdvaCloudAndHighPerformanceComputing
sto:BdvaCloudAndHighPerformanceComputing rdf:type owl:NamedIndividual ,
sto:BdvaConcern ,
sto:StandardClassification ;
dcterms:creator sto:sebastian ;
dul:associatedWith sto:IIRAApplicationDomain ;
sto:alignsWith sto:IIRAApplicationDomain ;
sto_iot:frames sto:AI ,
sto:BigDataApplications ,
sto:CloudComputing ,
sto:DataAnalytics ,
sto:DataProcessing ,
sto:DataPublishing ,
sto:MachineLearning ;
sto:isDescribedin sto:BdvaSira ;
rdfs:comment "The Cloud and High Performance Computing (HPC): Effective Big Data processing and data management might imply the effective usage of Cloud and High Performance Computing infrastructures. This area is separately elaborated further in collaboration with the Cloud and High Performance Computing (ETP4HPC) communities."@en ;
rdfs:label "BDVA Cloud and High Performance Computing"@en .
### https://w3id.org/i40/sto#BdvaCloudAndHighPerformanceComputingAnno
sto:BdvaCloudAndHighPerformanceComputingAnno rdf:type owl:NamedIndividual ,
oa:Annotation ;
oa:hasBody sto:BdvaCloudAndHighPerformanceComputing ;
oa:hasTarget [ rdf:type oa:SpecificResource ;
oa:hasSelector [ rdf:type oa:RangeSelector ;
oa:hasEndSelector [ rdf:type oa:XPathSelector ;
rdf:value "Page 40"
] ;
oa:hasStartSelector [ rdf:type oa:XPathSelector ;
rdf:value "Page 37"
]
] ;
oa:hasSource sto:European_BDV_SRIA_version_4_0
] ,
[ rdf:type oa:SpecificResource ;
oa:hasSelector [ rdf:type oa:RangeSelector ;
oa:hasEndSelector [ rdf:type oa:XPathSelector ;
rdf:value "Page 40"
] ;
oa:hasStartSelector [ rdf:type oa:XPathSelector ;
rdf:value "Page 37"
]
] ;
oa:hasSource sto:European_BDV_SRIA_version_4_0
] .
### https://w3id.org/i40/sto#BdvaCommunicationConnectivity
sto:BdvaCommunicationConnectivity rdf:type owl:NamedIndividual ,
sto:BdvaConcern ,
sto:StandardClassification ;
dcterms:creator sto:sebastian ;
sto_iot:frames sto:Communication ,
sto:DataAccess ,
sto:DataAnalytics ,
sto:Interoperability ,
sto:QualityOfService ,
sto:SemanticInteroperability ,
sto:ServiceDescription ;
sto:isDescribedin sto:BdvaSira ;
rdfs:comment "Effective communication and connectivity mechanisms are necessary in providing support for Big Data. This area is separately further elaborated, along with various communication communities, such as the 5G community."@en ;
rdfs:label "BDVA Communication and Connectivity"@en .
### https://w3id.org/i40/sto#BdvaCommunicationConnectivityAnno
sto:BdvaCommunicationConnectivityAnno rdf:type owl:NamedIndividual ,
oa:Annotation ;
oa:hasBody sto:BdvaCommunicationConnectivity ;
oa:hasTarget [ rdf:type oa:SpecificResource ;
oa:hasSelector [ rdf:type oa:RangeSelector ;
oa:hasEndSelector [ rdf:type oa:XPathSelector ;
rdf:value "Page 40"
] ;
oa:hasStartSelector [ rdf:type oa:XPathSelector ;
rdf:value "Page 37"
]
] ;
oa:hasSource sto:European_BDV_SRIA_version_4_0
] ,
[ rdf:type oa:SpecificResource ;
oa:hasSelector [ rdf:type oa:RangeSelector ;
oa:hasEndSelector [ rdf:type oa:XPathSelector ;
rdf:value "Page 40"
] ;
oa:hasStartSelector [ rdf:type oa:XPathSelector ;
rdf:value "Page 37"
]
] ;
oa:hasSource sto:European_BDV_SRIA_version_4_0
] .
### https://w3id.org/i40/sto#BdvaConcern
sto:BdvaConcern rdf:type owl:NamedIndividual ,
owl:class ;
dcterms:creator sto:sebastian .
### https://w3id.org/i40/sto#BdvaConcernAnno
sto:BdvaConcernAnno rdf:type owl:NamedIndividual ,
oa:Annotation ;
oa:hasBody sto:BdvaConcern ;
oa:hasTarget [ rdf:type oa:SpecificResource ;
oa:hasSelector [ rdf:type oa:RangeSelector ;
oa:hasEndSelector [ rdf:type oa:XPathSelector ;
rdf:value "Page 40"
] ;
oa:hasStartSelector [ rdf:type oa:XPathSelector ;
rdf:value "Page 37"
]
] ;
oa:hasSource sto:European_BDV_SRIA_version_4_0
] ,
[ rdf:type oa:SpecificResource ;
oa:hasSelector [ rdf:type oa:RangeSelector ;
oa:hasEndSelector [ rdf:type oa:XPathSelector ;
rdf:value "Page 40"
] ;
oa:hasStartSelector [ rdf:type oa:XPathSelector ;
rdf:value "Page 38"
]
] ;
oa:hasSource sto:European_BDV_SRIA_version_4_0
] ,
[ rdf:type oa:SpecificResource ;
oa:hasSelector [ rdf:type oa:RangeSelector ;
oa:hasEndSelector [ rdf:type oa:XPathSelector ;
rdf:value "Page 40"
] ;
oa:hasStartSelector [ rdf:type oa:XPathSelector ;
rdf:value "Page 37"
]
] ;
oa:hasSource sto:European_BDV_SRIA_version_4_0
] .
### https://w3id.org/i40/sto#BdvaCyberSecurityTrust
sto:BdvaCyberSecurityTrust rdf:type owl:NamedIndividual ,
sto:BdvaConcern ,
sto:StandardClassification ;
dcterms:creator sto:sebastian ;
dul:associatedWith sto:Security ,
sto:IDSRAMSecurity ,
sto:IIRASecurityFramework ;
sto:alignsWith sto:Security ,
sto:IDSRAMSecurity ,
sto:IIRASecurityFramework ;
sto_iot:frames sto:Communication ,
sto:DataSovereignty ,
sto:IntegrityProtection ,
sto:Privacy ,
sto:SecureCommunication ,
sto:Security ,
sto:Trustworthiness ;
sto:isDescribedin sto:BdvaSira ;
rdfs:comment """Big Data often need support to maintain security and trust beyond privacy and anonymisation. The aspect of trust frequently has links to trust
mechanisms such as blockchain technologies, smart contracts and various forms of encryption."""@en ;
rdfs:label "BDVA Cybersecurity and Trust"@en .
### https://w3id.org/i40/sto#BdvaCyberSecurityTrustAnno
sto:BdvaCyberSecurityTrustAnno rdf:type owl:NamedIndividual ,
oa:Annotation ;
oa:hasBody sto:BdvaCyberSecurityTrust ;
oa:hasTarget [ rdf:type oa:SpecificResource ;
oa:hasSelector [ rdf:type oa:RangeSelector ;
oa:hasEndSelector [ rdf:type oa:XPathSelector ;
rdf:value "Page 40"
] ;
oa:hasStartSelector [ rdf:type oa:XPathSelector ;
rdf:value "Page 37"
]
] ;
oa:hasSource sto:European_BDV_SRIA_version_4_0
] ,
[ rdf:type oa:SpecificResource ;
oa:hasSelector [ rdf:type oa:RangeSelector ;
oa:hasEndSelector [ rdf:type oa:XPathSelector ;
rdf:value "Page 40"
] ;
oa:hasStartSelector [ rdf:type oa:XPathSelector ;
rdf:value "Page 37"
]
] ;
oa:hasSource sto:European_BDV_SRIA_version_4_0
] .
### https://w3id.org/i40/sto#BdvaDataAnalytics
sto:BdvaDataAnalytics rdf:type owl:NamedIndividual ,
sto:BdvaConcern ,
sto:StandardClassification ;
dcterms:creator sto:sebastian ;
dul:associatedWith sto:IDSRAMProcessLayer ,
sto:InformationDomain ,
sto:RamiFunctionalLayer ,
sto:RamiInformationLayer ;
sto:alignsWith sto:IDSRAMProcessLayer ,
sto:InformationDomain ,
sto:RamiFunctionalLayer ,
sto:RamiInformationLayer ;
sto_iot:frames sto:AI ,
sto:DataAnalytics ,
sto:DataProcessing ,
sto:MachineLearning ,
sto:StreamProcessing ,
sto:Trustworthiness ;
sto:isDescribedin sto:BdvaSira ;
rdfs:comment "Data analytics to improve data understanding, deep learning and the meaningfulness of data."@en ;
rdfs:label "BDVA Data Analytics"@en .
### https://w3id.org/i40/sto#BdvaDataAnalyticsAnno
sto:BdvaDataAnalyticsAnno rdf:type owl:NamedIndividual ,
oa:Annotation ;
oa:hasBody sto:BdvaDataAnalytics ;
oa:hasTarget [ rdf:type oa:SpecificResource ;
oa:hasSelector [ rdf:type oa:RangeSelector ;
oa:hasEndSelector [ rdf:type oa:XPathSelector ;
rdf:value "Page 40"
] ;
oa:hasStartSelector [ rdf:type oa:XPathSelector ;
rdf:value "Page 37"
]
] ;
oa:hasSource sto:European_BDV_SRIA_version_4_0
] ,
[ rdf:type oa:SpecificResource ;
oa:hasSelector [ rdf:type oa:RangeSelector ;
oa:hasEndSelector [ rdf:type oa:XPathSelector ;
rdf:value "Page 40"
] ;
oa:hasStartSelector [ rdf:type oa:XPathSelector ;
rdf:value "Page 37"
]
] ;
oa:hasSource sto:European_BDV_SRIA_version_4_0
] .
### https://w3id.org/i40/sto#BdvaDataManagement
sto:BdvaDataManagement rdf:type owl:NamedIndividual ,
sto:BdvaConcern ,
sto:StandardClassification ;
dcterms:creator sto:sebastian ;
dul:associatedWith sto:IDSRAMInformationLayer ,
sto:IDSRAMProcessLayer ,
sto:RamiInformationLayer ;
sto:alignsWith sto:IDSRAMInformationLayer ,
sto:IDSRAMProcessLayer ,
sto:RamiInformationLayer ;
sto_iot:frames sto:BigDataApplications ,
sto:DataQuality ,
sto:Interoperability ,
sto:ProvenanceTracking ,
sto:Security ,
sto:SemanticInteroperability ,
sto:SyntacticInteroperability ,
sto:Trustworthiness ;
sto:isDescribedin sto:BdvaSira ;
rdfs:comment "Principles and techniques for data management"@en ;
rdfs:label "BDVA Data Management"@en .
### https://w3id.org/i40/sto#BdvaDataManagementAnno
sto:BdvaDataManagementAnno rdf:type owl:NamedIndividual ,
oa:Annotation ;
oa:hasBody sto:BdvaDataManagement ;
oa:hasTarget [ rdf:type oa:SpecificResource ;
oa:hasSelector [ rdf:type oa:RangeSelector ;
oa:hasEndSelector [ rdf:type oa:XPathSelector ;
rdf:value "Page 40"
] ;
oa:hasStartSelector [ rdf:type oa:XPathSelector ;
rdf:value "Page 37"
]
] ;
oa:hasSource sto:European_BDV_SRIA_version_4_0
] ,
[ rdf:type oa:SpecificResource ;
oa:hasSelector [ rdf:type oa:RangeSelector ;
oa:hasEndSelector [ rdf:type oa:XPathSelector ;
rdf:value "Page 40"
] ;
oa:hasStartSelector [ rdf:type oa:XPathSelector ;
rdf:value "Page 37"
]
] ;
oa:hasSource sto:European_BDV_SRIA_version_4_0
] .
### https://w3id.org/i40/sto#BdvaDataProcessingArchitectures
sto:BdvaDataProcessingArchitectures rdf:type owl:NamedIndividual ,
sto:BdvaConcern ,
sto:StandardClassification ;
dcterms:creator sto:sebastian ;
dul:associatedWith sto:IDSRAMProcessLayer ,
sto:IIRAConnectivity ,
sto:InformationDomain ;
sto:alignsWith sto:IDSRAMProcessLayer ,
sto:IIRAConnectivity ,
sto:InformationDomain ;
sto_iot:frames sto:BigDataApplications ,
sto:Communication ,
sto:DataAtRest ,
sto:DataInMotion ,
sto:DataProcessing ,
sto:Scalability ,
sto:StreamProcessing ;
sto:isDescribedin sto:BdvaSira ;
rdfs:comment "Optimised and scalable architectures for analytics of both data-at-rest and data-in-motion, with low latency delivering real-time analytics."@en ;
rdfs:label "BDVA Data Processing Architectures"@en .
### https://w3id.org/i40/sto#BdvaDataProcessingArchitecturesAnno
sto:BdvaDataProcessingArchitecturesAnno rdf:type owl:NamedIndividual ,
oa:Annotation ;
oa:hasBody sto:BdvaDataProcessingArchitectures ;
oa:hasTarget [ rdf:type oa:SpecificResource ;
oa:hasSelector [ rdf:type oa:RangeSelector ;
oa:hasEndSelector [ rdf:type oa:XPathSelector ;
rdf:value "Page 40"
] ;
oa:hasStartSelector [ rdf:type oa:XPathSelector ;
rdf:value "Page 37"
]
] ;
oa:hasSource sto:European_BDV_SRIA_version_4_0
] ,
[ rdf:type oa:SpecificResource ;
oa:hasSelector [ rdf:type oa:RangeSelector ;
oa:hasEndSelector [ rdf:type oa:XPathSelector ;
rdf:value "Page 40"
] ;
oa:hasStartSelector [ rdf:type oa:XPathSelector ;
rdf:value "Page 37"
]
] ;
oa:hasSource sto:European_BDV_SRIA_version_4_0
] .
### https://w3id.org/i40/sto#BdvaDataProtection
sto:BdvaDataProtection rdf:type owl:NamedIndividual ,
sto:BdvaConcern ,
sto:StandardClassification ;
dcterms:creator sto:sebastian ;
dul:associatedWith sto:IDSRAMSecurity ,
sto:IIRASecurityFramework ;
sto:alignsWith sto:IDSRAMSecurity ,
sto:IIRASecurityFramework ;
sto_iot:frames sto:DataProtection ,
sto:DataSovereignty ,
sto:Privacy ,
sto:Trustworthiness ;
sto:isDescribedin sto:BdvaSira ;
rdfs:comment "Privacy and anonymisation mechanisms to facilitate data protection. This is shown related to data management and processing as there is a strong link here, but it can also be associated with the area of cybersecurity."@en ;
rdfs:label "BDVA Data Protection"@en .
### https://w3id.org/i40/sto#BdvaDataProtectionAnno
sto:BdvaDataProtectionAnno rdf:type owl:NamedIndividual ,
oa:Annotation ;
oa:hasBody sto:BdvaDataProtection ;
oa:hasTarget [ rdf:type oa:SpecificResource ;
oa:hasSelector [ rdf:type oa:RangeSelector ;
oa:hasEndSelector [ rdf:type oa:XPathSelector ;
rdf:value "Page 40"
] ;
oa:hasStartSelector [ rdf:type oa:XPathSelector ;
rdf:value "Page 37"
]
] ;
oa:hasSource sto:European_BDV_SRIA_version_4_0
] ,
[ rdf:type oa:SpecificResource ;
oa:hasSelector [ rdf:type oa:RangeSelector ;
oa:hasEndSelector [ rdf:type oa:XPathSelector ;
rdf:value "Page 40"
] ;
oa:hasStartSelector [ rdf:type oa:XPathSelector ;
rdf:value "Page 37"
]
] ;