-
Notifications
You must be signed in to change notification settings - Fork 5
/
demeterAgriProfile-SHACL.ttl
5587 lines (4957 loc) · 379 KB
/
demeterAgriProfile-SHACL.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 : <https://w3id.org/cybele/> .
@prefix qudt: <http://qudt.org/schema/qudt/> .
@prefix ngsi-ld: <https://uri.etsi.org/ngsi-ld/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix saref: <https://saref.etsi.org/core/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix dim: <http://purl.oclc.org/NET/ssnx/qu/dim#> .
@prefix ssn: <http://www.w3.org/ns/ssn/> .
@prefix qb: <http://purl.org/linked-data/cube#> .
@prefix iso19109: <http://def.seegrid.csiro.au/isotc211/iso19109/2005/feature#> .
@prefix iso19108: <http://def.seegrid.csiro.au/isotc211/iso19108/2002/temporal#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix iso19103: <http://def.seegrid.csiro.au/isotc211/iso19103/2005/basic#> .
@prefix wgs84_pos: <http://www.w3.org/2003/01/geo/wgs84_pos#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix sosa: <http://www.w3.org/ns/sosa/> .
@prefix foodie: <http://foodie-cloud.com/model/foodie#> .
@prefix qu: <http://purl.oclc.org/NET/ssnx/qu/qu#> .
@prefix ssn-ext: <http://www.w3.org/ns/ssn/ext/> .
@prefix saref4agri: <https://saref.etsi.org/saref4agri/> .
@prefix iso19156_OB: <http://def.isotc211.org/iso19156/2011/Observation#> .
@prefix iso19156_SF: <http://def.isotc211.org/iso19156/2011/SamplingFeature#> .
@prefix demeterAgriCrop: <https://w3id.org/demeter/agri/agriCrop#> .
@prefix fiware-agrifood: <https://smartdatamodels.org/dataModel.Agrifood/> .
@prefix schema: <https://schema.org/> .
@prefix iso19156_GFI: <http://def.isotc211.org/iso19156/2011/GeneralFeatureInstance#> .
@prefix iso19150-2: <http://def.seegrid.csiro.au/isotc211/iso19150/-2/2012/basic#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix ecrop: <https://w3id.org/demeter/agri/ecrop/> .
@prefix fiware: <https://smartdatamodels.org/> .
@prefix act-inspire: <http://inspire.ec.europa.eu/schemas/act-core/3.0#> .
@prefix aim-core: <https://w3id.org/demeter/core> .
@prefix geo: <http://www.opengis.net/ont/geosparql#> .
@prefix sf: <http://www.opengis.net/ont/sf#> .
@prefix common: <http://portele.de/ont/inspire/baseInspire#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix demeterAgriCommon: <https://w3id.org/demeter/agri/agriCommon#> .
@prefix dcat: <http://www.w3.org/ns/dcat#> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix stat: <http://data.europa.eu/m8g/> .
@prefix cf: <http://purl.oclc.org/NET/ssnx/cf/cf-property#> .
@prefix quantity: <http://purl.oclc.org/NET/ssnx/qu/quantity#> .
@prefix afn: <http://jena.apache.org/ARQ/function#> .
@prefix fiware-weather: <https://smartdatamodels.org/dataModel.Weather/> .
@prefix af-inspire: <http://inspire.ec.europa.eu/schemas/af/3.0#> .
@prefix cf-feature: <http://purl.oclc.org/NET/ssnx/cf/cf-feature#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix iso19115-citation: <http://def.seegrid.csiro.au/isotc211/iso19115/2003/citation#> .
@prefix time: <http://www.w3.org/2006/time#> .
@prefix obo: <http://purl.obolibrary.org/obo/> .
<https://astrea.linkeddata.es/shapes#7c708841b8b6a556648a36e2070312bc>
# a sh:PropertyShape ;
a sh:NodeShape ;
sh:class qb:DimensionProperty .
<https://astrea.linkeddata.es/shapes#79f9049ac8c7b059d503662569e881fe>
a sh:PropertyShape ;
sh:minCount "1"^^xsd:integer ;
sh:nodeKind sh:IRIOrLiteral ;
sh:path af-inspire:contains .
<https://astrea.linkeddata.es/shapes#7fd858883e55601117acf9441b2384d5>
a sh:PropertyShape ;
rdfs:isDefinedBy saref: ;
rdfs:label "relates to property"@en , "A relationship between a measurement and the property it relates to" ;
sh:description "A relationship between a measurement and the property it relates to" ;
sh:equals sosa:observedProperty ;
sh:name "relates to property"@en ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:path saref:relatesToProperty .
<https://astrea.linkeddata.es/shapes#3ef793712378e097aac823894a277e63>
a sh:NodeShape ;
rdfs:isDefinedBy wgs84_pos: ;
rdfs:label "Point"@en ;
sh:description "A point, typically described using a coordinate system relative to Earth, such as WGS84." , " \nUniquely identified by lat/long/alt. i.e.\n\nspaciallyIntersects(P1, P2) :- lat(P1, LAT), long(P1, LONG), alt(P1, ALT),\n lat(P2, LAT), long(P2, LONG), alt(P2, ALT).\n\nsameThing(P1, P2) :- type(P1, Point), type(P2, Point), spaciallyIntersects(P1, P2).\n " ;
sh:name "Point"@en ;
sh:nodeKind sh:IRI ;
sh:targetClass wgs84_pos:Point .
<https://astrea.linkeddata.es/shapes#d375a363eb35ddcfe7eedf026f8dcb0b>
a sh:PropertyShape ;
rdfs:isDefinedBy <https://github.com/smart-data-models/dataModel.Weather/blob/master/weather-schema.json> ;
rdfs:label "windDirection"@en , "Direction of the wind bet" ;
sh:description "Direction of the wind bet" ;
sh:name "windDirection"@en ;
sh:nodeKind sh:Literal ;
sh:path fiware-weather:windDirection .
<https://astrea.linkeddata.es/shapes#1ea40a6c21f0c012f148b499e2aee168>
a sh:PropertyShape ;
rdfs:isDefinedBy saref4agri: ;
rdfs:label "A relation to express the death date of an animal." , "has death date" ;
sh:datatype xsd:dateTime ;
sh:description "A relation to express the death date of an animal." ;
sh:name "has death date" ;
sh:nodeKind sh:Literal ;
sh:path saref4agri:hasDeathDate ;
sh:pattern "-?([1-9][0-9]{3,}|0[0-9]{3})-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01])T(([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9](\\.[0-9]+)?|(24:00:00(\\.0+)?))(Z|(\\+|-)((0[0-9]|1[0-3]):[0-5][0-9]|14:00))?" .
<https://astrea.linkeddata.es/shapes#5df41e27a6a109010ffe856646bac71a>
a sh:NodeShape ;
rdfs:isDefinedBy <http://purl.oclc.org/NET/ssnx/qu/qu-rec20> ;
rdfs:label "Temperature" ;
sh:description "A Temperature is something that is a QuantityKind and has a unitKind property who must be a TemperatureUnit" ;
sh:name "Temperature" ;
sh:nodeKind sh:IRI ;
sh:targetClass dim:Temperature .
<https://astrea.linkeddata.es/shapes#da3e0a9d4bb6784d8864e829b517073a>
a sh:PropertyShape ;
rdfs:isDefinedBy <https://github.com/smart-data-models/dataModel.Agrifood/blob/master/AgriParcelRecord/schema.json> ;
rdfs:label "soilMoistureEC"@en , "Measured as Electrical Conductivity, EC nominally in units of Siemens per meter. Units:'siemens / m'" ;
sh:description "Measured as Electrical Conductivity, EC nominally in units of Siemens per meter. Units:'siemens / m'" ;
sh:name "soilMoistureEC"@en ;
sh:nodeKind sh:Literal ;
sh:path fiware-agrifood:soilMoistureEc .
<https://astrea.linkeddata.es/shapes#197bdfd5a002fbf13b72ea50063245b2>
a sh:NodeShape ;
rdfs:isDefinedBy saref4agri: ;
rdfs:label "Milking sensor"@en ;
sh:description "Milking sensor" ;
sh:name "Milking sensor"@en ;
sh:nodeKind sh:IRI ;
sh:targetClass saref4agri:MilkingSensor .
<https://astrea.linkeddata.es/shapes#bbde507bba5de728f49d31128c942ebe>
a sh:PropertyShape ;
rdfs:isDefinedBy <http://foodie-cloud.com/model/foodie> ;
rdfs:label "formOfTreatment" , "A Relation from Treatment to FormOfTreatmentValue codelist, e.g., manual (i.e. conducted manually by a person), applicationMachine (i.e. automatic or semi-automatic application by a machine), aerial (i.e. aerial application from an airplane);" ;
sh:class foodie:FormOfTreatmentValue ;
sh:description "A Relation from Treatment to FormOfTreatmentValue codelist, e.g., manual (i.e. conducted manually by a person), applicationMachine (i.e. automatic or semi-automatic application by a machine), aerial (i.e. aerial application from an airplane);" ;
sh:name "formOfTreatment" ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:path foodie:formOfTreatment .
<https://astrea.linkeddata.es/shapes#3e18b0f9fac2d3bdcd51a2fdadcbda53>
a sh:NodeShape ;
rdfs:isDefinedBy time: ;
rdfs:label "Temporal entity"@en ;
sh:description "A temporal interval or instant."@en ;
sh:name "Temporal entity"@en ;
sh:nodeKind sh:IRI ;
# sh:or _:b0 ;
sh:property <https://astrea.linkeddata.es/shapes#8d26f56ec9e75266434f08dc7f5c2047> , <https://astrea.linkeddata.es/shapes#2532894d090d3f1667f7f7b6da65df98> ;
sh:targetClass time:TemporalEntity .
<https://astrea.linkeddata.es/shapes#ebc99f004d47773ac134702657bdeed7>
a sh:PropertyShape ;
rdfs:isDefinedBy <http://foodie-cloud.com/model/foodie> ;
rdfs:label "Type of the Product, e.g. pesticide, as a free text. The types of Product vary from country to country as well as from farmer to farmer" , "productType" ;
sh:datatype xsd:string ;
sh:description "Type of the Product, e.g. pesticide, as a free text. The types of Product vary from country to country as well as from farmer to farmer" ;
sh:name "productType" ;
sh:nodeKind sh:Literal ;
sh:path foodie:productType ;
sh:pattern ".*" .
<https://astrea.linkeddata.es/shapes#176d6868c726544c5477ac0fb503b142>
a sh:PropertyShape ;
rdfs:isDefinedBy common: ;
rdfs:label "begin of real-world phenomenon" , "valid from" ;
sh:datatype xsd:dateTime ;
sh:description "begin of real-world phenomenon" ;
sh:name "valid from" ;
sh:nodeKind sh:Literal ;
sh:path common:validFrom ;
sh:pattern "-?([1-9][0-9]{3,}|0[0-9]{3})-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01])T(([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9](\\.[0-9]+)?|(24:00:00(\\.0+)?))(Z|(\\+|-)((0[0-9]|1[0-3]):[0-5][0-9]|14:00))?" .
<https://astrea.linkeddata.es/shapes#bac156cb4c091b645a2b3eceee3c609b>
a sh:PropertyShape ;
sh:maxCount "1"^^xsd:integer ;
sh:minCount "1"^^xsd:integer ;
sh:nodeKind sh:IRIOrLiteral ;
sh:path foodie:code .
<https://astrea.linkeddata.es/shapes#3c87254ced1086ac54d1dbbaf7912661>
a sh:PropertyShape ;
rdfs:isDefinedBy ssn-ext: ;
rdfs:label "member observation"@en , "Link to a member within a collection of (observations) or (collections of observations) that share the same value for one or more of the characteristic properties"@en ;
sh:description "Link to a member within a collection of (observations) or (collections of observations) that share the same value for one or more of the characteristic properties"@en ;
sh:name "member observation"@en ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:or ( [ sh:class sosa:Observation ;
sh:path sosa:hasMember
]
[ sh:class sosa:ObservationCollection ;
sh:path sosa:hasMember
]
) ;
sh:path sosa:hasMember .# added this axiom
<https://astrea.linkeddata.es/shapes#8dcea278f8f5ef5a48f821324db74452>
a sh:PropertyShape ;
sh:datatype xsd:dateTime ;
sh:nodeKind sh:IRIOrLiteral ;
sh:path saref:hasTimestamp .
<https://astrea.linkeddata.es/shapes#4be8017c1cb5809a9d04c75ec970eb41>
a sh:NodeShape ;
rdfs:isDefinedBy <https://github.com/smart-data-models/dataModel.Agrifood/blob/master/AgriFarm/schema.json> ;
rdfs:label "Agri Farm" ;
sh:description "This entity contains a harmonised description of a generic farm made up of buildings and parcels. This entity is primarily associated with the agricultural vertical and related IoT applications." ;
sh:name "Agri Farm" ;
sh:nodeKind sh:IRI ;
sh:targetClass fiware-agrifood:AgriFarm .
<https://astrea.linkeddata.es/shapes#3ff4ff08449fef9927d2a75d59e881a0>
a sh:NodeShape ;
rdfs:isDefinedBy <http://purl.org/linked-data/cube> ;
rdfs:label "Slice"@en ;
sh:description "Denotes a subset of a DataSet defined by fixing a subset of the dimensional values, component properties on the Slice"@en ;
sh:name "Slice"@en ;
sh:nodeKind sh:IRI ;
sh:property <https://astrea.linkeddata.es/shapes#c9012e927a0e4a0781e8572502310c2c> ;
sh:targetClass qb:Slice .
<https://astrea.linkeddata.es/shapes#47165499a8631177d20464939561e0f6>
a sh:PropertyShape ;
rdfs:isDefinedBy demeterAgriCrop: ;
rdfs:label "Number Of Hives Needed" ;
sh:datatype xsd:dateTime ;
sh:description "Number Of Hives Needed" ;
sh:name "Number Of Hives Needed" ;
sh:nodeKind sh:Literal ;
sh:path demeterAgriCrop:numberOfHivesNeeded ;
sh:pattern "-?([1-9][0-9]{3,}|0[0-9]{3})-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01])T(([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9](\\.[0-9]+)?|(24:00:00(\\.0+)?))(Z|(\\+|-)((0[0-9]|1[0-3]):[0-5][0-9]|14:00))?" .
<https://astrea.linkeddata.es/shapes#71391c4dd59c428848b9f6466e1650c8>
a sh:PropertyShape ;
rdfs:isDefinedBy <http://foodie-cloud.com/model/foodie> ;
rdfs:label "nutrientProduct" , "Reference to the Product entity from product nutrients entity" ;
sh:class foodie:Product ;
sh:description "Reference to the Product entity from product nutrients entity" ;
sh:name "nutrientProduct" ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:path foodie:nutrientProduct .
<https://astrea.linkeddata.es/shapes#44df611770b2b973eee348b5365579ba>
a sh:PropertyShape ;
sh:minCount "1"^^xsd:integer ;
sh:nodeKind sh:IRIOrLiteral ;
sh:path sosa:hasMember .
<https://astrea.linkeddata.es/shapes#2ce18e4be99ca18a9a563f69681ec1d6>
a sh:PropertyShape ;
sh:minCount "1"^^xsd:integer ;
sh:nodeKind sh:IRIOrLiteral ;
sh:path foodie:productName .
<https://astrea.linkeddata.es/shapes#05d33e1cf8ead5ebf41d409a1af0e7dc>
a sh:NodeShape ;
rdfs:isDefinedBy act-inspire: ;
rdfs:label "EconomicActivityNACEValue"@en , "EconomicActivityNACEValue" ;
sh:description "The classification of the economic activity according to the NACE" ;
sh:name "EconomicActivityNACEValue"@en , "EconomicActivityNACEValue" ;
sh:nodeKind sh:IRI ;
sh:targetClass act-inspire:EconomicActivityNACEValue .
<https://astrea.linkeddata.es/shapes#245f16aaa4ba40d950a3dc193b987eab>
a sh:NodeShape ;
rdfs:isDefinedBy saref4agri: ;
rdfs:label "Crop" ;
sh:description "A collection of cultivated plants that is grown on a large scale commercially, especially a cereal, fruit, or vegetable."@en ;
sh:name "Crop" ;
sh:nodeKind sh:IRI ;
sh:property <https://astrea.linkeddata.es/shapes#bc18b27185243eb383471fcacb752c8d> , <https://astrea.linkeddata.es/shapes#37987344fffbbd02fc12d5b37916d4df> , <https://astrea.linkeddata.es/shapes#dd5254243bad0908f1801766c32a626c> ;
sh:targetClass foodie:CropSpecies , fiware-agrifood:AgriCrop , saref4agri:Crop .
<https://astrea.linkeddata.es/shapes#ef45d390ab99dc9342cf565cffb32386>
a sh:PropertyShape ;
rdfs:isDefinedBy <https://github.com/smart-data-models/dataModel.Weather/blob/master/WeatherObserved/schema.json> ;
rdfs:label "solarRadiation"@en , "The solar radiation observed measured in Watts per square. Units:'w/m2'" ;
sh:description "The solar radiation observed measured in Watts per square. Units:'w/m2'" ;
sh:name "solarRadiation"@en ;
sh:nodeKind sh:Literal ;
sh:path fiware-weather:solarRadiation .
<https://astrea.linkeddata.es/shapes#4d3585fc8fb7d210f7cfcf9310e9382c>
a sh:PropertyShape ;
sh:maxCount "1"^^xsd:integer ;
sh:nodeKind sh:IRIOrLiteral ;
sh:path foodie:applicationWidth .
<https://astrea.linkeddata.es/shapes#c08dff0e53e0b76f625bc3a192fdc520>
a sh:NodeShape ;
rdfs:isDefinedBy schema:Role ;
rdfs:label "Role"@en ;
sh:description "Represents additional information about a relationship or property. For example a Role can be used to say that a 'member' role linking some SportsTeam to a player occurred during a particular time period. Or that a Person's 'actor' role in a Movie was for some particular characterName. Such properties can be attached to a Role entity, which is then associated with the main entities using ordinary properties like 'member' or 'actor'.<br/><br/> " ;
sh:name "Role"@en ;
sh:nodeKind sh:IRI ;
sh:targetClass schema:Role .
<https://astrea.linkeddata.es/shapes#b01d6eed32b58e8c5381e68a18181893>
a sh:NodeShape ;
rdfs:isDefinedBy af-inspire: ;
rdfs:label "Holding"@en ;
sh:description "The whole area and all infrastructures included on it, covering the same or different sites, under the control of an operator to perform agricultural or aquaculture activities" ;
sh:name "Holding"@en ;
sh:nodeKind sh:IRI ;
sh:property <https://astrea.linkeddata.es/shapes#ffa228fbe9acf17ea0b9d1fa1bf85040> , <https://astrea.linkeddata.es/shapes#79f9049ac8c7b059d503662569e881fe> ;
sh:targetClass af-inspire:Holding .
<https://astrea.linkeddata.es/shapes#23a56c810e12f59c60cd38d40c716958>
a sh:PropertyShape ;
rdfs:isDefinedBy <https://github.com/smart-data-models/dataModel.Weather/blob/master/WeatherObserved/schema.json> ;
rdfs:label "precipitation"@en , "Amount of water rain registered. Units:'Liters per square meter'" ;
sh:description "Amount of water rain registered. Units:'Liters per square meter'" ;
sh:name "precipitation"@en ;
sh:nodeKind sh:Literal ;
sh:path fiware-weather:precipitation .
<https://astrea.linkeddata.es/shapes#9e9cb48c1174c31afed273d1a674e5ba>
a sh:NodeShape ;
rdfs:isDefinedBy schema:Person ;
rdfs:label "Person"@en ;
sh:description "A person (alive, dead, undead, or fictional)."@en ;
sh:name "Person"@en ;
sh:nodeKind sh:IRI ;
sh:targetClass schema:Person .
<https://astrea.linkeddata.es/shapes#466029394f8f44718cce25b40440d323>
a sh:NodeShape ;
rdfs:isDefinedBy <http://purl.oclc.org/NET/ssnx/cf/cf-feature> ;
rdfs:label "Layer" ;
sh:description "A cf-feature:Layer is something that is a ssn:FeatureOfInterest" ;
sh:name "Layer" ;
sh:nodeKind sh:IRI ;
sh:targetClass cf-feature:Layer .
<https://astrea.linkeddata.es/shapes#abc12d595b9826f4990ac8a53011e07f>
a sh:PropertyShape ;
rdfs:isDefinedBy schema:addressCountry ;
rdfs:label "addressCountry" , "The country. For example, USA. You can also provide the two-letter ISO 3166-1 alpha-2 country code" ;
sh:description "The country. For example, USA. You can also provide the two-letter ISO 3166-1 alpha-2 country code" ;
sh:name "addressCountry" ;
sh:nodeKind sh:Literal ;
sh:path schema:addressCountry .
<https://astrea.linkeddata.es/shapes#ef4ee09775a4ed717799816812fb2efc>
a sh:NodeShape ;
rdfs:isDefinedBy <http://foodie-cloud.com/model/foodie> ;
rdfs:label "ManagementZone"@en ;
sh:description "A spatial subset of a Plot that has specific properties like electric conductivity, organic matter, pH, soil texture, soil type or soil nutrients" ;
sh:name "ManagementZone"@en ;
sh:nodeKind sh:IRI ;
sh:property <https://astrea.linkeddata.es/shapes#bf3bc9f168c46a0a3e0fe3c379bbe0d7> , <https://astrea.linkeddata.es/shapes#f7b2b5e404a15b049376007758affc7e> , <https://astrea.linkeddata.es/shapes#ae908c904944a56cefec54c488a89327> , <https://astrea.linkeddata.es/shapes#7139ac3bac1fb96b85203ca83f019ef6> , <https://astrea.linkeddata.es/shapes#92ec9f4a340443ce661beb8dfaf279a7> , <https://astrea.linkeddata.es/shapes#77cce3bcdaf17172ebb7f37f1c99b4d1> , <https://astrea.linkeddata.es/shapes#d5cfa76e1be0f91bfc1d3c44ef0b8ae0> ;
sh:targetClass foodie:ManagementZone .
<https://astrea.linkeddata.es/shapes#7079166d64f203e3c5ada3ecea14c911>
a sh:PropertyShape ;
rdfs:isDefinedBy <http://foodie-cloud.com/model/foodie> ;
rdfs:label "machine"@en , "A relation from Intervention to MachineType" ;
sh:class foodie:MachineType ;
sh:description "A relation from Intervention to MachineType" ;
sh:name "machine"@en ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:path foodie:machine .
<https://astrea.linkeddata.es/shapes#16e1eba32aba80dc9b24b33278880d40>
a sh:PropertyShape ;
rdfs:isDefinedBy <https://github.com/smart-data-models/dataModel.Agrifood/blob/master/AgriApp/schemaDTDL.json> ;
rdfs:label "name"@en , "The name of this item" ;
sh:description "The name of this item" ;
sh:name "name"@en ;
sh:nodeKind sh:Literal ;
sh:path fiware:name .
<https://astrea.linkeddata.es/shapes#b4c9bdbddc2f07b88847907df55c48a2>
a sh:PropertyShape ;
sh:nodeKind sh:IRIOrLiteral ;
sh:path saref4agri:managesFarm .
<https://astrea.linkeddata.es/shapes#d617da509c1b919440ad209d5bdff0d1>
a sh:PropertyShape ;
sh:class saref:Device ;
sh:nodeKind sh:IRIOrLiteral ;
sh:path saref:isControlledByDevice .
<https://astrea.linkeddata.es/shapes#d3b700890f76c4d369c0d5e9b25309fc>
a sh:PropertyShape ;
rdfs:isDefinedBy demeterAgriCommon: ;
rdfs:label "imageDataType" , "The data type of the image, e.g., NDVI" ;
sh:description "The data type of the image, e.g., NDVI" ;
sh:name "imageDataType" ;
sh:nodeKind sh:Literal ;
sh:path demeterAgriCommon:imageDataType .
<https://astrea.linkeddata.es/shapes#01c89cc501dcba3124b973ac2cd266a7>
a sh:PropertyShape ;
sh:nodeKind sh:IRIOrLiteral ;
sh:path saref4agri:hasName .
<https://astrea.linkeddata.es/shapes#72b5ce36f0debf76da4c0832ffed7785>
a sh:PropertyShape ;
sh:maxCount "1"^^xsd:integer ;
sh:nodeKind sh:IRIOrLiteral ;
sh:path foodie:description .
<https://astrea.linkeddata.es/shapes#a7105e3625d3f435fffd3818a68e13a0>
a sh:NodeShape ;
rdfs:isDefinedBy saref4agri: ;
rdfs:label "Farm holding"@en ;
sh:description "A class to decsribe a saref4agri farm holding as subcass of an org:Organization" ;
sh:name "Farm holding"@en ;
sh:nodeKind sh:IRI ;
sh:property <https://astrea.linkeddata.es/shapes#b4c9bdbddc2f07b88847907df55c48a2> , <https://astrea.linkeddata.es/shapes#e9cf8a62ed14268498c0eb6145ee4082> ;
sh:targetClass saref4agri:FarmHolding .
<https://astrea.linkeddata.es/shapes#c088fd6854acbca9eecaf9b9dec3d43c>
a sh:PropertyShape ;
rdfs:isDefinedBy saref: ;
rdfs:label "has value"@en , "A relationship defining the value of a certain property, e.g., energy or power" ;
sh:description "A relationship defining the value of a certain property, e.g., energy or power" ;
sh:equals sosa:hasSimpleResult ;
sh:name "has value"@en ;
sh:nodeKind sh:Literal ;
sh:path saref:hasValue .
<https://astrea.linkeddata.es/shapes#da443a0a889f835728e2b9778c537399>
a sh:PropertyShape ;
rdfs:isDefinedBy <http://foodie-cloud.com/model/foodie> ;
rdfs:label "alertDate" , "The date/time of the generated alert" ;
sh:datatype xsd:dateTime ;
sh:description "The date/time of the generated alert" ;
sh:name "alertDate" ;
sh:nodeKind sh:Literal ;
sh:path foodie:alertDate ;
sh:pattern "-?([1-9][0-9]{3,}|0[0-9]{3})-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01])T(([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9](\\.[0-9]+)?|(24:00:00(\\.0+)?))(Z|(\\+|-)((0[0-9]|1[0-3]):[0-5][0-9]|14:00))?" .
<https://astrea.linkeddata.es/shapes#9e81a8547fd8cabc79752e243c8d2b67>
a sh:NodeShape ;
rdfs:isDefinedBy <http://www.opengis.net/spec/geosparql/1.0> , <http://www.opengis.net/ont/geosparql> ;
rdfs:label "Geometry"@en ;
sh:description "\n The class represents the top-level geometry type. This class is \n equivalent to the UML class GM_Object defined in ISO 19107, and \n it is superclass of all geometry types.\n "@en ;
sh:name "Geometry"@en ;
sh:nodeKind sh:IRI ;
sh:property <https://astrea.linkeddata.es/shapes#0f6502053608fc059a721676b6e67115> , <https://astrea.linkeddata.es/shapes#ea758cf93a4a6fcb568c859d464061d1> ;
sh:targetClass geo:Geometry .
<https://astrea.linkeddata.es/shapes#8e7c33017e1bf55f1b058619d9a34413>
a sh:PropertyShape ;
rdfs:isDefinedBy <http://foodie-cloud.com/model/foodie> ;
rdfs:label "plan" , "A Relation from Treatment to TreatmentPlan entity." ;
sh:class foodie:TreatmentPlan ;
sh:description "A Relation from Treatment to TreatmentPlan entity." ;
sh:name "plan" ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:path foodie:plan .
<https://astrea.linkeddata.es/shapes#96856804862a98fe71c0b970ca3cabde>
a sh:PropertyShape ;
rdfs:isDefinedBy <https://github.com/smart-data-models/dataModel.Weather/blob/master/WeatherAlert/doc/spec.md> ;
rdfs:label "validFrom"@en , "The start of the validity period for this weather alert as a ISO8601 format" ;
sh:datatype xsd:dateTime ;
sh:description "The start of the validity period for this weather alert as a ISO8601 format" ;
sh:name "validFrom"@en ;
sh:nodeKind sh:Literal ;
sh:path fiware-weather:validFrom ;
sh:pattern "-?([1-9][0-9]{3,}|0[0-9]{3})-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01])T(([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9](\\.[0-9]+)?|(24:00:00(\\.0+)?))(Z|(\\+|-)((0[0-9]|1[0-3]):[0-5][0-9]|14:00))?" .
<https://astrea.linkeddata.es/shapes#88d3f022bbe5ad4138183c6dd3f64ebf>
a sh:NodeShape ;
rdfs:isDefinedBy saref: ;
rdfs:label "Device"@en ;
sh:description "A tangible object designed to accomplish a particular task. In order to accomplish this task, the device performs one or more functions. For example, a washing machine is designed to wash (task) and to accomplish this task it performs a start and stop function" ;
sh:name "Device"@en ;
sh:nodeKind sh:IRI ;
sh:targetClass saref:Device .
<https://astrea.linkeddata.es/shapes#aff23b97673892b9b4c4c10e469828e9>
a sh:PropertyShape ;
rdfs:isDefinedBy af-inspire: ;
rdfs:label "includesAnimal"@en , "relatinship to included animal in e.g., a farm site" ;
sh:class af-inspire:FarmAnimalSpecies ;
sh:description "relatinship to included animal in e.g., a farm site" ;
sh:name "includesAnimal"@en ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:path af-inspire:includesAnimal .
<https://astrea.linkeddata.es/shapes#7151936560e790620785f59721133f20>
a sh:PropertyShape ;
sh:nodeKind sh:IRIOrLiteral ;
sh:path saref4agri:isMemberOf .
<https://astrea.linkeddata.es/shapes#e7b516b5764ab14aac9d4b2dcbe92e80>
a sh:PropertyShape ;
sh:class geo:SpatialObject ;
sh:nodeKind sh:IRIOrLiteral ;
sh:path geo:sfContains .
<https://astrea.linkeddata.es/shapes#cb15d1b208f12d513843da13eb5a8d5c>
a sh:NodeShape ;
rdfs:isDefinedBy <http://foodie-cloud.com/model/foodie> ;
rdfs:label "ProductNutrients" ;
sh:description "This entity holds the information of the nutrients (e.g. nutrient name, nutrient measure, nutrient amount) used for a product" ;
sh:name "ProductNutrients" ;
sh:nodeKind sh:IRI ;
sh:property <https://astrea.linkeddata.es/shapes#0c264d7145a37cb616e5b9042b449c10> , <https://astrea.linkeddata.es/shapes#3693dda63470591331f78f417dc9cacd> , <https://astrea.linkeddata.es/shapes#cb19e1d4f9b1fa087da12b932e9137cf> , <https://astrea.linkeddata.es/shapes#c819de49cc619f614511d046937d3882> ;
sh:targetClass foodie:ProductNutrients .
<https://astrea.linkeddata.es/shapes#27fe5a03f834bb97fccc598190810fb5>
a sh:PropertyShape ;
rdfs:isDefinedBy <https://github.com/smart-data-models/dataModel.Weather/blob/master/WeatherAlert/schema.json> ;
rdfs:label "alertSource"@en , "reference to the source of the alert. For example, it could be a user of an application, a device, or a service" ;
sh:description "reference to the source of the alert. For example, it could be a user of an application, a device, or a service" ;
sh:name "alertSource"@en ;
sh:nodeKind sh:Literal ;
sh:path fiware-weather:alertSource .
<https://astrea.linkeddata.es/shapes#70b3c128d7291f14d0678dbe1098839f>
a sh:NodeShape ;
rdfs:isDefinedBy <http://foodie-cloud.com/model/foodie> ;
rdfs:label "Treatment" ;
sh:description "An entity defining the attributes of Treatments" ;
sh:name "Treatment" ;
sh:nodeKind sh:IRI ;
sh:property <https://astrea.linkeddata.es/shapes#e4673daae41f54637adfa7d0c0732aa5> , <https://astrea.linkeddata.es/shapes#458266b84934788b6204c5fad12ee12a> , <https://astrea.linkeddata.es/shapes#5da7eba205564f9e693acf7efa987488> , <https://astrea.linkeddata.es/shapes#684e2e899824a15b3dddb982a89db4db> , <https://astrea.linkeddata.es/shapes#6fa26ea5f24512aa61a72750510f5d63> , <https://astrea.linkeddata.es/shapes#5e71668a8d30e6f1e01a76bfbf0dde7a> , <https://astrea.linkeddata.es/shapes#a9c88c1050fd17a8a7428d875d176d0f> , <https://astrea.linkeddata.es/shapes#b86ca0ef9cc650a2c5cb81924e2df903> , <https://astrea.linkeddata.es/shapes#0d890d951f1156f470a3a61055f88e2d> , <https://astrea.linkeddata.es/shapes#4d3585fc8fb7d210f7cfcf9310e9382c> , <https://astrea.linkeddata.es/shapes#07c5c3447bba509cbb5dd9bd8002f577> ;
sh:targetClass foodie:Treatment , fiware-agrifood:AgriParcelOperation .
<https://astrea.linkeddata.es/shapes#dc1487d61265ade87dad9cc4a3ae2fc2>
a sh:PropertyShape ;
sh:nodeKind sh:IRIOrLiteral ;
sh:path saref4agri:contains .
<https://astrea.linkeddata.es/shapes#3d89b85cd5a3bda881f208de27abbb23>
a sh:PropertyShape ;
rdfs:isDefinedBy <http://foodie-cloud.com/model/foodie> ;
rdfs:label "supervisor" , "A Relation from Intervention to ResponsibleParty. ResponsibleParty contains the entity who carries out the intervention (a person or a body who has the power and authority to give instructions and guarantee the conducted Intervention)" ;
sh:class iso19115-citation:ResponsibleParty ;
sh:description "A Relation from Intervention to ResponsibleParty. ResponsibleParty contains the entity who carries out the intervention (a person or a body who has the power and authority to give instructions and guarantee the conducted Intervention)" ;
sh:name "supervisor" ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:path foodie:supervisor .
<https://astrea.linkeddata.es/shapes#5ccfee24676a7ba68d9a9bfad49c79fd>
a sh:PropertyShape ;
rdfs:isDefinedBy <http://foodie-cloud.com/model/foodie> ;
rdfs:label "pressure" , "A Relation from Treatment to Measure entity, indicating the recommended pressure for the application of the Treatment that should be expressed together with its unit" ;
sh:class iso19103:Measure ;
sh:description "A Relation from Treatment to Measure entity, indicating the recommended pressure for the application of the Treatment that should be expressed together with its unit" ;
sh:name "pressure" ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:path foodie:pressure .
<https://astrea.linkeddata.es/shapes#5288c98ba84b52929075c92bec872444>
a sh:PropertyShape ;
rdfs:isDefinedBy <https://github.com/smart-data-models/dataModel.Weather/blob/master/WeatherObserved/schema.json> ;
rdfs:label "dewPoint"@en , "The dew point encoded as a number. Observed temperature to which air must be cooled to become saturated with water vapor" ;
sh:description "The dew point encoded as a number. Observed temperature to which air must be cooled to become saturated with water vapor" ;
sh:name "dewPoint"@en ;
sh:nodeKind sh:Literal ;
sh:path fiware-weather:dewPoint .
<https://astrea.linkeddata.es/shapes#733c015d5afbfee34b891410275696c6>
a sh:NodeShape ;
rdfs:isDefinedBy <http://purl.org/linked-data/cube> ;
rdfs:label "Dimension property"@en ;
sh:description "The class of components which represent the dimensions of the cube"@en ;
sh:name "Dimension property"@en ;
sh:nodeKind sh:IRI ;
sh:not <https://astrea.linkeddata.es/shapes#2756c97972402dcea46d42e487344cda> ;
sh:targetClass qb:DimensionProperty .
<https://astrea.linkeddata.es/shapes#7aeedc1b9db4c317ebda21f1adc5cc2f>
a sh:NodeShape ;
rdfs:isDefinedBy <http://purl.org/linked-data/cube> ;
rdfs:label "Component set"@en ;
sh:description "Abstract class of things which reference one or more ComponentProperties"@en ;
sh:name "Component set"@en ;
sh:nodeKind sh:IRI ;
sh:property <https://astrea.linkeddata.es/shapes#2b2c87e5aca5b65a28d66b3e9a96621a> ;
sh:targetClass qb:ComponentSet .
<https://astrea.linkeddata.es/shapes#128cb216e10187c58feb97062ac9564d>
a sh:NodeShape ;
rdfs:isDefinedBy <https://github.com/smart-data-models/dataModel.Agrifood/blob/master/AgriParcelRecord/schema.json> ;
rdfs:label "AgriParcelRecord" ;
sh:description "This entity contains a harmonised description of the conditions recorded on a generic parcel of land. This entity is primarily associated with the agricultural vertical and related IoT applications." ;
sh:name "AgriParcelRecord" ;
sh:nodeKind sh:IRI ;
sh:targetClass fiware-agrifood:AgriParcelRecord .
<https://astrea.linkeddata.es/shapes#7ba72b4487d0800caff6564aeaac2fe4>
a sh:PropertyShape ;
rdfs:isDefinedBy <http://foodie-cloud.com/model/foodie> ;
rdfs:label "alertGeometry" , "A relation between Geometry entity and Alert" ;
sh:class geo:Geometry ;
sh:description "A relation between Geometry entity and Alert" ;
sh:name "alertGeometry" ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:path foodie:alertGeometry .
<https://astrea.linkeddata.es/shapes#f53da6dddfab2225aa45d16df0e01e33>
a sh:PropertyShape ;
sh:nodeKind sh:IRIOrLiteral ;
sh:path saref4agri:hasName .
<https://astrea.linkeddata.es/shapes#c78adf719f2fc347d9729f079d86324b>
a sh:PropertyShape ;
rdfs:isDefinedBy sosa: ;
rdfs:label "observes"@en , "Relation between a Sensor and an ObservableProperty that it is capable of sensing."@en ;
sh:description "Relation between a Sensor and an ObservableProperty that it is capable of sensing."@en ;
sh:name "observes"@en ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:path sosa:observes .
<https://astrea.linkeddata.es/shapes#16b639b6c59786f5c650e18b0080386b>
# a sh:PropertyShape ;
a sh:NodeShape ;
sh:class geo:Geometry .
<https://astrea.linkeddata.es/shapes#ae83a7fbdc4c12ed8789e7b8d38428d5>
a sh:NodeShape ;
rdfs:isDefinedBy <http://standards.iso.org/iso/19156/ed-1/en/> ;
rdfs:label "GFI_Feature" ;
sh:description "The class GFI_Feature (Figure 2) is an instance of the .og.metaclass.cg. GF_FeatureType (ISO 19109). It represents the set of all classes which are feature types. NOTE\tGFI_Feature is implemented in GML (ISO 19136:2007) by the element gml:AbstractFeature and type gml:AbstractFeatureType. In an implementation this abstract class shall be substituted by a concrete class representing a feature type from an application schema associated with a domain of discourse (ISO 19109, ISO 19101). Sampling Features (Clause 8) are a class of feature-types whose role is primarily associated with observations." ;
sh:name "GFI_Feature" ;
sh:nodeKind sh:IRI ;
sh:targetClass iso19156_GFI:GFI_Feature .
<https://astrea.linkeddata.es/shapes#feb55fa4be1793183a97c77e8da8b390>
a sh:NodeShape ;
rdfs:isDefinedBy <http://purl.oclc.org/NET/ssnx/qu/qu-rec20> ;
rdfs:label "Energy Flux" ;
sh:description "A EnergyFlux is something that is a QuantityKind and has a unitKind property who must be a EnergyFluxUnit" ;
sh:name "Energy Flux" ;
sh:nodeKind sh:IRI ;
sh:targetClass dim:EnergyFlux .
<https://astrea.linkeddata.es/shapes#502898d72a77a36190b2820684311a5b>
a sh:PropertyShape ;
rdfs:isDefinedBy saref: ;
rdfs:label "A relationship stating the timestamp of an entity (e.g. a measurement)" , "has timestamp"@en ;
sh:datatype xsd:dateTime ;
sh:description "A relationship stating the timestamp of an entity (e.g. a measurement)" ;
sh:equals sosa:resultTime ;
sh:name "has timestamp"@en ;
sh:nodeKind sh:Literal ;
sh:path saref:hasTimestamp ;
sh:pattern "-?([1-9][0-9]{3,}|0[0-9]{3})-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01])T(([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9](\\.[0-9]+)?|(24:00:00(\\.0+)?))(Z|(\\+|-)((0[0-9]|1[0-3]):[0-5][0-9]|14:00))?" .
<https://astrea.linkeddata.es/shapes#c03c37fdabdcde989232e075974b9af6>
a sh:PropertyShape ;
rdfs:isDefinedBy <https://github.com/smart-data-models/dataModel.Agrifood/blob/master/Animal/schema.json> ;
rdfs:label "healthCondition"@en , "Health Condition of the animal, e.g., healthy, sick, inTreatment" ;
sh:description "Health Condition of the animal, e.g., healthy, sick, inTreatment" ;
sh:name "healthCondition"@en ;
sh:nodeKind sh:Literal ;
sh:path fiware-agrifood:healthCondition .
<https://astrea.linkeddata.es/shapes#64fa52c0b7adcbf451b13e34488a69e2>
a sh:PropertyShape ;
sh:maxCount "1"^^xsd:integer ;
# sh:minCount "1"^^xsd:integer ;
sh:nodeKind sh:IRIOrLiteral ;
sh:path saref:hasValue .
<https://astrea.linkeddata.es/shapes#56412c6e81da06014e55555506514cf3>
a sh:NodeShape ;
rdfs:isDefinedBy <http://foodie-cloud.com/model/foodie> ;
rdfs:label "Machine type" ;
sh:description "Identification of a machine applying the agricultural treatment" ;
sh:name "Machine type" ;
sh:nodeKind sh:IRI ;
sh:property <https://astrea.linkeddata.es/shapes#bac156cb4c091b645a2b3eceee3c609b> ;
sh:targetClass foodie:MachineType .
<https://astrea.linkeddata.es/shapes#580659d3d4d3c9974e9dc36d00e6e6e8>
a sh:PropertyShape ;
rdfs:isDefinedBy foaf: ;
rdfs:label "member" , "The foaf:member property relates a foaf:Group to a foaf:Agent that is a member of that group." ;
sh:description "The foaf:member property relates a foaf:Group to a foaf:Agent that is a member of that group." ;
sh:name "member" ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:path foaf:member .
<https://astrea.linkeddata.es/shapes#fef8eed41a9119575b5ef31c98009e94>
a sh:PropertyShape ;
rdfs:isDefinedBy <http://foodie-cloud.com/model/foodie> ;
rdfs:label "Relation between a PropertyType and Measure" , "quantitativeProperty" ;
sh:class iso19103:Measure ;
sh:description "Relation between a PropertyType and Measure" ;
sh:equals sosa:hasResult ;
sh:name "quantitativeProperty" ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:path foodie:quantitativeProperty .
<https://astrea.linkeddata.es/shapes#8a4625974fc3cbc57d1601d7005f1cd0>
a sh:NodeShape ;
rdfs:isDefinedBy <http://purl.oclc.org/NET/ssnx/cf/cf-feature> ;
rdfs:label "Surface Layer" ;
sh:description "A cf-feature:SurfaceLayer is something that is a ssn:FeatureOfInterest" ;
sh:name "Surface Layer" ;
sh:nodeKind sh:IRI ;
sh:targetClass cf-feature:SurfaceLayer .
<https://astrea.linkeddata.es/shapes#409ce3a4aadd299c586beffe7a5f61d0>
a sh:PropertyShape ;
rdfs:isDefinedBy <https://github.com/smart-data-models/dataModel.Agrifood/blob/master/Animal/schema.json> ;
rdfs:label "siredBy"@en , "Father of the animal" ;
sh:description "Father of the animal" ;
sh:name "siredBy"@en ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:path fiware-agrifood:siredBy .
<https://astrea.linkeddata.es/shapes#023bc605a551c013ad64f68140032fc1>
a sh:PropertyShape ;
rdfs:isDefinedBy <https://github.com/smart-data-models/dataModel.Agrifood/blob/master/AgriApp/schemaDTDL.json> ;
rdfs:label "dateModified"@en , "Timestamp of the last modification of the entity. This will usually be allocated by the storage platform" ;
sh:datatype xsd:dateTime ;
sh:description "Timestamp of the last modification of the entity. This will usually be allocated by the storage platform" ;
sh:name "dateModified"@en ;
sh:nodeKind sh:Literal ;
sh:path fiware:dateModified ;
sh:pattern "-?([1-9][0-9]{3,}|0[0-9]{3})-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01])T(([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9](\\.[0-9]+)?|(24:00:00(\\.0+)?))(Z|(\\+|-)((0[0-9]|1[0-3]):[0-5][0-9]|14:00))?" .
<https://astrea.linkeddata.es/shapes#345d2f0764a7c6b4e60a85749fedc13d>
a sh:NodeShape ;
rdfs:isDefinedBy <http://qudt.org/2.1/schema/qudt> ;
rdfs:label "Quantity Kind" ;
sh:description "A Quantity Kind is any observable property that can be measured and quantified numerically. Familiar examples include physical properties such as length, mass, time, force, energy, power, electric charge, etc. Less familiar examples include currency, interest rate, price to earning ratio, and information capacity." ;
sh:name "Quantity Kind" ;
sh:nodeKind sh:IRI ;
sh:targetClass qudt:QuantityKind , qu:QuantityKind .
<https://astrea.linkeddata.es/shapes#997a06d5095d84792c22e4317b71da4d>
a sh:NodeShape ;
rdfs:isDefinedBy <https://github.com/smart-data-models/dataModel.Weather/blob/master/WeatherAlert/schema.json> ;
rdfs:label "Alert" ;
sh:description "A weather alert generated by a user or device in a given location" ;
sh:name "Alert" ;
sh:nodeKind sh:IRI ;
sh:targetClass fiware-weather:Alert .
<https://astrea.linkeddata.es/shapes#d2a657b2d775f38122a67bfad6e81470>
a sh:PropertyShape ;
rdfs:isDefinedBy <http://foodie-cloud.com/model/foodie> ;
rdfs:label "quantity" , "A Relation from Treatment to Measure entity, indicating the value of a physical quantity of applied Treatment, together with its unit." ;
sh:class iso19103:Measure ;
sh:description "A Relation from Treatment to Measure entity, indicating the value of a physical quantity of applied Treatment, together with its unit." ;
sh:equals fiware-agrifood:quantity ;
sh:name "quantity" ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:path foodie:quantity .
<https://astrea.linkeddata.es/shapes#1920818798ec12e24e6184913797a62b>
a sh:PropertyShape ;
rdfs:isDefinedBy <http://foodie-cloud.com/model/foodie> ;
rdfs:label "A Relation to the person(s) who has conducted an Intervention" , "operator" ;
sh:class iso19115-citation:ResponsibleParty ;
sh:description "A Relation to the person(s) who has conducted an Intervention" ;
sh:equals fiware-agrifood:hasOperator ;
sh:name "operator" ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:path foodie:operator .
<https://astrea.linkeddata.es/report/0206434858>
a <https://w3id.org/def/astrea#ReportEntry> ;
<https://w3id.org/def/astrea#message>
"Shapes generated with no errors" ;
<https://w3id.org/def/astrea#source>
"https://raw.githubusercontent.com/rapw3k/DEMETER/master/models/agriProduct.ttl" ;
<https://w3id.org/def/astrea#statusCode>
"200"^^xsd:int .
<https://astrea.linkeddata.es/shapes#e99d601b76a7db1b1132902175fa4f7e>
a sh:NodeShape ;
rdfs:isDefinedBy <http://purl.oclc.org/NET/ssnx/qu/qu-rec20> ;
rdfs:label "Dimensionless" ;
sh:description "A Dimensionless is something that is a QuantityKind and has a unitKind property who must be a DimensionlessUnit" ;
sh:name "Dimensionless" ;
sh:nodeKind sh:IRI ;
sh:targetClass dim:Dimensionless .
<https://astrea.linkeddata.es/shapes#e85f7f569c1b43b31809a79038a33ed0>
a sh:NodeShape ;
rdfs:isDefinedBy sosa: ;
rdfs:label "Feature Of Interest"@en ;
sh:description "The thing whose property is being estimated or calculated in the course of an Observation to arrive at a Result, or whose property is being manipulated by an Actuator, or which is being sampled or transformed in an act of Sampling." ;
sh:name "Feature Of Interest"@en ;
sh:nodeKind sh:IRI ;
sh:targetClass sosa:FeatureOfInterest .
<https://astrea.linkeddata.es/shapes#4a0fe07d77e1568c9f6119967b7b3d3a>
a sh:NodeShape ;
rdfs:isDefinedBy sosa: ;
rdfs:label "Actuation"@en ;
sh:description "An Actuation carries out an (Actuation) Procedure to change the state of the world using an Actuator."@en ;
sh:name "Actuation"@en ;
sh:nodeKind sh:IRI ;
sh:property <https://astrea.linkeddata.es/shapes#0108c26baab7e2cb5a143b40f8bb7e49> ;
sh:targetClass sosa:Actuation .
<https://astrea.linkeddata.es/shapes#9c057ce805a6c90684538d6989ab3f9d>
a sh:PropertyShape ;
rdfs:isDefinedBy saref4agri: ;
rdfs:label "A relation to express the day the crop is harvested." , "has harvest date" ;
sh:datatype xsd:dateTime ;
sh:description "A relation to express the day the crop is harvested." ;
sh:equals foodie:productionDate ;
sh:name "has harvest date" ;
sh:nodeKind sh:Literal ;
sh:path saref4agri:hasHarvestDate ;
sh:pattern "-?([1-9][0-9]{3,}|0[0-9]{3})-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01])T(([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9](\\.[0-9]+)?|(24:00:00(\\.0+)?))(Z|(\\+|-)((0[0-9]|1[0-3]):[0-5][0-9]|14:00))?" .
<https://astrea.linkeddata.es/shapes#8b94b3b9274eb686eda20eac15850638>
a sh:PropertyShape ;
rdfs:isDefinedBy <https://github.com/smart-data-models/dataModel.Agrifood/blob/master/AgriParcelOperation/schema.json> ;
rdfs:label "Timestamp when the operation actually started to be performed." , "startedAt"@en ;
sh:datatype xsd:dateTime ;
sh:description "Timestamp when the operation actually started to be performed." ;
sh:name "startedAt"@en ;
sh:nodeKind sh:Literal ;
sh:path fiware-agrifood:startedAt ;
sh:pattern "-?([1-9][0-9]{3,}|0[0-9]{3})-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01])T(([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9](\\.[0-9]+)?|(24:00:00(\\.0+)?))(Z|(\\+|-)((0[0-9]|1[0-3]):[0-5][0-9]|14:00))?" .
<https://astrea.linkeddata.es/shapes#8f21aa0f50cc9d51659afb262d8422cb>
a sh:PropertyShape ;
rdfs:isDefinedBy <https://github.com/smart-data-models/dataModel.Agrifood/blob/master/AgriProductType/schema.json> ;
rdfs:label "hasAgriProductTypeChildren"@en , "Reference to child product types i.e. immediately below this entity in the hierarchy." ;
sh:description "Reference to child product types i.e. immediately below this entity in the hierarchy." ;
sh:name "hasAgriProductTypeChildren"@en ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:path fiware-agrifood:hasAgriProductTypeChildren .
<https://astrea.linkeddata.es/shapes#6fbc836f8c20515f11ca65067c8194cc>
a sh:NodeShape ;
rdfs:isDefinedBy <http://foodie-cloud.com/model/foodie> ;
rdfs:label "CampaignType" ;
sh:description "An entity defining the types of campaigns" ;
sh:name "CampaignType" ;
sh:nodeKind sh:IRI ;
sh:property <https://astrea.linkeddata.es/shapes#d79ae02ab06d1fd501d1694f7aff03c2> ;
sh:targetClass foodie:CampaignType .
<https://astrea.linkeddata.es/shapes#b667140841e752727a9b434926da33ae>
a sh:PropertyShape ;
rdfs:isDefinedBy <https://github.com/smart-data-models/dataModel.Agrifood/blob/master/AgriParcelOperation/schema.json> ;
rdfs:label "waterSource"@en , "Type of water sources. One of: borehole, rainfall, river, rainwater capture, water dam, commercial supply." ;
sh:description "Type of water sources. One of: borehole, rainfall, river, rainwater capture, water dam, commercial supply." ;
sh:name "waterSource"@en ;
sh:nodeKind sh:Literal ;
sh:path fiware-agrifood:waterSource .
<https://astrea.linkeddata.es/shapes#1e4b18a5bd47914de5037ef0bb5f98e5>
a sh:PropertyShape ;
rdfs:isDefinedBy <http://www.w3.org/ns/prov-o#> ;
rdfs:label "invalidatedAtTime" , "The time at which an entity was invalidated (i.e., no longer usable)."@en ;
sh:datatype xsd:dateTime ;
sh:description "The time at which an entity was invalidated (i.e., no longer usable)."@en ;
sh:name "invalidatedAtTime" ;
sh:nodeKind sh:Literal ;
sh:path prov:invalidatedAtTime ;
sh:pattern "-?([1-9][0-9]{3,}|0[0-9]{3})-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01])T(([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9](\\.[0-9]+)?|(24:00:00(\\.0+)?))(Z|(\\+|-)((0[0-9]|1[0-3]):[0-5][0-9]|14:00))?" .
<https://astrea.linkeddata.es/shapes#6d60e47e6ae5f9718930954a3486bb48>
a sh:NodeShape ;
rdfs:isDefinedBy <http://foodie-cloud.com/model/foodie> ;
rdfs:label "Product" ;
sh:description "This entity defines a product" ;
sh:name "Product" ;
sh:nodeKind sh:IRI ;
sh:property <https://astrea.linkeddata.es/shapes#096c0e70d50c2052dc106ec62a5928fa> , <https://astrea.linkeddata.es/shapes#2ce18e4be99ca18a9a563f69681ec1d6> , <https://astrea.linkeddata.es/shapes#37e742ea104967f9da32f501ccad63b7> , <https://astrea.linkeddata.es/shapes#d733db293e8dea5bd935b1ec5a78c686> , <https://astrea.linkeddata.es/shapes#8d5bcd972e7d929efe8c5c4d60ed2e1b> , <https://astrea.linkeddata.es/shapes#b7370a9404b09b09d8f745f67d63a0b9> , <https://astrea.linkeddata.es/shapes#c00c63a1734d13aa093a8ba3d31299dc> , <https://astrea.linkeddata.es/shapes#cf4cc8cb7188c322129720fac974c1a6> ;
sh:targetClass foodie:Product , fiware-agrifood:AgriProductType .
<https://astrea.linkeddata.es/shapes#7634f840d042163ff2aa8299bb7043d7>
a sh:PropertyShape ;
rdfs:isDefinedBy <http://foodie-cloud.com/model/foodie> ;
rdfs:label "ingredientName" , "Designation under which the nutrient is commonly known" ;
sh:datatype xsd:string ;
sh:description "Designation under which the nutrient is commonly known" ;
sh:name "ingredientName" ;
sh:nodeKind sh:Literal ;
sh:path foodie:nutrientName ;
sh:pattern ".*" .
<https://astrea.linkeddata.es/shapes#144f550aeeabf18a84c5e46c49596609>
a sh:PropertyShape ;
rdfs:isDefinedBy <https://github.com/smart-data-models/dataModel.Agrifood/blob/master/AgriParcel/schema.json> ;
rdfs:label "hasAgriCrop"@en , "Reference to the crop associated with this parcel" ;
sh:description "Reference to the crop associated with this parcel" ;
sh:name "hasAgriCrop"@en ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:path fiware-agrifood:hasAgriCrop .
<https://astrea.linkeddata.es/shapes#c0f52048fcfb86afbfabfd244461a9ef>
a sh:PropertyShape ;
rdfs:isDefinedBy schema:streetAddress ;
rdfs:label "streetAddress" , "he street address. For example, 1600 Amphitheatre Pkwy." ;
sh:description "he street address. For example, 1600 Amphitheatre Pkwy." ;
sh:name "streetAddress" ;
sh:nodeKind sh:Literal ;
sh:path schema:streetAddress .
_:b0 rdf:first <https://astrea.linkeddata.es/shapes#1277b387effe1ea8b7cf6171d6155a1b> ;
rdf:first [ sh:class time:Instant ;
sh:path time:hasTime
] ;
rdf:rest [ rdf:first <https://astrea.linkeddata.es/shapes#f1ed01ff4ad7e0110c28d4231cd9616c> ;
rdf:first [ sh:class time:Interval ;
sh:path time:hasTime
] ;
rdf:rest ()
] .
<https://astrea.linkeddata.es/report/0767747899>
a <https://w3id.org/def/astrea#ReportEntry> ;
<https://w3id.org/def/astrea#message>
"Shapes generated with no errors" ;
<https://w3id.org/def/astrea#source>
"https://raw.githubusercontent.com/rapw3k/DEMETER/master/models/agriCrop.ttl" ;
<https://w3id.org/def/astrea#statusCode>
"200"^^xsd:int .
<https://astrea.linkeddata.es/shapes#45af5f745969881725f85e8f6325a462>
a sh:PropertyShape ;
sh:maxCount "1"^^xsd:integer ;
sh:nodeKind sh:IRIOrLiteral ;
sh:path foodie:nonQuantitativeProperty .
<https://astrea.linkeddata.es/shapes#329bfecdebde7336eeaf10a1bf94fcc9>
a sh:PropertyShape ;
rdfs:isDefinedBy <http://foodie-cloud.com/model/foodie> ;
rdfs:label "Date and time of the creation of the operation/intervention plan" , "treatmentPlanCreation" ;
sh:datatype xsd:dateTime ;
sh:description "Date and time of the creation of the operation/intervention plan" ;
sh:name "treatmentPlanCreation" ;
sh:nodeKind sh:Literal ;
sh:path foodie:treatmentPlanCreation ;
sh:pattern "-?([1-9][0-9]{3,}|0[0-9]{3})-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01])T(([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9](\\.[0-9]+)?|(24:00:00(\\.0+)?))(Z|(\\+|-)((0[0-9]|1[0-3]):[0-5][0-9]|14:00))?" .
<https://astrea.linkeddata.es/shapes#075d79900df48b92bccf0febfd6f6ecb>
a sh:PropertyShape ;
sh:maxCount "1"^^xsd:integer ;
sh:nodeKind sh:IRIOrLiteral ;
sh:path saref4agri:hasName .
<https://astrea.linkeddata.es/shapes#3eaeff36ae02896c8c6d4c4dd65fa781>
a sh:PropertyShape ;
rdfs:isDefinedBy saref4agri: ;
rdfs:label "has plant date" , "A relation to express the day the crop is planted." ;
sh:datatype xsd:dateTime ;
sh:description "A relation to express the day the crop is planted." ;
sh:name "has plant date" ;
sh:nodeKind sh:Literal ;
sh:path saref4agri:hasPlantDate ;
sh:pattern "-?([1-9][0-9]{3,}|0[0-9]{3})-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01])T(([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9](\\.[0-9]+)?|(24:00:00(\\.0+)?))(Z|(\\+|-)((0[0-9]|1[0-3]):[0-5][0-9]|14:00))?" .
<https://astrea.linkeddata.es/shapes#cf6a37cc1bfa54fcde15de1df08c3452>
a sh:NodeShape ;
rdfs:isDefinedBy <http://www.opengis.net/ont/sf> ;
rdfs:label "Polygon"@en ;
sh:description "\nA Polygon is a planar Surface defined by 1 exterior boundary and 0 or more interior boundaries. Each interior boundary defines a hole in the Polygon.\nThe exterior boundary LinearRing defines the top of the surface which is the side of the surface from which the exterior boundary appears to traverse the boundary in a counter clockwise direction. The interior LinearRings will have the opposite orientation, and appear as clockwise when viewed from the top,\nThe assertions for Polygons (the rules that define valid Polygons) are as follows:\na) Polygons are topologically closed;\nb) The boundary of a Polygon consists of a set of LinearRings that make up its exterior and interior boundaries;\nc) No two Rings in the boundary cross and the Rings in the boundary of a Polygon may intersect at a Point but only as a tangent.\nd) A Polygon may not have cut lines, spikes or punctures.\ne) The interior of every Polygon is a connected point set;\nf) The exterior of a Polygon with 1 or more holes is not connected. Each hole defines a connected component of the exterior.\n "@en ;
sh:name "Polygon"@en ;
sh:nodeKind sh:IRI ;
sh:targetClass sf:Polygon .
<https://astrea.linkeddata.es/shapes#79af7877b189248715b4523da7e84683>
# a sh:PropertyShape ;
a sh:NodeShape ;
sh:class saref:UnitOfMeasure .
<https://astrea.linkeddata.es/shapes#0d0e1e3919fb65b3d6f0265743ac12a8>
a sh:PropertyShape ;
rdfs:isDefinedBy <http://foodie-cloud.com/model/foodie> ;
rdfs:label "status" , "Status of the intervention, e.g. approved, pending, completed as a free text" ;
sh:datatype xsd:string ;
sh:description "Status of the intervention, e.g. approved, pending, completed as a free text" ;
sh:equals ngsi-ld:status ;
sh:name "status" ;
sh:nodeKind sh:Literal ;
sh:path foodie:status ;
sh:pattern ".*" .
<https://astrea.linkeddata.es/shapes#e94ea9bef8e93d35e2fe9f1f528dffd3>
a sh:NodeShape ;
rdfs:isDefinedBy <http://www.opengis.net/ont/sf> ;
rdfs:label "Surface"@en ;
sh:description "\nA Surface is a 2-dimensional geometric object.\nA simple Surface may consists of a single patch that is associated with one exterior boundary and 0 or more interior boundaries. A single such Surface patch in 3-dimensional space is isometric to planar Surfaces, by a simple affine rotation matrix that rotates the patch onto the plane z = 0. If the patch is not vertical, the projection onto the same plane is an isomorphism, and can be represented as a linear transformation, i.e. an affine.\nPolyhedral Surfaces are formed by stitching together such simple Surfaces patches along their common boundaries. Such polyhedral Surfaces in a 3-dimensional space may not be planar as a whole, depending on the orientation of their planar normals. If all the patches are in alignment (their normals are parallel), then the whole stitched polyhedral surface is co-planar and can be represented as a single patch if it is connected.\nThe boundary of a simple Surface is the set of closed Curves corresponding to its exterior and interior boundaries.\nA Polygon is a simple Surface that is planar. A PolyhedralSurface is a simple surface, consisting of some number of Polygon patches or facets. If a PolyhedralSurface is closed, then it bounds a solid. A MultiSurface containing a set of closed PolyhedralSurfaces can be used to represent a Solid object with holes.\n "@en ;
sh:name "Surface"@en ;
sh:nodeKind sh:IRI ;
sh:targetClass sf:Surface .
<https://astrea.linkeddata.es/shapes#a6fc85850e8eaf3606f2059efa9f8fb3>
a sh:PropertyShape ;
sh:class geo:Geometry ;
sh:nodeKind sh:IRIOrLiteral ;
sh:path geo:hasGeometry .
<https://astrea.linkeddata.es/shapes#d4dec10518172bc9804f32664c911872>
a sh:PropertyShape ;
rdfs:isDefinedBy <https://github.com/smart-data-models/dataModel.Weather/blob/master/weather-schema.json> ;
rdfs:label "visibility"@en , "Categories of visibility. Prev: Visibility reported (veryPoor, poor, moderate, good, veryGood, excellent)" ;
sh:description "Categories of visibility. Prev: Visibility reported (veryPoor, poor, moderate, good, veryGood, excellent)" ;