-
Notifications
You must be signed in to change notification settings - Fork 3
/
servicio.owl
executable file
·1134 lines (685 loc) · 59.7 KB
/
servicio.owl
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
<?xml version="1.0"?>
<rdf:RDF xmlns="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#"
xml:base="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio"
xmlns:schema="http://schema.org/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:geonames="http://www.geonames.org/ontology#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:esproc="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
xmlns:dbpedia="http://dbpedia.org/ontology/"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:vcard="http://www.w3.org/2006/vcard/ns#"
xmlns:geosparql="http://www.opengis.net/ont/geosparql#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:xml="http://www.w3.org/XML/1998/namespace"
xmlns:dctype="http://purl.org/dc/dcmitype/"
xmlns:dcterms="http://purl.org/dc/terms/"
xmlns:esadm="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/territorio#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:foaf="http://xmlns.com/foaf/0.1/"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<owl:Ontology rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio">
<owl:versionIRI rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio/0.1"/>
<owl:imports rdf:resource="http://purl.org/vocab/cpsv"/>
<rdfs:comment xml:lang="es">Este vocabulario se utiliza para la descripción de procedimientos administrativos ofrecidos por un ayuntamiento. Reutiliza términos de varios vocabularios, como:
- schema.org
- CPSV (Core Public Service Vocabulary)
- Unidades territoriales en España
Asimismo, se actualizará de acuerdo con la evolución de estos vocabularios (especialmente los que están en pleno desarrollo en el momento de creación de este vocabulario, como el vocabulario sobre unidades territoriales en España).
</rdfs:comment>
<dcterms:hasFormat rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio.html"/>
<dc:identifier rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio</dc:identifier>
<dcterms:description xml:lang="es">Este vocabulario se utiliza para la descripción de procedimientos administrativos ofrecidos por un ayuntamiento. Reutiliza términos de varios vocabularios, como:
- schema.org
- CPSV (Core Public Service Vocabulary)
- Unidades territoriales en España
Asimismo, se actualizará de acuerdo con la evolución de estos vocabularios (especialmente los que están en pleno desarrollo en el momento de creación de este vocabulario, como el vocabulario sobre unidades territoriales en España).</dcterms:description>
<cc:license rdf:resource="http://creativecommons.org/licenses/by/4.0/"/>
<dcterms:issued>2016-07-28</dcterms:issued>
<dc:date>2019-06-16</dc:date>
<dcterms:hasFormat rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio.rdf"/>
<dc:rights>Creative Commons Attribution 4.0 International (CC BY 4.0)</dc:rights>
<dc:creator>Freddy Priyatna (Ontology Engineering Group, Universidad Politécnica de Madrid)</dc:creator>
<vann:preferredNamespaceUri rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#"/>
<dc:creator>Oscar Corcho (Ontology Engineering Group, Universidad Politécnica de Madrid)</dc:creator>
<dc:title xml:lang="es">Vocabulario para la representación de procedimientos administrativos ofrecidos por un ayuntamiento</dc:title>
<dc:creator>Víctor Morlán (Ayuntamiento de Zaragoza)</dc:creator>
<dc:creator>María Jesús Fernández Ruiz (Ayuntamiento de Zaragoza)</dc:creator>
</owl:Ontology>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.org/dc/terms/issued -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/issued"/>
<!-- http://www.w3.org/2000/01/rdf-schema#comment -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2000/01/rdf-schema#comment"/>
<!-- http://www.w3.org/2000/01/rdf-schema#isDefinedBy -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2000/01/rdf-schema#isDefinedBy"/>
<!-- http://www.w3.org/2000/01/rdf-schema#label -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2000/01/rdf-schema#label"/>
<!-- http://www.w3.org/2002/07/owl#topDataProperty -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2002/07/owl#topDataProperty">
<rdfs:domain rdf:resource="http://purl.org/vocab/cpsv#PublicService"/>
</owl:AnnotationProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.org/vocab/cpsv#hasChannel -->
<owl:ObjectProperty rdf:about="http://purl.org/vocab/cpsv#hasChannel"/>
<!-- http://purl.org/vocab/cpsv#hasInput -->
<rdf:Description rdf:about="http://purl.org/vocab/cpsv#hasInput">
<rdfs:domain rdf:resource="http://purl.org/vocab/cpsv#PublicService"/>
</rdf:Description>
<!-- http://purl.org/vocab/cpsv#physicallyAvailableAt -->
<rdf:Description rdf:about="http://purl.org/vocab/cpsv#physicallyAvailableAt">
<rdfs:subPropertyOf rdf:resource="http://purl.org/vocab/cpsv#hasChannel"/>
</rdf:Description>
<!-- http://purl.org/vocab/cpsv#provides -->
<rdf:Description rdf:about="http://purl.org/vocab/cpsv#provides">
<owl:inverseOf rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#proporcionadoPor"/>
</rdf:Description>
<!-- http://purl.org/vocab/cpsv#uses -->
<rdf:Description rdf:about="http://purl.org/vocab/cpsv#uses">
<owl:inverseOf rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#usadoPor"/>
</rdf:Description>
<!-- http://schema.org/acceptedAnswer -->
<owl:ObjectProperty rdf:about="http://schema.org/acceptedAnswer"/>
<!-- http://schema.org/question -->
<owl:ObjectProperty rdf:about="http://schema.org/question"/>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#claseIniciacion -->
<owl:ObjectProperty rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#claseIniciacion">
<rdfs:domain rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#Procedimiento"/>
<rdfs:comment xml:lang="en">To be completed</rdfs:comment>
</owl:ObjectProperty>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#claseTerminacion -->
<owl:ObjectProperty rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#claseTerminacion">
<rdfs:domain rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#Procedimiento"/>
<rdfs:comment xml:lang="en">To be completed</rdfs:comment>
</owl:ObjectProperty>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#correoDocumentacion -->
<owl:ObjectProperty rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#correoDocumentacion">
<rdfs:subPropertyOf rdf:resource="http://purl.org/vocab/cpsv#hasInput"/>
<rdfs:domain rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#ProcedimientoPorCorreo"/>
<rdfs:range rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#DocumentacionEntrada"/>
<rdfs:comment xml:lang="en">This property links a postal mail based Public Service with its inputs/requirements.</rdfs:comment>
</owl:ObjectProperty>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#destino -->
<owl:ObjectProperty rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#destino">
<rdfs:subPropertyOf rdf:resource="http://purl.org/vocab/cpsv#hasChannel"/>
<rdfs:domain rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#Procedimiento"/>
<rdfs:range rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#CentroServicio"/>
<rdfs:comment xml:lang="en">This property links a Public Service to an organization in which the Public Service should be addressed to.</rdfs:comment>
</owl:ObjectProperty>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#detalleTramitacionCorreoPostal -->
<owl:ObjectProperty rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#detalleTramitacionCorreoPostal">
<rdfs:subPropertyOf rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#normativa"/>
<rdfs:domain rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#ProcedimientoPorCorreo"/>
<rdfs:range rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#ProcedimientoProceso"/>
<rdfs:comment xml:lang="en">The detalleTramitacionCorreoPostal property links a postal mail based service to the Rule(s) under which it operates.</rdfs:comment>
</owl:ObjectProperty>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#detalleTramitacionEnLinea -->
<owl:ObjectProperty rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#detalleTramitacionEnLinea">
<rdfs:subPropertyOf rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#normativa"/>
<rdfs:domain rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#ProcedimientoPorEnLinea"/>
<rdfs:range rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#ProcedimientoProceso"/>
<rdfs:comment xml:lang="en">The detalleTramitacionEnLinea property links an online-based service to the Rule(s) under which it operates.</rdfs:comment>
</owl:ObjectProperty>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#detalleTramitacionPresencial -->
<owl:ObjectProperty rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#detalleTramitacionPresencial">
<rdfs:subPropertyOf rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#normativa"/>
<rdfs:domain rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#ProcedimientoPorPresencial"/>
<rdfs:range rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#ProcedimientoProceso"/>
<rdfs:comment xml:lang="en">The detalleTramitacionPresencial property links a presence-based service to the Rule(s) under which it operates.</rdfs:comment>
</owl:ObjectProperty>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#detalleTramitacionTelefono -->
<owl:ObjectProperty rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#detalleTramitacionTelefono">
<rdfs:subPropertyOf rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#normativa"/>
<rdfs:domain rdf:resource="http://purl.org/vocab/cpsv#PublicService"/>
<rdfs:range rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#ProcedimientoProceso"/>
<rdfs:comment xml:lang="en">The detalleTramitacionEnLinea property links a telephone-based service to the Rule(s) under which it operates.</rdfs:comment>
</owl:ObjectProperty>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#dirigidoPor -->
<owl:ObjectProperty rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#dirigidoPor">
<rdfs:subPropertyOf rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#usadoPor"/>
<rdfs:domain rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#Procedimiento"/>
<rdfs:range rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#DestinadoProcedimiento"/>
<rdfs:comment xml:lang="en">This property links a Public Service with an Entity that directs it</rdfs:comment>
</owl:ObjectProperty>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#enLineaDocumentacion -->
<owl:ObjectProperty rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#enLineaDocumentacion">
<rdfs:subPropertyOf rdf:resource="http://purl.org/vocab/cpsv#hasInput"/>
<rdfs:domain rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#ProcedimientoPorEnLinea"/>
<rdfs:range rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#DocumentacionEntrada"/>
<rdfs:comment xml:lang="en">This property links an online-based Public Service with its inputs/requirements.</rdfs:comment>
</owl:ObjectProperty>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#enLineaURL -->
<owl:ObjectProperty rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#enLineaURL">
<rdfs:subPropertyOf rdf:resource="http://purl.org/vocab/cpsv#hasChannel"/>
<rdfs:domain rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#Procedimiento"/>
<rdfs:comment xml:lang="en">This property links a online-based PublicService with its URL</rdfs:comment>
</owl:ObjectProperty>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#impreso -->
<owl:ObjectProperty rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#impreso">
<rdfs:subPropertyOf rdf:resource="http://purl.org/vocab/cpsv#hasInput"/>
<rdfs:domain rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#Procedimiento"/>
<rdfs:range rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#Impreso"/>
<rdfs:comment xml:lang="en">This property links a Public Service with its applications forms.</rdfs:comment>
</owl:ObjectProperty>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#info -->
<owl:ObjectProperty rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#info">
<rdfs:subPropertyOf rdf:resource="http://purl.org/vocab/cpsv#hasChannel"/>
<rdfs:domain rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#Procedimiento"/>
<rdfs:range rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#CentroServicio"/>
<rdfs:comment xml:lang="en">This property links a Public Service with the organization that provide information for the corresponding Public Service.</rdfs:comment>
</owl:ObjectProperty>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#lugarPago -->
<owl:ObjectProperty rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#lugarPago">
<rdfs:subPropertyOf rdf:resource="http://purl.org/vocab/cpsv#hasChannel"/>
<rdfs:domain rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#Procedimiento"/>
<rdfs:range rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#CentroServicio"/>
<dcterms:issued>2016-07-28</dcterms:issued>
<rdfs:comment xml:lang="es">Lugar de pago del procedimiento, en caso de tener que realizar pago</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio"/>
<rdfs:label xml:lang="es">lugar de pago</rdfs:label>
</owl:ObjectProperty>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#lugarPresentacion -->
<owl:ObjectProperty rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#lugarPresentacion">
<rdfs:subPropertyOf rdf:resource="http://purl.org/vocab/cpsv#hasChannel"/>
<rdfs:domain rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#Procedimiento"/>
<rdfs:range rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#CentroServicio"/>
<rdfs:comment xml:lang="en">This property links a Public Service with the organization to which the application is to be presented.</rdfs:comment>
</owl:ObjectProperty>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#materiaDePregunta -->
<owl:ObjectProperty rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#materiaDePregunta">
<rdfs:domain rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#Pregunta"/>
<rdfs:range rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#Materia"/>
<rdfs:comment xml:lang="en">To be completed</rdfs:comment>
</owl:ObjectProperty>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#normativa -->
<owl:ObjectProperty rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#normativa">
<rdfs:subPropertyOf rdf:resource="http://purl.org/vocab/cpsv#follows"/>
<rdfs:domain rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#Procedimiento"/>
<rdfs:comment xml:lang="en">The normativa property links a Public Service to a Rule</rdfs:comment>
</owl:ObjectProperty>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#organo -->
<owl:ObjectProperty rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#organo">
<rdfs:subPropertyOf rdf:resource="http://purl.org/vocab/cpsv#hasChannel"/>
<rdfs:domain rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#Procedimiento"/>
<rdfs:range rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#GestorDecisor"/>
<rdfs:comment xml:lang="en">To be completed</rdfs:comment>
</owl:ObjectProperty>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#otroLugarPresentacion -->
<owl:ObjectProperty rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#otroLugarPresentacion">
<rdfs:subPropertyOf rdf:resource="http://purl.org/vocab/cpsv#hasChannel"/>
<rdfs:domain rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#Procedimiento"/>
<rdfs:range rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#CentroServicio"/>
<rdfs:comment xml:lang="en">This property links a Public Service with the organization to which the application is to be presented.</rdfs:comment>
</owl:ObjectProperty>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#pregunta -->
<owl:ObjectProperty rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#pregunta">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#Materia"/>
<rdf:Description rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#Pregunta"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
<rdfs:range rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#Pregunta"/>
<rdfs:comment xml:lang="en">This property links a Public Service to the question associated to the service.</rdfs:comment>
</owl:ObjectProperty>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#preguntaDeMateria -->
<owl:ObjectProperty rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#preguntaDeMateria">
<rdfs:subPropertyOf rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#pregunta"/>
<rdfs:domain rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#Materia"/>
<rdfs:range rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#Pregunta"/>
</owl:ObjectProperty>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#preguntaDeProcedimiento -->
<owl:ObjectProperty rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#preguntaDeProcedimiento">
<rdfs:subPropertyOf rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#pregunta"/>
<rdfs:domain rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#Procedimiento"/>
<rdfs:range rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#Pregunta"/>
</owl:ObjectProperty>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#presencialDocumentacion -->
<owl:ObjectProperty rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#presencialDocumentacion">
<rdfs:subPropertyOf rdf:resource="http://purl.org/vocab/cpsv#hasInput"/>
<rdfs:domain rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#ProcedimientoPorPresencial"/>
<rdfs:range rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#DocumentacionEntrada"/>
<rdfs:comment xml:lang="en">This property links a presence-based Public Service with its inputs/requirements.</rdfs:comment>
</owl:ObjectProperty>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#presentar -->
<owl:ObjectProperty rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#presentar">
<rdfs:subPropertyOf rdf:resource="http://purl.org/vocab/cpsv#hasChannel"/>
<rdfs:domain rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#Procedimiento"/>
<rdfs:range rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#CentroServicio"/>
<rdfs:comment xml:lang="en">The organization in which the application for a Public Service is to be presented.</rdfs:comment>
</owl:ObjectProperty>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#procedimientoDeMateria -->
<owl:ObjectProperty rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#procedimientoDeMateria">
<rdfs:domain rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#Materia"/>
<rdfs:range rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#Procedimiento"/>
<rdfs:comment xml:lang="en">To be completed</rdfs:comment>
</owl:ObjectProperty>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#proporcionadoPor -->
<owl:ObjectProperty rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#proporcionadoPor">
<rdfs:domain rdf:resource="http://purl.org/vocab/cpsv#PublicService"/>
<rdfs:range rdf:resource="http://purl.org/dc/terms/Agent"/>
<rdfs:comment xml:lang="en">this property is the inverse of cpsv:provides.</rdfs:comment>
</owl:ObjectProperty>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#realizacion -->
<owl:ObjectProperty rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#realizacion">
<rdfs:subPropertyOf rdf:resource="http://purl.org/vocab/cpsv#hasChannel"/>
<rdfs:domain rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#Procedimiento"/>
<rdfs:range rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#CentroServicio"/>
<rdfs:comment xml:lang="en">This property links a PublicService with the places/organization in which the service is realized.</rdfs:comment>
</owl:ObjectProperty>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#recursoProcede -->
<owl:ObjectProperty rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#recursoProcede">
<rdfs:domain rdf:resource="http://purl.org/vocab/cpsv#PublicService"/>
<rdfs:range rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#Recurso"/>
<rdfs:comment xml:lang="en">To be completed</rdfs:comment>
</owl:ObjectProperty>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#respuestaAceptada -->
<owl:ObjectProperty rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#respuestaAceptada">
<rdfs:subPropertyOf rdf:resource="http://schema.org/acceptedAnswer"/>
<rdfs:domain rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#Pregunta"/>
<rdfs:range rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#Respuesta"/>
<rdfs:comment xml:lang="en">Defined as a subproperty of schema:acceptedAnswer, this property links a question (essrvc:Pregunta) with its answer (essrvc:Respuesta)</rdfs:comment>
</owl:ObjectProperty>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#telefonoDocumentacion -->
<owl:ObjectProperty rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#telefonoDocumentacion">
<rdfs:subPropertyOf rdf:resource="http://purl.org/vocab/cpsv#hasInput"/>
<rdfs:domain rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#ProcedimientoPorTelefono"/>
<rdfs:range rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#DocumentacionEntrada"/>
<rdfs:comment xml:lang="en">This property links a telephone-based Public Service with its inputs/requirements.</rdfs:comment>
</owl:ObjectProperty>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#tipoProcedimiento -->
<owl:ObjectProperty rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#tipoProcedimiento">
<rdfs:domain rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#Procedimiento"/>
<rdfs:range rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#TipoProcedimiento"/>
<rdfs:comment xml:lang="en">this property links a Public Service with the type of the Public Service.</rdfs:comment>
</owl:ObjectProperty>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#tipoVia -->
<owl:ObjectProperty rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#tipoVia">
<rdfs:domain rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#Via"/>
<rdfs:range rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<dcterms:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2014-03-28</dcterms:issued>
<rdfs:comment xml:lang="es">Tipo de vía, que será representado mediante la clasificación en SKOS de URI http://vocab.linkeddata.es/datosabiertos/kos/urbanismo-infraestructuras/tipo-via.
Por ejemplo, estas serán las URIs correspondientes a calles y plazas
http://vocab.linkeddata.es/datosabiertos/kos/urbanismo-infraestructuras/tipo-via/CL
http://vocab.linkeddata.es/datosabiertos/kos/urbanismo-infraestructuras/tipo-via/PL</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio"/>
<rdfs:label xml:lang="es">tipo de vía</rdfs:label>
</owl:ObjectProperty>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#usadoPor -->
<owl:ObjectProperty rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#usadoPor">
<rdfs:domain rdf:resource="http://purl.org/vocab/cpsv#PublicService"/>
<rdfs:range rdf:resource="http://purl.org/dc/terms/Agent"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">This property is the inverse of cpsv:uses property.
This property link a PublicService to an Agent via a "used-by" relationship.</rdfs:label>
</owl:ObjectProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Data properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#claseIniciacionTexto -->
<owl:DatatypeProperty rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#claseIniciacionTexto">
<rdfs:domain rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#Procedimiento"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:comment xml:lang="en">to be completed.</rdfs:comment>
</owl:DatatypeProperty>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#claseTerminacionTexto -->
<owl:DatatypeProperty rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#claseTerminacionTexto">
<rdfs:domain rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#Procedimiento"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:comment xml:lang="en">to be completed.</rdfs:comment>
</owl:DatatypeProperty>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#correoDocumentacionTexto -->
<owl:DatatypeProperty rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#correoDocumentacionTexto">
<rdfs:subPropertyOf rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#hasInputTexto"/>
<rdfs:domain rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#ProcedimientoPorCorreo"/>
<rdfs:comment xml:lang="en">This property links a postal mail based Public Service with its inputs/requirements (in string format).</rdfs:comment>
</owl:DatatypeProperty>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#detalleTramitacionCorreoPostalTexto -->
<owl:DatatypeProperty rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#detalleTramitacionCorreoPostalTexto">
<rdfs:subPropertyOf rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#followsTexto"/>
<rdfs:domain rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#ProcedimientoPorCorreo"/>
<rdfs:comment xml:lang="en">This property links a postal-mail based PublicService with the rules that it follows (in text format).</rdfs:comment>
</owl:DatatypeProperty>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#detalleTramitacionEnLineaTexto -->
<owl:DatatypeProperty rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#detalleTramitacionEnLineaTexto">
<rdfs:subPropertyOf rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#followsTexto"/>
<rdfs:domain rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#ProcedimientoPorEnLinea"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:comment xml:lang="en">This property links an online-based PublicService with the rules that it follows (in text format).</rdfs:comment>
</owl:DatatypeProperty>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#detalleTramitacionPresencialTexto -->
<owl:DatatypeProperty rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#detalleTramitacionPresencialTexto">
<rdfs:subPropertyOf rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#followsTexto"/>
<rdfs:domain rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#ProcedimientoPorPresencial"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:comment xml:lang="en">This property links a presencial-based PublicService with the rules that it follows (in text format).</rdfs:comment>
</owl:DatatypeProperty>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#detalleTramitacionTelefonoTexto -->
<owl:DatatypeProperty rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#detalleTramitacionTelefonoTexto">
<rdfs:subPropertyOf rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#followsTexto"/>
<rdfs:domain rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#ProcedimientoPorTelefono"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:comment xml:lang="en">This property links a telefone-based PublicService with the rules that it follows (in text format).</rdfs:comment>
</owl:DatatypeProperty>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#efectoSilencioAdministrativo -->
<owl:DatatypeProperty rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#efectoSilencioAdministrativo">
<rdfs:comment xml:lang="en">situation that occurs if there is no response from the entity who is in charge with a Public Service.</rdfs:comment>
</owl:DatatypeProperty>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#enLineaDocumentacionTexto -->
<owl:DatatypeProperty rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#enLineaDocumentacionTexto">
<rdfs:subPropertyOf rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#hasInputTexto"/>
<rdfs:domain rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#ProcedimientoPorEnLinea"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:comment xml:lang="en">This property links an online-based Public Service with its inputs/requirements (in string format).</rdfs:comment>
</owl:DatatypeProperty>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#fechaPlazoFin -->
<owl:DatatypeProperty rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#fechaPlazoFin">
<rdfs:domain rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#Procedimiento"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#dateTime"/>
<rdfs:comment xml:lang="en">This property represents the deadline to terminate a public service.</rdfs:comment>
</owl:DatatypeProperty>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#fechaPlazoInicio -->
<owl:DatatypeProperty rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#fechaPlazoInicio">
<rdfs:domain rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#Procedimiento"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#dateTime"/>
<rdfs:comment xml:lang="en">This property represent the deadline to start a Public Service.</rdfs:comment>
</owl:DatatypeProperty>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#fechaPresentacion -->
<owl:DatatypeProperty rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#fechaPresentacion">
<rdfs:domain rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#Procedimiento"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#dateTime"/>
<dcterms:issued>2016-07-28</dcterms:issued>
<rdfs:comment xml:lang="es">fecha en la que se deben presentar las solicitudes (en formato fecha)</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio"/>
<rdfs:label xml:lang="es">fecha de presentación (formato fecha)</rdfs:label>
</owl:DatatypeProperty>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#fechaPresentacionTexto -->
<owl:DatatypeProperty rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#fechaPresentacionTexto">
<rdfs:domain rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#Procedimiento"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<dcterms:issued>2016-07-28</dcterms:issued>
<rdfs:comment xml:lang="es">fecha en la que se deben presentar las solicitudes (en formato textual)</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio"/>
<rdfs:label xml:lang="es">fecha de presentación (formato texto)</rdfs:label>
</owl:DatatypeProperty>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#fechaRespuesta -->
<owl:DatatypeProperty rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#fechaRespuesta">
<rdfs:domain rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#Procedimiento"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#dateTime"/>
<dcterms:issued>2016-07-28</dcterms:issued>
<rdfs:comment xml:lang="es">fecha en la que se deben resolver las solicitudes (en formato fecha/duración)</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio"/>
<rdfs:label xml:lang="es">fecha de respuesta (formato fecha)</rdfs:label>
</owl:DatatypeProperty>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#fechaRespuestaTexto -->
<owl:DatatypeProperty rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#fechaRespuestaTexto">
<rdfs:domain rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#Procedimiento"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<dcterms:issued>2016-07-28</dcterms:issued>
<rdfs:comment xml:lang="es">fecha en la que se deben resolver las solicitudes (en formato textual)</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio"/>
<rdfs:label xml:lang="es">fecha de respuesta (formato texto)</rdfs:label>
</owl:DatatypeProperty>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#followsTexto -->
<owl:DatatypeProperty rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#followsTexto">
<rdfs:domain rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#Procedimiento"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:comment xml:lang="en">This property links a PublicService with the rules that it follow.
Unline cpsv:follow whose range is a Rule, the range of this property is simply an xsd:string.</rdfs:comment>
</owl:DatatypeProperty>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#hasChannelTexto -->
<owl:DatatypeProperty rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#hasChannelTexto">
<rdfs:domain rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#Procedimiento"/>
</owl:DatatypeProperty>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#hasInputTexto -->
<owl:DatatypeProperty rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#hasInputTexto">
<rdfs:domain rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#Procedimiento"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:comment xml:lang="en">The inputs for a Public Service (in string format)</rdfs:comment>
</owl:DatatypeProperty>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#lugarPagoTexto -->
<owl:DatatypeProperty rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#lugarPagoTexto">
<rdfs:subPropertyOf rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#hasChannelTexto"/>
<rdfs:domain rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#Procedimiento"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<dcterms:issued>2016-07-28</dcterms:issued>
<rdfs:comment xml:lang="es">Lugar donde se realiza el pago del servicio, en caso de que haya que realizar pago (en formato textual)</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio"/>
<rdfs:label xml:lang="es">lugar de pago (formato texto)</rdfs:label>
</owl:DatatypeProperty>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#lugarPresentacionTexto -->
<owl:DatatypeProperty rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#lugarPresentacionTexto">
<rdfs:subPropertyOf rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#hasChannelTexto"/>
<rdfs:domain rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#Procedimiento"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:comment xml:lang="en">The place to present the application for a Public Service (in string format)</rdfs:comment>
</owl:DatatypeProperty>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#pago -->
<owl:DatatypeProperty rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#pago">
<rdfs:domain rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#Procedimiento"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:comment xml:lang="en">Information about the payment (date, amount, place) for a Public Service</rdfs:comment>
</owl:DatatypeProperty>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#permiteTramitacionCorreoCertificado -->
<owl:DatatypeProperty rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#permiteTramitacionCorreoCertificado">
<rdfs:subPropertyOf rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#permiteTramitation"/>
<rdfs:domain rdf:resource="http://purl.org/vocab/cpsv#PublicService"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#boolean"/>
</owl:DatatypeProperty>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#permiteTramitacionEnLinea -->
<owl:DatatypeProperty rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#permiteTramitacionEnLinea">
<rdfs:subPropertyOf rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#permiteTramitation"/>
<rdfs:domain rdf:resource="http://purl.org/vocab/cpsv#PublicService"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#boolean"/>
</owl:DatatypeProperty>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#permiteTramitacionPresencial -->
<owl:DatatypeProperty rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#permiteTramitacionPresencial">
<rdfs:subPropertyOf rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#permiteTramitation"/>
<rdfs:domain rdf:resource="http://purl.org/vocab/cpsv#PublicService"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#boolean"/>
</owl:DatatypeProperty>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#permiteTramitacionTelefono -->
<owl:DatatypeProperty rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#permiteTramitacionTelefono">
<rdfs:subPropertyOf rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#permiteTramitation"/>
<rdfs:domain rdf:resource="http://purl.org/vocab/cpsv#PublicService"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#boolean"/>
</owl:DatatypeProperty>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#permiteTramitation -->
<owl:DatatypeProperty rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#permiteTramitation">
<rdfs:domain rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#Procedimiento"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#boolean"/>
<rdfs:comment xml:lang="en">we should replace all the subproperties with SKOS</rdfs:comment>
</owl:DatatypeProperty>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#permiteTramitationCorreoPostal -->
<owl:DatatypeProperty rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#permiteTramitationCorreoPostal">
<rdfs:subPropertyOf rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#permiteTramitation"/>
<rdfs:domain rdf:resource="http://purl.org/vocab/cpsv#PublicService"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#boolean"/>
</owl:DatatypeProperty>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#presencialDocumentacionTexto -->
<owl:DatatypeProperty rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#presencialDocumentacionTexto">
<rdfs:subPropertyOf rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#hasInputTexto"/>
<rdfs:domain rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#ProcedimientoPorPresencial"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:comment xml:lang="en">This property links a presence-based Public Service with its inputs/requirements (in string format).</rdfs:comment>
</owl:DatatypeProperty>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#recursoProcedeTexto -->
<owl:DatatypeProperty rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#recursoProcedeTexto">
<rdfs:domain rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#Procedimiento"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:comment xml:lang="en">to be completed</rdfs:comment>
</owl:DatatypeProperty>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#requisitos -->
<owl:DatatypeProperty rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#requisitos">
<rdfs:subPropertyOf rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#hasInputTexto"/>
<rdfs:domain rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#Procedimiento"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:comment>This property links a PublicService with its requirements (in text format)</rdfs:comment>
</owl:DatatypeProperty>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#respuestaTexto -->
<owl:DatatypeProperty rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#respuestaTexto">
<rdfs:domain rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#Pregunta"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:comment>the answer of a question in string format</rdfs:comment>
</owl:DatatypeProperty>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#telefonoDocumentacionTexto -->
<owl:DatatypeProperty rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#telefonoDocumentacionTexto">
<rdfs:subPropertyOf rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#hasInputTexto"/>
<rdfs:domain rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#ProcedimientoPorTelefono"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:comment xml:lang="en">This property links a telephone-based Public Service with its inputs/requirements (in string format).</rdfs:comment>
</owl:DatatypeProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Classes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://schema.org/Answer -->
<owl:Class rdf:about="http://schema.org/Answer"/>
<!-- http://schema.org/CivicStructure -->
<owl:Class rdf:about="http://schema.org/CivicStructure"/>
<!-- http://schema.org/Place -->
<owl:Class rdf:about="http://schema.org/Place"/>
<!-- http://schema.org/Question -->
<owl:Class rdf:about="http://schema.org/Question"/>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#CentroServicio -->
<owl:Class rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#CentroServicio">
<rdfs:subClassOf rdf:resource="http://www.w3.org/ns/org#Organization"/>
<rdfs:comment xml:lang="en">a subclass of org:Organization, the class CentroServicio represent organizations that are involved in the Public Service activities.</rdfs:comment>
</owl:Class>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#Decisor -->
<owl:Class rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#Decisor">
<rdfs:subClassOf rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#GestorDecisor"/>
<rdfs:comment xml:lang="en">This class represent an entity that makes decision in a Public Service</rdfs:comment>
</owl:Class>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#DestinadoProcedimiento -->
<owl:Class rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#DestinadoProcedimiento">
<rdfs:subClassOf rdf:resource="http://purl.org/dc/terms/Agent"/>
<rdfs:comment xml:lang="en">This class represent the target entity of a Public Service.</rdfs:comment>
</owl:Class>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#DocumentacionEntrada -->
<owl:Class rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#DocumentacionEntrada">
<rdfs:subClassOf rdf:resource="http://purl.org/vocab/cpsv#Input"/>
<rdfs:comment xml:lang="en">DocumentacionEntrada, a subclass of cpsv:Input represents the input of a public service</rdfs:comment>
</owl:Class>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#Gestor -->
<owl:Class rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#Gestor">
<rdfs:subClassOf rdf:resource="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#GestorDecisor"/>
<rdfs:comment xml:lang="en">This class represent an entity that manages a Public Service</rdfs:comment>
</owl:Class>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#GestorDecisor -->
<owl:Class rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#GestorDecisor">
<rdfs:subClassOf rdf:resource="http://purl.org/dc/terms/Agent"/>
<rdfs:comment xml:lang="en">This class represent an entity that makes decision or manages a Public Service</rdfs:comment>
</owl:Class>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#Impreso -->
<owl:Class rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#Impreso">
<rdfs:subClassOf rdf:resource="http://purl.org/vocab/cpsv#Input"/>
<rdfs:comment xml:lang="en">This class represents Forms to be filled in order to request a Public Servcie</rdfs:comment>
</owl:Class>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#Materia -->
<owl:Class rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#Materia">
<rdfs:comment xml:lang="en">To be completed</rdfs:comment>
</owl:Class>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#MaterialAgrupacion -->
<owl:Class rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#MaterialAgrupacion">
<rdfs:comment xml:lang="en">To be completed</rdfs:comment>
</owl:Class>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#Normativa -->
<owl:Class rdf:about="http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#Normativa">
<rdfs:subClassOf rdf:resource="http://purl.org/vocab/cpsv#Rule"/>
<rdfs:comment xml:lang="en">Normativa, a subclass of Rule, represents a rule that has to be followed by a PublicService</rdfs:comment>
</owl:Class>
<!-- http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#Pregunta -->