-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathOpenCUP.ttl
More file actions
2655 lines (2185 loc) · 200 KB
/
Copy pathOpenCUP.ttl
File metadata and controls
2655 lines (2185 loc) · 200 KB
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/italia/onto/OpenCUP/> .
@prefix L0: <https://w3id.org/italia/onto/l0/> .
@prefix RO: <https://w3id.org/italia/onto/RO/> .
@prefix SM: <https://w3id.org/italia/onto/SM/> .
@prefix TI: <https://w3id.org/italia/onto/TI/> .
@prefix CLV: <https://w3id.org/italia/onto/CLV/> .
@prefix COV: <https://w3id.org/italia/onto/COV/> .
@prefix CPV: <https://w3id.org/italia/onto/CPV/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix ocup: <https://w3id.org/italia/onto/OpenCUP/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix swrl: <http://www.w3.org/2003/11/swrl#> .
@prefix time: <http://www.w3.org/2006/time#> .
@prefix swrlb: <http://www.w3.org/2003/11/swrlb#> .
@prefix INPSCore: <https://w3id.org/italia/social-security/onto/core/> .
@base <https://w3id.org/italia/onto/OpenCUP/> .
<https://w3id.org/italia/onto/OpenCUP/> rdf:type owl:Ontology ;
owl:versionIRI <https://w3id.org/italia/onto/OpenCUP/0.6> .
#################################################################
# Datatypes
#################################################################
### http://www.w3.org/2001/XMLSchema#boolean
xsd:boolean rdf:type rdfs:Datatype .
### http://www.w3.org/2001/XMLSchema#dateTime
xsd:dateTime rdf:type rdfs:Datatype .
### http://www.w3.org/2001/XMLSchema#decimal
xsd:decimal rdf:type rdfs:Datatype .
### http://www.w3.org/2001/XMLSchema#integer
xsd:integer rdf:type rdfs:Datatype .
### http://www.w3.org/2001/XMLSchema#string
xsd:string rdf:type rdfs:Datatype .
### https://w3id.org/italia/onto/OpenCUP/valore_compensi_contributi_sponsorizzazioni_da_privati
ocup:valore_compensi_contributi_sponsorizzazioni_da_privati rdf:type rdfs:Datatype ;
rdfs:label "valore compensi contributi sponsorizzazioni da privati"@it .
### https://w3id.org/italia/onto/OpenCUP/valore_finanza_di_progetto
ocup:valore_finanza_di_progetto rdf:type rdfs:Datatype ;
rdfs:label "valore finanza di progetto"@it .
#################################################################
# Object Properties
#################################################################
### https://w3id.org/italia/onto/COV/hasActivityType
COV:hasActivityType rdf:type owl:ObjectProperty .
### https://w3id.org/italia/onto/COV/hasSupportUnit
COV:hasSupportUnit rdf:type owl:ObjectProperty .
### https://w3id.org/italia/onto/COV/holdEmployment
COV:holdEmployment rdf:type owl:ObjectProperty .
### https://w3id.org/italia/onto/OpenCUP/asserisce_atto
ocup:asserisce_atto rdf:type owl:ObjectProperty ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( L0:Agent
[ rdf:type owl:Restriction ;
owl:onProperty [ owl:inverseOf RO:holdsRoleInTime
] ;
owl:someValuesFrom L0:Agent
]
)
] ;
rdfs:range ocup:Atto ;
rdfs:label "asserisce atto"@it ,
"asserts act"@en .
### https://w3id.org/italia/onto/OpenCUP/ha_area_intervento
ocup:ha_area_intervento rdf:type owl:ObjectProperty ;
rdfs:domain ocup:Intervento_di_investimento_pubblico ;
rdfs:range ocup:Area_di_intervento ;
rdfs:label "ha area intervento" ,
"ha area intervento"@it ,
"has intervention area"@en .
### https://w3id.org/italia/onto/OpenCUP/ha_area_soggetto_accreditato
ocup:ha_area_soggetto_accreditato rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain ocup:Soggetto_accreditato_sistema_cup ;
rdfs:range ocup:Tipo_area_soggetto_accreditato ;
rdfs:label "ha area soggetto accreditato"@it ,
"has an accredited subject area"@en .
### https://w3id.org/italia/onto/OpenCUP/ha_atto_amministrativo_progetto_cumulativo
ocup:ha_atto_amministrativo_progetto_cumulativo rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain ocup:Intervento_di_investimento_pubblico_cumulativo ;
rdfs:range ocup:Atto_amministrativo_progetto_cumulativo ;
rdfs:label "ha atto amministrativo progetto cumulativo"@it ,
"has administrative act cumulative project"@en .
### https://w3id.org/italia/onto/OpenCUP/ha_atto_autorizzazione_cup
ocup:ha_atto_autorizzazione_cup rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain ocup:Utente_sistema_cup ;
rdfs:range ocup:Atto_autorizzazione_cup ;
rdfs:label "ha atto autorizzazione cup"@it ,
"has acted authorization cup"@en .
### https://w3id.org/italia/onto/OpenCUP/ha_atto_cancellazione_cup
ocup:ha_atto_cancellazione_cup rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain ocup:Stato_cancellato_di_cup ;
rdfs:range ocup:Atto_cancellazione_cup ;
rdfs:label "ha atto cancellazione cup" ,
"ha atto cancellazione cup"@it ,
"has acted to cancel the cup"@en .
### https://w3id.org/italia/onto/OpenCUP/ha_atto_chiusura_cup
ocup:ha_atto_chiusura_cup rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain ocup:Stato_chiuso_di_cup ;
rdfs:range ocup:Atto_chiusura_cup ;
rdfs:label "ha atto chiusura cup" ,
"ha atto chiusura cup"@it ,
"has closed the cup"@en .
### https://w3id.org/italia/onto/OpenCUP/ha_atto_delega_richiesta_cup
ocup:ha_atto_delega_richiesta_cup rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain ocup:Delega_richiesta_cup ;
rdfs:range ocup:Atto_delega_richiesta_cup ;
rdfs:label "ha atto delega richiesta cup" ,
"ha atto delega richiesta cup"@it ,
"has act of delegation request cup"@en .
### https://w3id.org/italia/onto/OpenCUP/ha_atto_generazione_cup
ocup:ha_atto_generazione_cup rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( ocup:Stato_completo_di_cup
ocup:Stato_provvisorio_di_cup
)
] ;
rdfs:range ocup:Atto_generazione_cup ;
rdfs:label "ha atto generazione cup"@it ,
"has acted generation cup"@en .
### https://w3id.org/italia/onto/OpenCUP/ha_atto_modifica_cup
ocup:ha_atto_modifica_cup rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( ocup:Stato_attivo_di_cup
ocup:Stato_provvisorio_di_cup
ocup:Stato_valido_di_Cup
)
] ;
rdfs:range ocup:Atto_modifica_cup ;
rdfs:label "ha atto modifica cup" ,
"ha atto modifica cup"@it ,
"has acted to modify the cup"@en .
### https://w3id.org/italia/onto/OpenCUP/ha_atto_revoca_cup
ocup:ha_atto_revoca_cup rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain ocup:Stato_revocato_di_cup ;
rdfs:range ocup:Atto_revoca_cup ;
rdfs:label "ha atto revoca cup" ,
"ha atto revoca cup"@it ,
"has revoked the CUP"@en .
### https://w3id.org/italia/onto/OpenCUP/ha_atto_revoca_delega_richiesta_cup
ocup:ha_atto_revoca_delega_richiesta_cup rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain ocup:Delega_richiesta_cup ;
rdfs:range ocup:Atto_revoca_delega_richiesta_cup ;
rdfs:label "ha atto revoca delega richiesta cup"@it ,
"has revoked the delegation request for the CUP"@en .
### https://w3id.org/italia/onto/OpenCUP/ha_beneficiario_contributo
ocup:ha_beneficiario_contributo rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain ocup:Concessione_di_contributi_ad_altri_soggetti ;
rdfs:range [ rdf:type owl:Class ;
owl:unionOf ( COV:Organization
CPV:Alive
)
] ;
rdfs:label "ha beneficiario contributo"@it ,
"has beneficiary contribution"@en .
### https://w3id.org/italia/onto/OpenCUP/ha_beneficiario_incentivo_unità_produttiva
ocup:ha_beneficiario_incentivo_unità_produttiva rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain ocup:Concessione_di_incentivi_ad_unità_produttive ;
rdfs:range COV:Organization ,
[ rdf:type owl:Restriction ;
owl:onProperty COV:hasActivityType ;
owl:someValuesFrom owl:Thing
] ;
rdfs:label "ha beneficiario incentivo unità produttiva" ,
"ha beneficiario incentivo unità produttiva"@it ,
"has benefited from the incentive for a production unit"@en .
### https://w3id.org/italia/onto/OpenCUP/ha_beneficiario_partecipazione_conferimento
ocup:ha_beneficiario_partecipazione_conferimento rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain ocup:Sottoscrizione_iniziale_o_aumento_di_capitale ;
rdfs:range COV:Organization ,
[ rdf:type owl:Restriction ;
owl:onProperty COV:hasActivityType ;
owl:someValuesFrom owl:Thing
] ;
rdfs:label "ha beneficiario partecipazione conferimento" ,
"ha beneficiario partecipazione conferimento"@it ,
"has beneficiary participation transfer"@en .
### https://w3id.org/italia/onto/OpenCUP/ha_categoria_intervento
ocup:ha_categoria_intervento rdf:type owl:ObjectProperty ;
rdfs:domain ocup:Intervento_di_investimento_pubblico ;
rdfs:range ocup:Categoria_di_intervento ;
rdfs:label "ha categoria intervento"@it ,
"has intervention category"@en .
### https://w3id.org/italia/onto/OpenCUP/ha_categoria_soggetto_accreditato
ocup:ha_categoria_soggetto_accreditato rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain ocup:Soggetto_accreditato_sistema_cup ;
rdfs:range ocup:Tipo_categoria_soggetto_accreditato ;
rdfs:label "ha categoria soggetto accreditato" ,
"ha categoria soggetto accreditato"@it ,
"has the accredited subject category"@en .
### https://w3id.org/italia/onto/OpenCUP/ha_cup
ocup:ha_cup rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ,
owl:InverseFunctionalProperty ;
rdfs:domain ocup:Progetto_di_investimento_pubblico ;
rdfs:range ocup:Codice_unico_di_progetto ;
rdfs:label "ha cup"@it ,
"has cup"@en .
### https://w3id.org/italia/onto/OpenCUP/ha_cup_collegato
ocup:ha_cup_collegato rdf:type owl:ObjectProperty ;
rdfs:domain ocup:Codice_unico_di_progetto ;
rdfs:range ocup:Codice_unico_di_progetto ;
rdfs:label "ha cup collegato"@it ,
"has cup connected"@en .
### https://w3id.org/italia/onto/OpenCUP/ha_cup_collegato_per_fusione
ocup:ha_cup_collegato_per_fusione rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf ocup:ha_cup_collegato ;
rdf:type owl:FunctionalProperty ;
rdfs:label "ha cup collegato per fusione"@it ,
"has cup connected by fusion"@en .
### https://w3id.org/italia/onto/OpenCUP/ha_cup_collegato_per_scissione
ocup:ha_cup_collegato_per_scissione rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf ocup:ha_cup_collegato ;
rdf:type owl:InverseFunctionalProperty ;
rdfs:label "ha cup collegato per scissione"@it ,
"has cup connected by split"@en .
### https://w3id.org/italia/onto/OpenCUP/ha_cup_collegato_per_sostituzione
ocup:ha_cup_collegato_per_sostituzione rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf ocup:ha_cup_collegato ;
rdf:type owl:FunctionalProperty ,
owl:InverseFunctionalProperty ;
rdfs:label "ha cup collegato per sostituzione" ,
"ha cup collegato per sostituzione"@it ,
"has cup connected for replacement"@en .
### https://w3id.org/italia/onto/OpenCUP/ha_cup_master_collegato
ocup:ha_cup_master_collegato rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf ocup:ha_cup_collegato ;
rdf:type owl:FunctionalProperty ;
rdfs:label "ha cup master collegato"@it ,
"has cup master connected"@en .
### https://w3id.org/italia/onto/OpenCUP/ha_cup_provvisorio_collegato
ocup:ha_cup_provvisorio_collegato rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf ocup:ha_cup_collegato ;
rdf:type owl:FunctionalProperty ,
owl:InverseFunctionalProperty ;
rdfs:label "ha cup provvisorio collegato"@it ,
"has temporary cup attached"@en .
### https://w3id.org/italia/onto/OpenCUP/ha_delega_su_natura_intervento
ocup:ha_delega_su_natura_intervento rdf:type owl:ObjectProperty ;
rdfs:domain ocup:Delega_richiesta_cup ;
rdfs:range ocup:Natura_di_intervento ;
rdfs:label "ha delega su natura intervento"@it ,
"has delegation on the nature of the intervention"@en .
### https://w3id.org/italia/onto/OpenCUP/ha_delegante_richiesta_cup
ocup:ha_delegante_richiesta_cup rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain ocup:Atto_delega_richiesta_cup ;
rdfs:range ocup:Soggetto_titolare_progetto_investimento ;
rdfs:label "ha delegante richiesta cup"@it ,
"has delegating request cup"@en .
### https://w3id.org/italia/onto/OpenCUP/ha_delegato_richiesta_cup
ocup:ha_delegato_richiesta_cup rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain ocup:Atto_delega_richiesta_cup ;
rdfs:range ocup:Soggetto_concentratore ;
rdfs:label "delegated cup request"@en ,
"ha delegato richiesta cup" ,
"ha delegato richiesta cup"@it .
### https://w3id.org/italia/onto/OpenCUP/ha_ente_erogatore_corso_di_formazione
ocup:ha_ente_erogatore_corso_di_formazione rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain ocup:Acquisto_o_realizzazione_corso_di_formazione ;
rdfs:range COV:Organization ;
rdfs:label "ha ente erogatore corso di formazione"@it ,
"has a training course provider"@en .
### https://w3id.org/italia/onto/OpenCUP/ha_ente_realizzatore_progetto_di_ricerca
ocup:ha_ente_realizzatore_progetto_di_ricerca rdf:type owl:ObjectProperty ;
rdfs:domain ocup:Acquisto_o_realizzazione_progetto_di_ricerca ;
rdfs:range COV:Organization ;
rdfs:label "ha ente realizzatore progetto di ricerca"@it ,
"has a research project implementation body"@en .
### https://w3id.org/italia/onto/OpenCUP/ha_finalità_partecipazione_conferimento
ocup:ha_finalità_partecipazione_conferimento rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain ocup:Sottoscrizione_iniziale_o_aumento_di_capitale ;
rdfs:range ocup:Tipo_di_finalità_partecipazione_conferimento ;
rdfs:label "ha finalità partecipazione conferimento"@it ,
"has the purpose of participation and conferral"@en .
### https://w3id.org/italia/onto/OpenCUP/ha_indirizzo_o_riferimento
ocup:ha_indirizzo_o_riferimento rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain ocup:Progetto_di_investimento_pubblico ;
rdfs:range CLV:Address ;
rdfs:label "ha indirizzo o riferimento"@it ,
"has an address or reference"@en .
### https://w3id.org/italia/onto/OpenCUP/ha_intervento_di_investimento_pubblico
ocup:ha_intervento_di_investimento_pubblico rdf:type owl:ObjectProperty ;
rdfs:domain ocup:Progetto_di_investimento_pubblico ;
rdfs:range ocup:Intervento_di_investimento_pubblico ;
rdfs:label "ha intervento di investimento pubblico" ,
"ha intervento di investimento pubblico"@it ,
"has public investment intervention"@en .
### https://w3id.org/italia/onto/OpenCUP/ha_localizzazione
ocup:ha_localizzazione rdf:type owl:ObjectProperty ;
rdfs:range CLV:Address ;
rdfs:label "ha localizzazione"@it ,
"has localization"@en .
### https://w3id.org/italia/onto/OpenCUP/ha_natura_giuridica_soggetto_accreditato
ocup:ha_natura_giuridica_soggetto_accreditato rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain ocup:Soggetto_accreditato_sistema_cup ;
rdfs:range ocup:Tipo_natura_giuridica_soggetto_accreditato ;
rdfs:label "ha natura giuridica soggetto accreditato"@it ,
"has the legal nature of an accredited entity"@en .
### https://w3id.org/italia/onto/OpenCUP/ha_natura_intervento
ocup:ha_natura_intervento rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain ocup:Intervento_di_investimento_pubblico ;
rdfs:range ocup:Natura_di_intervento ;
rdfs:label "ha natura intervento"@it ,
"it has an intervention nature"@en .
### https://w3id.org/italia/onto/OpenCUP/ha_normativa_di_riferimento
ocup:ha_normativa_di_riferimento rdf:type owl:ObjectProperty ;
rdfs:domain ocup:Progetto_di_investimento_pubblico ;
rdfs:range ocup:Norma_di_finanziamento ;
rdfs:label "ha normativa di riferimento"@it ,
"has reference legislation"@en .
### https://w3id.org/italia/onto/OpenCUP/ha_settore_intervento
ocup:ha_settore_intervento rdf:type owl:ObjectProperty ;
rdfs:domain ocup:Intervento_di_investimento_pubblico ;
rdfs:range ocup:Settore_di_intervento ;
rdfs:label "ha settore intervento"@it ,
"has intervention sector"@en .
### https://w3id.org/italia/onto/OpenCUP/ha_soggetto_attuatore
ocup:ha_soggetto_attuatore rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain ocup:Progetto_di_investimento_pubblico ;
rdfs:range ocup:Soggetto_attuatore_interventi_PNRR ;
rdfs:label "ha soggetto attuatore"@it ,
"has an implementing subject"@en .
### https://w3id.org/italia/onto/OpenCUP/ha_soggetto_richiedente_cup
ocup:ha_soggetto_richiedente_cup rdf:type owl:ObjectProperty ;
rdfs:domain ocup:Codice_unico_di_progetto ;
rdfs:range ocup:Soggetto_richiedente_cup ;
rdfs:label "ha soggetto richiedente cup"@it ,
"has a subject requesting the CUP"@en .
### https://w3id.org/italia/onto/OpenCUP/ha_soggetto_titolare
ocup:ha_soggetto_titolare rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain ocup:Progetto_di_investimento_pubblico ;
rdfs:range ocup:Soggetto_titolare_progetto_investimento ;
rdfs:label "ha soggetto titolare" ,
"ha soggetto titolare"@it ,
"has a title holder"@en .
### https://w3id.org/italia/onto/OpenCUP/ha_sottocategoria_soggetto_accreditato
ocup:ha_sottocategoria_soggetto_accreditato rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain ocup:Soggetto_accreditato_sistema_cup ;
rdfs:range ocup:Tipo_sottocategoria_soggetto_accreditato ;
rdfs:label "ha sottocategoria soggetto accreditato" ,
"ha sottocategoria soggetto accreditato"@it ,
"has subcategory accredited subject"@en .
### https://w3id.org/italia/onto/OpenCUP/ha_sottosettore_intervento
ocup:ha_sottosettore_intervento rdf:type owl:ObjectProperty ;
rdfs:domain ocup:Intervento_di_investimento_pubblico ;
rdfs:range ocup:Sottosettore_di_intervento ;
rdfs:label "ha sottosettore intervento"@it ,
"has intervention subsector"@en .
### https://w3id.org/italia/onto/OpenCUP/ha_stato_attivo_di_cup
ocup:ha_stato_attivo_di_cup rdf:type owl:ObjectProperty ;
rdfs:domain ocup:Stato_di_emanazione_di_atto_di_finanziamento ;
rdfs:range ocup:Stato_attivo_di_cup ;
rdfs:label "ha stato attivo di cup"@it ,
"has been active in cup"@en .
### https://w3id.org/italia/onto/OpenCUP/ha_stato_coerente_programma_spesa_di_cup
ocup:ha_stato_coerente_programma_spesa_di_cup rdf:type owl:ObjectProperty ;
rdfs:domain ocup:Stato_di_coerenza_di_atto_di_finanziamento ;
rdfs:range ocup:Stato_coerente_programma_spesa_di_cup ;
rdfs:label "ha stato coerente programma spesa di cup"@it ,
"has been consistent cup spending program"@en .
### https://w3id.org/italia/onto/OpenCUP/ha_stato_corretto_di_cup
ocup:ha_stato_corretto_di_cup rdf:type owl:ObjectProperty ;
rdfs:domain ocup:Stato_di_correttezza_di_atto_di_finanziamento ;
rdfs:range ocup:Stato_corretto_di_cup ;
rdfs:label "ha stato corretto di cup"@it ,
"has been corrected by cup"@en .
### https://w3id.org/italia/onto/OpenCUP/ha_stato_di_atto_di_finanziamento
ocup:ha_stato_di_atto_di_finanziamento rdf:type owl:ObjectProperty ,
owl:InverseFunctionalProperty ;
rdfs:domain ocup:Atto_finanziamento_investimento_pubblico ;
rdfs:range ocup:Stato_di_atto_di_finanziamento ;
rdfs:label "ha stato di atto di finanziamento"@it ,
"has been a financing act"@en .
### https://w3id.org/italia/onto/OpenCUP/ha_stato_di_cup
ocup:ha_stato_di_cup rdf:type owl:ObjectProperty ,
owl:InverseFunctionalProperty ;
rdfs:domain ocup:Codice_unico_di_progetto ;
rdfs:range ocup:Storia_di_cup ;
rdfs:label "ha stato di cup"@it ,
"has been cup"@en .
### https://w3id.org/italia/onto/OpenCUP/ha_strumento_di_programmazione
ocup:ha_strumento_di_programmazione rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain ocup:Progetto_di_investimento_pubblico ;
rdfs:range ocup:Strumento_di_programmazione ;
rdfs:label "ha strumento di programmazione"@it ,
"has programming tool"@en .
### https://w3id.org/italia/onto/OpenCUP/ha_subinvestimento_PNRR
ocup:ha_subinvestimento_PNRR rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain ocup:Progetto_di_investimento_pubblico ;
rdfs:range ocup:Subinvestimento_PNRR ;
rdfs:label "ha subinvestimento PNRR"@it ,
"has PNRR subinvestment"@en .
### https://w3id.org/italia/onto/OpenCUP/ha_target_pnrr
ocup:ha_target_pnrr rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain ocup:Target_PNRR_di_progetto ;
rdfs:range ocup:Target_PNRR ;
rdfs:label "ha target pnrr"@it ,
"has pnrr target"@en .
### https://w3id.org/italia/onto/OpenCUP/ha_target_pnrr_di_progetto
ocup:ha_target_pnrr_di_progetto rdf:type owl:ObjectProperty ,
owl:InverseFunctionalProperty ;
rdfs:domain ocup:Progetto_di_investimento_pubblico ;
rdfs:range ocup:Target_PNRR_di_progetto ;
rdfs:label "ha target pnrr di progetto"@it ,
"has project pnrr target"@en .
### https://w3id.org/italia/onto/OpenCUP/ha_tematica_pnrr_di_riferimento
ocup:ha_tematica_pnrr_di_riferimento rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain ocup:Progetto_di_investimento_pubblico ;
rdfs:range ocup:Tematica_PNRR ;
rdfs:label "ha tematica pnrr di riferimento"@it ,
"has a reference PNRR theme"@en .
### https://w3id.org/italia/onto/OpenCUP/ha_tipologia_copertura_finanziaria
ocup:ha_tipologia_copertura_finanziaria rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain ocup:Progetto_di_investimento_pubblico ;
rdfs:range ocup:Tipologia_copertura_finanziaria ;
rdfs:label "ha tipologia copertura finanziaria"@it ,
"has financial coverage type"@en .
### https://w3id.org/italia/onto/OpenCUP/ha_tipologia_intervento
ocup:ha_tipologia_intervento rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain ocup:Intervento_di_investimento_pubblico ;
rdfs:range ocup:Tipologia_di_intervento ;
rdfs:label "ha tipologia intervento"@it ,
"has type of intervention"@en .
### https://w3id.org/italia/onto/OpenCUP/ha_tipologia_per_natura
ocup:ha_tipologia_per_natura rdf:type owl:ObjectProperty ;
rdfs:domain ocup:Natura_di_intervento ;
rdfs:range ocup:Tipologia_di_intervento ;
rdfs:label "ha tipologia per natura"@it ,
"has typology by nature"@en .
### https://w3id.org/italia/onto/OpenCUP/ha_utente_conferente_delega
ocup:ha_utente_conferente_delega rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain ocup:Atto_delega_richiesta_cup ;
rdfs:range ocup:Utente_riferimento_cup ,
[ rdf:type owl:Restriction ;
owl:onProperty [ owl:inverseOf ocup:ha_utente_riferimento_titolare_delegante
] ;
owl:someValuesFrom owl:Thing
] ;
rdfs:label "ha utente conferente delega"@it ,
"has user conferring delegation"@en .
### https://w3id.org/italia/onto/OpenCUP/ha_utente_richiedente_cup
ocup:ha_utente_richiedente_cup rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain ocup:Codice_unico_di_progetto ;
rdfs:range ocup:Utente_richiedente_cup ;
rdfs:label "ha utente richiedente cup"@it ,
"has user requesting cup"@en .
### https://w3id.org/italia/onto/OpenCUP/ha_utente_riferimento_concentratore
ocup:ha_utente_riferimento_concentratore rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain ocup:Delega_richiesta_cup ;
rdfs:range ocup:Utente_riferimento_cup ;
rdfs:label "ha utente riferimento concentratore"@it ,
"has user reference concentrator"@en .
### https://w3id.org/italia/onto/OpenCUP/ha_utente_riferimento_cup
ocup:ha_utente_riferimento_cup rdf:type owl:ObjectProperty ;
rdfs:domain ocup:Codice_unico_di_progetto ;
rdfs:range ocup:Utente_riferimento_cup ;
rdfs:label "ha utente riferimento cup"@it ,
"has user reference cup"@en .
### https://w3id.org/italia/onto/OpenCUP/ha_utente_riferimento_titolare_delegante
ocup:ha_utente_riferimento_titolare_delegante rdf:type owl:ObjectProperty ;
rdfs:domain ocup:Delega_richiesta_cup ;
rdfs:range ocup:Utente_riferimento_cup ;
rdfs:label "ha utente riferimento titolare delegante"@it ,
"has user reference owner delegating"@en .
### https://w3id.org/italia/onto/OpenCUP/prevede_subinvestimento_pnrr
ocup:prevede_subinvestimento_pnrr rdf:type owl:ObjectProperty ;
rdfs:domain ocup:Tematica_PNRR ;
rdfs:range ocup:Subinvestimento_PNRR ;
rdfs:label "prevede sub-investimento pnrr" ,
"prevede sub-investimento pnrr"@it ,
"provides for sub-investment of the National Research Council (PNRR)"@en .
### https://w3id.org/italia/onto/OpenCUP/prevede_target_pnrr
ocup:prevede_target_pnrr rdf:type owl:ObjectProperty ;
rdfs:domain ocup:Subinvestimento_PNRR ;
rdfs:range ocup:Target_PNRR ;
rdfs:label "prevede target pnrr"@it ,
"provides for PNRR targets"@en .
### https://w3id.org/italia/onto/OpenCUP/riferisce_cup
ocup:riferisce_cup rdf:type owl:ObjectProperty ;
rdfs:domain ocup:Atto_finanziamento_investimento_pubblico ;
rdfs:range ocup:Codice_unico_di_progetto ;
rdfs:label "cup reports"@en ,
"riferisce cup"@it .
### https://w3id.org/italia/onto/OpenCUP/sostituisce_utente_sistema_cup
ocup:sostituisce_utente_sistema_cup rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ,
owl:InverseFunctionalProperty ;
rdfs:domain ocup:Utente_sistema_cup ;
rdfs:range ocup:Utente_sistema_cup ;
rdfs:label "replaces user cup system"@en ,
"sostituisce utente sistema cup" ,
"sostituisce utente sistema cup"@it .
### https://w3id.org/italia/onto/RO/holdsRoleInTime
RO:holdsRoleInTime rdf:type owl:ObjectProperty .
### https://w3id.org/italia/onto/SM/hasOnlineContactPoint
SM:hasOnlineContactPoint rdf:type owl:ObjectProperty .
### https://w3id.org/italia/onto/l0/directlyPrecedes
L0:directlyPrecedes rdf:type owl:ObjectProperty .
### https://w3id.org/italia/onto/l0/hasLastMember
L0:hasLastMember rdf:type owl:ObjectProperty .
### https://w3id.org/italia/onto/l0/hasMember
L0:hasMember rdf:type owl:ObjectProperty .
#################################################################
# Data properties
#################################################################
### https://w3id.org/italia/onto/OpenCUP/ambito_di_delega
ocup:ambito_di_delega rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain ocup:Delega_richiesta_cup ;
rdfs:range xsd:string ;
rdfs:label "ambito di delega"@it ,
"scope of delegation"@en .
### https://w3id.org/italia/onto/OpenCUP/anno_delibera_cipe
ocup:anno_delibera_cipe rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain ocup:Progetto_di_investimento_pubblico ;
rdfs:range xsd:integer ;
rdfs:label "anno delibera cipe"@it ,
"year of CIPE resolution"@en .
### https://w3id.org/italia/onto/OpenCUP/anno_di_decisione
ocup:anno_di_decisione rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain ocup:Progetto_di_investimento_pubblico ;
rdfs:range xsd:integer ;
rdfs:label "anno di decisione"@it ,
"year of decision"@en .
### https://w3id.org/italia/onto/OpenCUP/anno_pubblicazione_norma
ocup:anno_pubblicazione_norma rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain ocup:Norma_di_finanziamento ;
rdfs:range xsd:integer ;
rdfs:label "anno pubblicazione norma" ,
"anno pubblicazione norma"@it ,
"year of publication of the standard"@en .
### https://w3id.org/italia/onto/OpenCUP/articolo_norma
ocup:articolo_norma rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain ocup:Norma_di_finanziamento ;
rdfs:range xsd:string ;
rdfs:label "article norm"@en ,
"articolo norma"@it .
### https://w3id.org/italia/onto/OpenCUP/avviso_accettazione_regole_delega
ocup:avviso_accettazione_regole_delega rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain ocup:Delega_richiesta_cup ;
rdfs:range xsd:boolean ;
rdfs:label "Notice of acceptance of delegation rules"@en ,
"avviso accettazione regole delega"@it .
### https://w3id.org/italia/onto/OpenCUP/avviso_infrastruttura_singola_multipla
ocup:avviso_infrastruttura_singola_multipla rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain ocup:Realizzazione_di_lavori_pubblici ;
rdfs:range xsd:boolean ;
rdfs:label "Single-multiple infrastructure warning"@en ,
"avviso infrastruttura singola multipla" ,
"avviso infrastruttura singola multipla"@it .
### https://w3id.org/italia/onto/OpenCUP/avviso_legge_obiettivo
ocup:avviso_legge_obiettivo rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain ocup:Progetto_di_investimento_pubblico ;
rdfs:range xsd:boolean ;
rdfs:label "avviso legge obiettivo" ,
"avviso legge obiettivo"@it ,
"objective law notice"@en .
### https://w3id.org/italia/onto/OpenCUP/bene_acquistato
ocup:bene_acquistato rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain ocup:Acquisto_di_beni ;
rdfs:range xsd:string ;
rdfs:label "bene acquistato"@it ,
"purchased property"@en .
### https://w3id.org/italia/onto/OpenCUP/codifica_locale_progetto
ocup:codifica_locale_progetto rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain ocup:Progetto_di_investimento_pubblico ;
rdfs:range xsd:string ;
rdfs:label "codifica locale progetto"@it ,
"local project coding"@en .
### https://w3id.org/italia/onto/OpenCUP/comma_articolo_norma
ocup:comma_articolo_norma rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain ocup:Norma_di_finanziamento ;
rdfs:range xsd:string ;
rdfs:label "comma articolo norma"@it ,
"paragraph article rule"@en .
### https://w3id.org/italia/onto/OpenCUP/compensi_contributi_sponsorizzazioni_da_privati
ocup:compensi_contributi_sponsorizzazioni_da_privati rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain ocup:Intervento_di_investimento_pubblico ;
rdfs:range ocup:valore_compensi_contributi_sponsorizzazioni_da_privati ;
rdfs:label "compensation contributions sponsorships from private individuals"@en ,
"compensi contributi sponsorizzazioni da privati"@it .
### https://w3id.org/italia/onto/OpenCUP/costo_del_progetto
ocup:costo_del_progetto rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain ocup:Progetto_di_investimento_pubblico ;
rdfs:range xsd:integer ;
rdfs:label "costo del progetto"@it ,
"project cost"@en .
### https://w3id.org/italia/onto/OpenCUP/data_atto
ocup:data_atto rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain ocup:Atto ;
rdfs:range xsd:dateTime ;
rdfs:label "data atto"@it ,
"date of deed"@en .
### https://w3id.org/italia/onto/OpenCUP/data_chiusura_prevista
ocup:data_chiusura_prevista rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain ocup:Progetto_di_investimento_pubblico ;
rdfs:range xsd:dateTime ;
rdfs:label "data chiusura prevista"@it ,
"expected closing date"@en .
### https://w3id.org/italia/onto/OpenCUP/data_generazione_cup
ocup:data_generazione_cup rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain ocup:Codice_unico_di_progetto ;
rdfs:range xsd:dateTime ;
rdfs:label "cup generation data"@en ,
"data generazione cup" ,
"data generazione cup"@it .
### https://w3id.org/italia/onto/OpenCUP/data_raggiungimento_target_di_progetto
ocup:data_raggiungimento_target_di_progetto rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain ocup:Target_PNRR_di_progetto ;
rdfs:range xsd:dateTime ;
rdfs:label "data raggiungimento target di progetto"@it ,
"project target achievement date"@en .
### https://w3id.org/italia/onto/OpenCUP/denominazione_corso_di_formazione
ocup:denominazione_corso_di_formazione rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf L0:name ;
rdf:type owl:FunctionalProperty ;
rdfs:label "denominazione corso di formazione"@it ,
"training course name"@en .
### https://w3id.org/italia/onto/OpenCUP/denominazione_progetto_di_ricerca
ocup:denominazione_progetto_di_ricerca rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf L0:name ;
rdf:type owl:FunctionalProperty ;
rdfs:label "denominazione progetto di ricerca" ,
"denominazione progetto di ricerca"@it ,
"research project name"@en .
### https://w3id.org/italia/onto/OpenCUP/finanza_di_progetto
ocup:finanza_di_progetto rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain ocup:Intervento_di_investimento_pubblico ;
rdfs:range ocup:valore_finanza_di_progetto ;
rdfs:label "finanza di progetto"@it ,
"project finance"@en .
### https://w3id.org/italia/onto/OpenCUP/identificativo_atto
ocup:identificativo_atto rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain ocup:Atto ;
rdfs:range xsd:string ;
rdfs:label "deed identifier"@en ,
"identificativo atto"@it .
### https://w3id.org/italia/onto/OpenCUP/importo_finanziamento_pubblico
ocup:importo_finanziamento_pubblico rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain ocup:Progetto_di_investimento_pubblico ;
rdfs:range xsd:decimal ;
rdfs:label "amount of public funding"@en ,
"importo finanziamento pubblico"@it .
### https://w3id.org/italia/onto/OpenCUP/infrastruttura_di_progetto
ocup:infrastruttura_di_progetto rdf:type owl:DatatypeProperty ;
rdfs:domain ocup:Intervento_di_investimento_pubblico ;
rdfs:range xsd:string ;
rdfs:label "infrastruttura di progetto" ,
"infrastruttura di progetto"@it ,
"project infrastructure"@en .
### https://w3id.org/italia/onto/OpenCUP/infrastruttura_interessata_dal_progetto
ocup:infrastruttura_interessata_dal_progetto rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf ocup:infrastruttura_di_progetto ;
rdf:type owl:FunctionalProperty ;
rdfs:label "infrastructure affected by the project"@en ,
"infrastruttura interessata dal progetto"@it .
### https://w3id.org/italia/onto/OpenCUP/modalità_corso_di_formazione
ocup:modalità_corso_di_formazione rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf L0:description ;
rdf:type owl:FunctionalProperty ;
rdfs:label "modalità corso di formazione"@it ,
"training course mode"@en .
### https://w3id.org/italia/onto/OpenCUP/numero_delibera_cipe
ocup:numero_delibera_cipe rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain ocup:Progetto_di_investimento_pubblico ;
rdfs:range xsd:string ;
rdfs:label "CIPE resolution number"@en ,
"numero delibera cipe" ,
"numero delibera cipe"@it .
### https://w3id.org/italia/onto/OpenCUP/numero_norma
ocup:numero_norma rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain ocup:Norma_di_finanziamento ;
rdfs:range xsd:string ;
rdfs:label "numero norma"@it ,
"standard number"@en .
### https://w3id.org/italia/onto/OpenCUP/obiettivo_corso_di_formazione
ocup:obiettivo_corso_di_formazione rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf L0:description ;
rdf:type owl:FunctionalProperty ;
rdfs:label "obiettivo corso di formazione"@it ,
"training course objective"@en .
### https://w3id.org/italia/onto/OpenCUP/oggetto_progettuale
ocup:oggetto_progettuale rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf ocup:infrastruttura_di_progetto ;
rdf:type owl:FunctionalProperty ;
rdfs:label "oggetto progettuale"@it ,
"project object"@en .
### https://w3id.org/italia/onto/OpenCUP/opera_infrastruttura_progetto
ocup:opera_infrastruttura_progetto rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf ocup:infrastruttura_di_progetto ;
rdf:type owl:FunctionalProperty ;
rdfs:label "infrastructure project work"@en ,
"opera infrastruttura progetto"@it .
### https://w3id.org/italia/onto/OpenCUP/ragione_collegamento_master
ocup:ragione_collegamento_master rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain ocup:Cup_master ;
rdfs:range xsd:string ;
rdfs:label "master connection reason"@en ,
"ragione collegamento master"@it .
### https://w3id.org/italia/onto/OpenCUP/scopo_intervento_cumulativo
ocup:scopo_intervento_cumulativo rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf L0:description ;
rdf:type owl:FunctionalProperty ;
rdfs:label "cumulative intervention purpose"@en ,
"scopo intervento cumulativo"@it .
### https://w3id.org/italia/onto/OpenCUP/servizio_acquistato_realizzato
ocup:servizio_acquistato_realizzato rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf L0:description ;
rdf:type owl:FunctionalProperty ;
rdfs:label "purchased service completed"@en ,
"servizio acquistato realizzato" ,
"servizio acquistato realizzato"@it .
### https://w3id.org/italia/onto/OpenCUP/tipo_norma
ocup:tipo_norma rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain ocup:Norma_di_finanziamento ;