-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
HydraContext.php
919 lines (915 loc) · 35.7 KB
/
HydraContext.php
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
<?php
/*
* This file is part of the API Platform project.
*
* (c) Kévin Dunglas <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace ApiPlatform\JsonLd;
/*
* This is an autogenerated file, DO NOT MODIFY IT.
* Run the update-hydra-context.php script at the root of the project to refresh it.
*/
const HYDRA_CONTEXT = [
'@context' => [
'hydra' => 'http://www.w3.org/ns/hydra/core#',
'rdf' => 'http://www.w3.org/1999/02/22-rdf-syntax-ns#',
'rdfs' => 'http://www.w3.org/2000/01/rdf-schema#',
'xsd' => 'http://www.w3.org/2001/XMLSchema#',
'owl' => 'http://www.w3.org/2002/07/owl#',
'vs' => 'http://www.w3.org/2003/06/sw-vocab-status/ns#',
'dc' => 'http://purl.org/dc/terms/',
'cc' => 'http://creativecommons.org/ns#',
'schema' => 'http://schema.org/',
'apiDocumentation' => 'hydra:apiDocumentation',
'ApiDocumentation' => 'hydra:ApiDocumentation',
'title' => 'hydra:title',
'description' => 'hydra:description',
'entrypoint' => [
'@id' => 'hydra:entrypoint',
'@type' => '@id',
],
'supportedClass' => [
'@id' => 'hydra:supportedClass',
'@type' => '@vocab',
],
'Class' => 'hydra:Class',
'supportedProperty' => [
'@id' => 'hydra:supportedProperty',
'@type' => '@id',
],
'SupportedProperty' => 'hydra:SupportedProperty',
'property' => [
'@id' => 'hydra:property',
'@type' => '@vocab',
],
'required' => 'hydra:required',
'readable' => 'hydra:readable',
'writable' => 'hydra:writable',
'writeable' => 'hydra:writeable',
'supportedOperation' => [
'@id' => 'hydra:supportedOperation',
'@type' => '@id',
],
'Operation' => 'hydra:Operation',
'method' => 'hydra:method',
'expects' => [
'@id' => 'hydra:expects',
'@type' => '@vocab',
],
'returns' => [
'@id' => 'hydra:returns',
'@type' => '@vocab',
],
'possibleStatus' => [
'@id' => 'hydra:possibleStatus',
'@type' => '@id',
],
'Status' => 'hydra:Status',
'statusCode' => 'hydra:statusCode',
'Error' => 'hydra:Error',
'Resource' => 'hydra:Resource',
'operation' => 'hydra:operation',
'Collection' => 'hydra:Collection',
'collection' => 'hydra:collection',
'member' => [
'@id' => 'hydra:member',
'@type' => '@id',
],
'memberAssertion' => 'hydra:memberAssertion',
'manages' => 'hydra:manages',
'subject' => [
'@id' => 'hydra:subject',
'@type' => '@vocab',
],
'object' => [
'@id' => 'hydra:object',
'@type' => '@vocab',
],
'search' => 'hydra:search',
'freetextQuery' => 'hydra:freetextQuery',
'view' => [
'@id' => 'hydra:view',
'@type' => '@id',
],
'PartialCollectionView' => 'hydra:PartialCollectionView',
'totalItems' => 'hydra:totalItems',
'first' => [
'@id' => 'hydra:first',
'@type' => '@id',
],
'last' => [
'@id' => 'hydra:last',
'@type' => '@id',
],
'next' => [
'@id' => 'hydra:next',
'@type' => '@id',
],
'previous' => [
'@id' => 'hydra:previous',
'@type' => '@id',
],
'Link' => 'hydra:Link',
'TemplatedLink' => 'hydra:TemplatedLink',
'IriTemplate' => 'hydra:IriTemplate',
'template' => 'hydra:template',
'Rfc6570Template' => 'hydra:Rfc6570Template',
'variableRepresentation' => [
'@id' => 'hydra:variableRepresentation',
'@type' => '@vocab',
],
'VariableRepresentation' => 'hydra:VariableRepresentation',
'BasicRepresentation' => 'hydra:BasicRepresentation',
'ExplicitRepresentation' => 'hydra:ExplicitRepresentation',
'mapping' => 'hydra:mapping',
'IriTemplateMapping' => 'hydra:IriTemplateMapping',
'variable' => 'hydra:variable',
'offset' => [
'@id' => 'hydra:offset',
'@type' => 'xsd:nonNegativeInteger',
],
'limit' => [
'@id' => 'hydra:limit',
'@type' => 'xsd:nonNegativeInteger',
],
'pageIndex' => [
'@id' => 'hydra:pageIndex',
'@type' => 'xsd:nonNegativeInteger',
],
'pageReference' => [
'@id' => 'hydra:pageReference',
],
'returnsHeader' => [
'@id' => 'hydra:returnsHeader',
'@type' => 'xsd:string',
],
'expectsHeader' => [
'@id' => 'hydra:expectsHeader',
'@type' => 'xsd:string',
],
'HeaderSpecification' => 'hydra:HeaderSpecification',
'headerName' => 'hydra:headerName',
'possibleValue' => 'hydra:possibleValue',
'closedSet' => [
'@id' => 'hydra:possibleValue',
'@type' => 'xsd:boolean',
],
'name' => [
'@id' => 'hydra:name',
'@type' => 'xsd:string',
],
'extension' => [
'@id' => 'hydra:extension',
'@type' => '@id',
],
'isDefinedBy' => [
'@id' => 'rdfs:isDefinedBy',
'@type' => '@id',
],
'defines' => [
'@reverse' => 'rdfs:isDefinedBy',
],
'comment' => 'rdfs:comment',
'label' => 'rdfs:label',
'preferredPrefix' => 'http://purl.org/vocab/vann/preferredNamespacePrefix',
'cc:license' => [
'@type' => '@id',
],
'cc:attributionURL' => [
'@type' => '@id',
],
'domain' => [
'@id' => 'rdfs:domain',
'@type' => '@vocab',
],
'range' => [
'@id' => 'rdfs:range',
'@type' => '@vocab',
],
'subClassOf' => [
'@id' => 'rdfs:subClassOf',
'@type' => '@vocab',
],
'subPropertyOf' => [
'@id' => 'rdfs:subPropertyOf',
'@type' => '@vocab',
],
'seeAlso' => [
'@id' => 'rdfs:seeAlso',
'@type' => '@id',
],
'domainIncludes' => [
'@id' => 'schema:domainIncludes',
'@type' => '@id',
],
'rangeIncludes' => [
'@id' => 'schema:rangeIncludes',
'@type' => '@id',
],
],
'@id' => 'http://www.w3.org/ns/hydra/core',
'@type' => 'owl:Ontology',
'label' => 'The Hydra Core Vocabulary',
'comment' => 'A lightweight vocabulary for hypermedia-driven Web APIs',
'seeAlso' => 'https://www.hydra-cg.com/spec/latest/core/',
'preferredPrefix' => 'hydra',
'dc:description' => 'The Hydra Core Vocabulary is a lightweight vocabulary to create hypermedia-driven Web APIs. By specifying a number of concepts commonly used in Web APIs it enables the creation of generic API clients.',
'dc:rights' => 'Copyright © 2012-2014 the Contributors to the Hydra Core Vocabulary Specification',
'dc:publisher' => 'Hydra W3C Community Group',
'cc:license' => 'http://creativecommons.org/licenses/by/4.0/',
'cc:attributionName' => 'Hydra W3C Community Group',
'cc:attributionURL' => 'http://www.hydra-cg.com/',
'defines' => [
0 => [
'@id' => 'hydra:Resource',
'@type' => 'hydra:Class',
'label' => 'Hydra Resource',
'comment' => 'The class of dereferenceable resources by means a client can attempt to dereference; however, the received responses should still be verified.',
'isDefinedBy' => 'http://www.w3.org/ns/hydra/core',
'vs:term_status' => 'testing',
],
1 => [
'@id' => 'hydra:Class',
'@type' => [
0 => 'hydra:Resource',
1 => 'rdfs:Class',
],
'subClassOf' => [
0 => 'rdfs:Class',
],
'label' => 'Hydra Class',
'comment' => 'The class of Hydra classes.',
'isDefinedBy' => 'http://www.w3.org/ns/hydra/core',
'vs:term_status' => 'testing',
],
2 => [
'@id' => 'hydra:Link',
'@type' => 'hydra:Class',
'subClassOf' => [
0 => 'hydra:Resource',
1 => 'rdf:Property',
],
'label' => 'Link',
'comment' => 'The class of properties representing links.',
'isDefinedBy' => 'http://www.w3.org/ns/hydra/core',
'vs:term_status' => 'testing',
],
3 => [
'@id' => 'hydra:apiDocumentation',
'@type' => 'hydra:Link',
'label' => 'apiDocumentation',
'comment' => 'A link to the API documentation',
'range' => 'hydra:ApiDocumentation',
'domain' => 'hydra:Resource',
'isDefinedBy' => 'http://www.w3.org/ns/hydra/core',
'vs:term_status' => 'testing',
],
4 => [
'@id' => 'hydra:ApiDocumentation',
'@type' => 'hydra:Class',
'subClassOf' => 'hydra:Resource',
'label' => 'ApiDocumentation',
'comment' => 'The Hydra API documentation class',
'isDefinedBy' => 'http://www.w3.org/ns/hydra/core',
'vs:term_status' => 'testing',
],
5 => [
'@id' => 'hydra:entrypoint',
'@type' => 'hydra:Link',
'label' => 'entrypoint',
'comment' => 'A link to main entry point of the Web API',
'domain' => 'hydra:ApiDocumentation',
'range' => 'hydra:Resource',
'isDefinedBy' => 'http://www.w3.org/ns/hydra/core',
'vs:term_status' => 'testing',
],
6 => [
'@id' => 'hydra:supportedClass',
'@type' => 'hydra:Link',
'label' => 'supported classes',
'comment' => 'A class known to be supported by the Web API',
'domain' => 'hydra:ApiDocumentation',
'range' => 'rdfs:Class',
'isDefinedBy' => 'http://www.w3.org/ns/hydra/core',
'vs:term_status' => 'testing',
],
7 => [
'@id' => 'hydra:possibleStatus',
'@type' => 'hydra:Link',
'label' => 'possible status',
'comment' => 'A status that might be returned by the Web API (other statuses should be expected and properly handled as well)',
'range' => 'hydra:Status',
'domainIncludes' => [
0 => 'hydra:ApiDocumentation',
1 => 'hydra:Operation',
],
'isDefinedBy' => 'http://www.w3.org/ns/hydra/core',
'vs:term_status' => 'testing',
],
8 => [
'@id' => 'hydra:supportedProperty',
'@type' => 'hydra:Link',
'label' => 'supported properties',
'comment' => 'The properties known to be supported by a Hydra class',
'domain' => 'rdfs:Class',
'range' => 'hydra:SupportedProperty',
'isDefinedBy' => 'http://www.w3.org/ns/hydra/core',
'vs:term_status' => 'testing',
],
9 => [
'@id' => 'hydra:SupportedProperty',
'@type' => 'hydra:Class',
'label' => 'Supported Property',
'comment' => 'A property known to be supported by a Hydra class.',
'isDefinedBy' => 'http://www.w3.org/ns/hydra/core',
'vs:term_status' => 'testing',
],
10 => [
'@id' => 'hydra:property',
'@type' => 'rdf:Property',
'label' => 'property',
'comment' => 'A property',
'range' => 'rdf:Property',
'domainIncludes' => [
0 => 'hydra:SupportedProperty',
1 => 'hydra:IriTemplateMapping',
],
'isDefinedBy' => 'http://www.w3.org/ns/hydra/core',
'vs:term_status' => 'testing',
],
11 => [
'@id' => 'hydra:required',
'@type' => 'rdf:Property',
'label' => 'required',
'comment' => 'True if the property is required, false otherwise.',
'range' => 'xsd:boolean',
'domainIncludes' => [
0 => 'hydra:SupportedProperty',
1 => 'hydra:IriTemplateMapping',
],
'isDefinedBy' => 'http://www.w3.org/ns/hydra/core',
'vs:term_status' => 'testing',
],
12 => [
'@id' => 'hydra:readable',
'@type' => 'rdf:Property',
'label' => 'readable',
'comment' => 'True if the client can retrieve the property\'s value, false otherwise.',
'domain' => 'hydra:SupportedProperty',
'range' => 'xsd:boolean',
'isDefinedBy' => 'http://www.w3.org/ns/hydra/core',
'vs:term_status' => 'testing',
],
13 => [
'@id' => 'hydra:writable',
'@type' => 'rdf:Property',
'label' => 'writable',
'comment' => 'True if the client can change the property\'s value, false otherwise.',
'domain' => 'hydra:SupportedProperty',
'range' => 'xsd:boolean',
'isDefinedBy' => 'http://www.w3.org/ns/hydra/core',
'vs:term_status' => 'testing',
],
14 => [
'@id' => 'hydra:writeable',
'subPropertyOf' => 'hydra:writable',
'label' => 'writable',
'comment' => 'This property is left for compatibility purposes and hydra:writable should be used instead.',
'isDefinedBy' => 'http://www.w3.org/ns/hydra/core',
'vs:term_status' => 'archaic',
],
15 => [
'@id' => 'hydra:supportedOperation',
'@type' => 'hydra:Link',
'label' => 'supported operation',
'comment' => 'An operation supported by instances of the specific Hydra class, or the target of the Hydra link, or IRI template.',
'range' => 'hydra:Operation',
'domainIncludes' => [
0 => 'rdfs:Class',
1 => 'hydra:Class',
2 => 'hydra:Link',
3 => 'hydra:TemplatedLink',
4 => 'hydra:SupportedProperty',
],
'isDefinedBy' => 'http://www.w3.org/ns/hydra/core',
'vs:term_status' => 'testing',
],
16 => [
'@id' => 'hydra:operation',
'@type' => 'hydra:Link',
'label' => 'operation',
'comment' => 'An operation supported by the Hydra resource',
'domain' => 'hydra:Resource',
'range' => 'hydra:Operation',
'isDefinedBy' => 'http://www.w3.org/ns/hydra/core',
'vs:term_status' => 'testing',
],
17 => [
'@id' => 'hydra:Operation',
'@type' => 'hydra:Class',
'label' => 'Operation',
'comment' => 'An operation.',
'isDefinedBy' => 'http://www.w3.org/ns/hydra/core',
'vs:term_status' => 'testing',
],
18 => [
'@id' => 'hydra:method',
'@type' => 'rdf:Property',
'label' => 'method',
'comment' => 'The HTTP method.',
'domain' => 'hydra:Operation',
'range' => 'xsd:string',
'isDefinedBy' => 'http://www.w3.org/ns/hydra/core',
'vs:term_status' => 'testing',
],
19 => [
'@id' => 'hydra:expects',
'@type' => 'hydra:Link',
'label' => 'expects',
'comment' => 'The information expected by the Web API.',
'domain' => 'hydra:Operation',
'rangeIncludes' => [
0 => 'rdfs:Resource',
1 => 'hydra:Resource',
2 => 'rdfs:Class',
3 => 'hydra:Class',
],
'isDefinedBy' => 'http://www.w3.org/ns/hydra/core',
'vs:term_status' => 'testing',
],
20 => [
'@id' => 'hydra:returns',
'@type' => 'hydra:Link',
'label' => 'returns',
'comment' => 'The information returned by the Web API on success',
'domain' => 'hydra:Operation',
'rangeIncludes' => [
0 => 'rdfs:Resource',
1 => 'hydra:Resource',
2 => 'rdfs:Class',
3 => 'hydra:Class',
],
'isDefinedBy' => 'http://www.w3.org/ns/hydra/core',
'vs:term_status' => 'testing',
],
21 => [
'@id' => 'hydra:Status',
'@type' => 'hydra:Class',
'label' => 'Status code description',
'comment' => 'Additional information about a status code that might be returned.',
'isDefinedBy' => 'http://www.w3.org/ns/hydra/core',
'vs:term_status' => 'testing',
],
22 => [
'@id' => 'hydra:statusCode',
'@type' => 'rdf:Property',
'label' => 'status code',
'comment' => 'The HTTP status code. Please note it may happen this value will be different to actual status code received.',
'domain' => 'hydra:Status',
'range' => 'xsd:integer',
'isDefinedBy' => 'http://www.w3.org/ns/hydra/core',
'vs:term_status' => 'testing',
],
23 => [
'@id' => 'hydra:title',
'@type' => 'rdf:Property',
'subPropertyOf' => 'rdfs:label',
'label' => 'title',
'comment' => 'A title, often used along with a description.',
'range' => 'xsd:string',
'domainIncludes' => [
0 => 'hydra:ApiDocumentation',
1 => 'hydra:Status',
2 => 'hydra:Class',
3 => 'hydra:SupportedProperty',
4 => 'hydra:Operation',
5 => 'hydra:Link',
6 => 'hydra:TemplatedLink',
],
'isDefinedBy' => 'http://www.w3.org/ns/hydra/core',
'vs:term_status' => 'testing',
],
24 => [
'@id' => 'hydra:description',
'@type' => 'rdf:Property',
'subPropertyOf' => 'rdfs:comment',
'label' => 'description',
'comment' => 'A description.',
'range' => 'xsd:string',
'domainIncludes' => [
0 => 'hydra:ApiDocumentation',
1 => 'hydra:Status',
2 => 'hydra:Class',
3 => 'hydra:SupportedProperty',
4 => 'hydra:Operation',
5 => 'hydra:Link',
6 => 'hydra:TemplatedLink',
],
'isDefinedBy' => 'http://www.w3.org/ns/hydra/core',
'vs:term_status' => 'testing',
],
25 => [
'@id' => 'hydra:Error',
'@type' => 'hydra:Class',
'subClassOf' => 'hydra:Status',
'label' => 'Error',
'comment' => 'A runtime error, used to report information beyond the returned status code.',
'isDefinedBy' => 'http://www.w3.org/ns/hydra/core',
'vs:term_status' => 'testing',
],
26 => [
'@id' => 'hydra:Collection',
'@type' => 'hydra:Class',
'subClassOf' => 'hydra:Resource',
'label' => 'Collection',
'comment' => 'A collection holding references to a number of related resources.',
'isDefinedBy' => 'http://www.w3.org/ns/hydra/core',
'vs:term_status' => 'testing',
],
27 => [
'@id' => 'hydra:collection',
'@type' => 'hydra:Link',
'label' => 'collection',
'comment' => 'Collections somehow related to this resource.',
'range' => 'hydra:Collection',
'isDefinedBy' => 'http://www.w3.org/ns/hydra/core',
'vs:term_status' => 'testing',
],
28 => [
'@id' => 'hydra:memberAssertion',
'label' => 'member assertion',
'comment' => 'Semantics of each member provided by the collection.',
'domain' => 'hydra:Collection',
'isDefinedBy' => 'http://www.w3.org/ns/hydra/core',
'vs:term_status' => 'testing',
],
29 => [
'@id' => 'hydra:manages',
'subPropertyOf' => 'hydra:memberAssertion',
'label' => 'manages',
'comment' => 'This predicate is left for compatibility purposes and hydra:memberAssertion should be used instead.',
'isDefinedBy' => 'http://www.w3.org/ns/hydra/core',
'vs:term_status' => 'archaic',
],
30 => [
'@id' => 'hydra:subject',
'label' => 'subject',
'comment' => 'The subject.',
'isDefinedBy' => 'http://www.w3.org/ns/hydra/core',
'vs:term_status' => 'testing',
],
31 => [
'@id' => 'hydra:object',
'label' => 'object',
'comment' => 'The object.',
'isDefinedBy' => 'http://www.w3.org/ns/hydra/core',
'vs:term_status' => 'testing',
],
32 => [
'@id' => 'hydra:member',
'@type' => 'hydra:Link',
'label' => 'member',
'comment' => 'A member of the collection',
'domain' => 'hydra:Collection',
'isDefinedBy' => 'http://www.w3.org/ns/hydra/core',
'vs:term_status' => 'testing',
],
33 => [
'@id' => 'hydra:view',
'@type' => 'hydra:Link',
'label' => 'view',
'comment' => 'A specific view of a resource.',
'isDefinedBy' => 'http://www.w3.org/ns/hydra/core',
'vs:term_status' => 'testing',
],
34 => [
'@id' => 'hydra:PartialCollectionView',
'@type' => 'hydra:Class',
'subClassOf' => 'hydra:Resource',
'label' => 'PartialCollectionView',
'comment' => 'A PartialCollectionView describes a partial view of a Collection. Multiple PartialCollectionViews can be connected with the the next/previous properties to allow a client to retrieve all members of the collection.',
'isDefinedBy' => 'http://www.w3.org/ns/hydra/core',
'vs:term_status' => 'testing',
],
35 => [
'@id' => 'hydra:totalItems',
'@type' => 'rdf:Property',
'label' => 'total items',
'comment' => 'The total number of items referenced by a collection.',
'domain' => 'hydra:Collection',
'range' => 'xsd:integer',
'isDefinedBy' => 'http://www.w3.org/ns/hydra/core',
'vs:term_status' => 'testing',
],
36 => [
'@id' => 'hydra:first',
'@type' => 'hydra:Link',
'label' => 'first',
'comment' => 'The first resource of an interlinked set of resources.',
'domain' => 'hydra:Resource',
'range' => 'hydra:Resource',
'isDefinedBy' => 'http://www.w3.org/ns/hydra/core',
'vs:term_status' => 'testing',
],
37 => [
'@id' => 'hydra:last',
'@type' => 'hydra:Link',
'label' => 'last',
'comment' => 'The last resource of an interlinked set of resources.',
'domain' => 'hydra:Resource',
'range' => 'hydra:Resource',
'isDefinedBy' => 'http://www.w3.org/ns/hydra/core',
'vs:term_status' => 'testing',
],
38 => [
'@id' => 'hydra:next',
'@type' => 'hydra:Link',
'label' => 'next',
'comment' => 'The resource following the current instance in an interlinked set of resources.',
'domain' => 'hydra:Resource',
'range' => 'hydra:Resource',
'isDefinedBy' => 'http://www.w3.org/ns/hydra/core',
'vs:term_status' => 'testing',
],
39 => [
'@id' => 'hydra:previous',
'@type' => 'hydra:Link',
'label' => 'previous',
'comment' => 'The resource preceding the current instance in an interlinked set of resources.',
'domain' => 'hydra:Resource',
'range' => 'hydra:Resource',
'isDefinedBy' => 'http://www.w3.org/ns/hydra/core',
'vs:term_status' => 'testing',
],
40 => [
'@id' => 'hydra:search',
'@type' => 'hydra:TemplatedLink',
'label' => 'search',
'comment' => 'A IRI template that can be used to query a collection.',
'range' => 'hydra:IriTemplate',
'domain' => 'hydra:Resource',
'isDefinedBy' => 'http://www.w3.org/ns/hydra/core',
'vs:term_status' => 'testing',
],
41 => [
'@id' => 'hydra:freetextQuery',
'@type' => 'rdf:Property',
'label' => 'freetext query',
'comment' => 'A property representing a freetext query.',
'range' => 'xsd:string',
'domain' => 'hydra:Resource',
'isDefinedBy' => 'http://www.w3.org/ns/hydra/core',
'vs:term_status' => 'testing',
],
42 => [
'@id' => 'hydra:TemplatedLink',
'@type' => 'hydra:Class',
'subClassOf' => [
0 => 'hydra:Resource',
1 => 'rdf:Property',
],
'label' => 'Templated Link',
'comment' => 'A templated link.',
'isDefinedBy' => 'http://www.w3.org/ns/hydra/core',
'vs:term_status' => 'testing',
],
43 => [
'@id' => 'hydra:IriTemplate',
'@type' => 'hydra:Class',
'label' => 'IRI Template',
'comment' => 'The class of IRI templates.',
'isDefinedBy' => 'http://www.w3.org/ns/hydra/core',
'vs:term_status' => 'testing',
],
44 => [
'@id' => 'hydra:template',
'@type' => 'rdf:Property',
'label' => 'template',
'comment' => 'A templated string with placeholders. The literal\'s datatype indicates the template syntax; if not specified, hydra:Rfc6570Template is assumed.',
'seeAlso' => 'hydra:Rfc6570Template',
'domain' => 'hydra:IriTemplate',
'range' => 'hydra:Rfc6570Template',
'isDefinedBy' => 'http://www.w3.org/ns/hydra/core',
'vs:term_status' => 'testing',
],
45 => [
'@id' => 'hydra:Rfc6570Template',
'@type' => 'rdfs:Datatype',
'label' => 'RFC6570 IRI template',
'comment' => 'An IRI template as defined by RFC6570.',
'seeAlso' => 'http://tools.ietf.org/html/rfc6570',
'range' => 'xsd:string',
'isDefinedBy' => 'http://www.w3.org/ns/hydra/core',
'vs:term_status' => 'testing',
],
46 => [
'@id' => 'hydra:variableRepresentation',
'@type' => 'rdf:Property',
'label' => 'variable representation',
'comment' => 'The representation format to use when expanding the IRI template.',
'range' => 'hydra:VariableRepresentation',
'domain' => 'hydra:IriTemplateMapping',
'isDefinedBy' => 'http://www.w3.org/ns/hydra/core',
'vs:term_status' => 'testing',
],
47 => [
'@id' => 'hydra:VariableRepresentation',
'@type' => 'hydra:Class',
'label' => 'VariableRepresentation',
'comment' => 'A representation specifies how to serialize variable values into strings.',
'isDefinedBy' => 'http://www.w3.org/ns/hydra/core',
'vs:term_status' => 'testing',
],
48 => [
'@id' => 'hydra:BasicRepresentation',
'@type' => 'hydra:VariableRepresentation',
'label' => 'BasicRepresentation',
'comment' => 'A representation that serializes just the lexical form of a variable value, but omits language and type information.',
'isDefinedBy' => 'http://www.w3.org/ns/hydra/core',
'vs:term_status' => 'testing',
],
49 => [
'@id' => 'hydra:ExplicitRepresentation',
'@type' => 'hydra:VariableRepresentation',
'label' => 'ExplicitRepresentation',
'comment' => 'A representation that serializes a variable value including its language and type information and thus differentiating between IRIs and literals.',
'isDefinedBy' => 'http://www.w3.org/ns/hydra/core',
'vs:term_status' => 'testing',
],
50 => [
'@id' => 'hydra:mapping',
'@type' => 'rdf:Property',
'label' => 'mapping',
'comment' => 'A variable-to-property mapping of the IRI template.',
'domain' => 'hydra:IriTemplate',
'range' => 'hydra:IriTemplateMapping',
'isDefinedBy' => 'http://www.w3.org/ns/hydra/core',
'vs:term_status' => 'testing',
],
51 => [
'@id' => 'hydra:IriTemplateMapping',
'@type' => 'hydra:Class',
'label' => 'IriTemplateMapping',
'comment' => 'A mapping from an IRI template variable to a property.',
'isDefinedBy' => 'http://www.w3.org/ns/hydra/core',
'vs:term_status' => 'testing',
],
52 => [
'@id' => 'hydra:variable',
'@type' => 'rdf:Property',
'label' => 'variable',
'comment' => 'An IRI template variable',
'domain' => 'hydra:IriTemplateMapping',
'range' => 'xsd:string',
'isDefinedBy' => 'http://www.w3.org/ns/hydra/core',
'vs:term_status' => 'testing',
],
53 => [
'@id' => 'hydra:resolveRelativeUsing',
'@type' => 'rdf:Property',
'label' => 'relative Uri resolution',
'domain' => 'hydra:IriTemplate',
'range' => 'hydra:BaseUriSource',
'isDefinedBy' => 'http://www.w3.org/ns/hydra/core',
'vs:term_status' => 'testing',
],
54 => [
'@id' => 'hydra:BaseUriSource',
'@type' => 'hydra:Class',
'subClassOf' => 'hydra:Resource',
'label' => 'Base Uri source',
'comment' => 'Provides a base abstract for base Uri source for Iri template resolution.',
'isDefinedBy' => 'http://www.w3.org/ns/hydra/core',
'vs:term_status' => 'testing',
],
55 => [
'@id' => 'hydra:Rfc3986',
'@type' => 'hydra:BaseUriSource',
'label' => 'RFC 3986 based',
'comment' => 'States that the base Uri should be established using RFC 3986 reference resolution algorithm specified in section 5.',
'isDefinedBy' => 'http://www.w3.org/ns/hydra/core',
'vs:term_status' => 'testing',
],
56 => [
'@id' => 'hydra:LinkContext',
'@type' => 'hydra:BaseUriSource',
'label' => 'Link context',
'comment' => 'States that the link\'s context IRI, as defined in RFC 5988, should be used as the base Uri',
'isDefinedBy' => 'http://www.w3.org/ns/hydra/core',
'vs:term_status' => 'testing',
],
57 => [
'@id' => 'hydra:offset',
'@type' => 'rdf:Property',
'label' => 'skip',
'comment' => 'Instructs to skip N elements of the set.',
'range' => 'xsd:nonNegativeInteger',
'isDefinedBy' => 'http://www.w3.org/ns/hydra/core',
'vs:term_status' => 'testing',
],
58 => [
'@id' => 'hydra:limit',
'@type' => 'rdf:Property',
'label' => 'take',
'comment' => 'Instructs to limit set only to N elements.',
'range' => 'xsd:nonNegativeInteger',
'isDefinedBy' => 'http://www.w3.org/ns/hydra/core',
'vs:term_status' => 'testing',
],
59 => [
'@id' => 'hydra:pageIndex',
'@type' => 'rdf:Property',
'subPropertyOf' => 'hydra:pageReference',
'label' => 'page index',
'comment' => 'Instructs to provide a specific page of the collection at a given index.',
'range' => 'xsd:nonNegativeInteger',
'isDefinedBy' => 'http://www.w3.org/ns/hydra/core',
'vs:term_status' => 'testing',
],
60 => [
'@id' => 'hydra:pageReference',
'@type' => 'rdf:Property',
'label' => 'page reference',
'comment' => 'Instructs to provide a specific page reference of the collection.',
'isDefinedBy' => 'http://www.w3.org/ns/hydra/core',
'vs:term_status' => 'testing',
],
61 => [
'@id' => 'hydra:returnsHeader',
'@type' => 'rdf:Property',
'label' => 'returns header',
'comment' => 'Name of the header returned by the operation.',
'domain' => 'hydra:Operation',
'rangeIncludes' => [
0 => 'xsd:string',
1 => 'hydra:HeaderSpecification',
],
'isDefinedBy' => 'http://www.w3.org/ns/hydra/core',
'vs:term_status' => 'testing',
],
62 => [
'@id' => 'hydra:expectsHeader',
'@type' => 'rdf:Property',
'label' => 'expects header',
'comment' => 'Specification of the header expected by the operation.',
'domain' => 'hydra:Operation',
'rangeIncludes' => [
0 => 'xsd:string',
1 => 'hydra:HeaderSpecification',
],
'isDefinedBy' => 'http://www.w3.org/ns/hydra/core',
'vs:term_status' => 'testing',
],
63 => [
'@id' => 'hydra:HeaderSpecification',
'@type' => 'rdfs:Class',
'subClassOf' => 'hydra:Resource',
'label' => 'Header specification',
'comment' => 'Specifies a possible either expected or returned header values',
'isDefinedBy' => 'http://www.w3.org/ns/hydra/core',
'vs:term_status' => 'testing',
],
64 => [
'@id' => 'hydra:headerName',
'@type' => 'rdf:Property',
'label' => 'header name',
'comment' => 'Name of the header.',
'domain' => 'hydra:HeaderSpecification',
'range' => 'xsd:string',
'isDefinedBy' => 'http://www.w3.org/ns/hydra/core',
'vs:term_status' => 'testing',
],
65 => [
'@id' => 'hydra:possibleValue',
'@type' => 'rdf:Property',
'label' => 'possible header value',
'comment' => 'Possible value of the header.',
'domain' => 'hydra:HeaderSpecification',
'range' => 'xsd:string',
'vs:term_status' => 'testing',
],
66 => [
'@id' => 'hydra:closedSet',
'@type' => 'rdf:Property',
'label' => 'closed set',
'comment' => 'Determines whether the provided set of header values is closed or not.',
'domain' => 'hydra:HeaderSpecification',
'range' => 'xsd:boolean',
'isDefinedBy' => 'http://www.w3.org/ns/hydra/core',
'vs:term_status' => 'testing',
],
67 => [
'@id' => 'hydra:extension',
'@type' => 'rdf:Property',
'label' => 'extension',
'comment' => 'Hint on what kind of extensions are in use.',
'domain' => 'hydra:ApiDocumentation',
'isDefinedBy' => 'http://www.w3.org/ns/hydra/core',
'vs:term_status' => 'testing',
],
],
];