This repository has been archived by the owner on Feb 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathalfresco-search.yaml
1302 lines (1255 loc) · 38.7 KB
/
alfresco-search.yaml
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
swagger: '2.0'
info:
description: |
**Search API**
Provides access to the search features of Alfresco Content Services.
version: '1'
title: Alfresco Content Services REST API
basePath: /alfresco/api/-default-/public/search/versions/1
securityDefinitions:
basicAuth:
type: basic
description: HTTP Basic Authentication
security:
- basicAuth: []
consumes:
- application/json
produces:
- application/json
paths:
'/search':
post:
x-alfresco-since: "5.2"
tags:
- search
summary: Searches Alfresco
description: |
**Note**: this endpoint is available in Alfresco 5.2 and newer versions.
**You specify all the parameters in this API in a JSON body**, URL parameters are not supported.
A basic query looks like this:
```JSON
{
"query": {
"query": "foo"
}
}
```
**Note:** These are the minimum possible query parameters.
The default search language is **afts** ([Alfresco Full Text Search](http://docs.alfresco.com/5.1/concepts/rm-searchsyntax-intro.html)), but you can also specify **cmis**, and **lucene**.
A basic CMIS query looks like this:
```JSON
{
"query": {
"query": "select * from cmis:folder",
"language": "cmis"
}
}
```
By default, **results are limited to the first 100.**
Results can be restricted using "paging". For example:
```JSON
"paging": {
"maxItems": "50",
"skipCount": "28"
}
```
This example would ensure that results are **limited by Final Size**,
skipping the first 28 results and returning the next 50.
Alternatively, you can limit the results by using the **limits JSON body parameter**. For example,
```JSON
"limits": {
"permissionEvaluationTime": 20000,
"permissionEvaluationCount": 2000
}
```
You can use the **include JSON body parameter** to return additional information.
This works in the same way as in the /nodes/{nodeId}/children method in the core API. For example:
```JSON
"include": ["aspectNames", "properties", "isLink"]
```
You can use the **fields JSON body parameter** to restrict the fields returned within a response if, for example, you want to save on overall bandwidth.
This works in the same way as in the /nodes/{nodeId}/children method in the core API. For example:
```JSON
"fields": ["id", "name", "search"]
```
You can sort the results using the **sort JSON body parameter**, for example:
```JSON
"sort": [{"type":"FIELD", "field":"cm:description", "ascending":"true"}]
```
**Note:** the **sort** parameter is not supported for CMIS queries.
By default, search uses the **"nodes" location**, which is the **content store known as workspace://SpacesStore**.
To change the scope to another location you can use the **locations JSON body parameter**. You can specify either **nodes** (the default), **versions** or **deleted-nodes**. For example,
```JSON
"scope": {
"locations": ["deleted-nodes"]
}
```
You can specify templates using the **templates JSON body parameter**, for example:
```JSON
"templates": [{"name": "_PERSON","template": "|%firstName OR |%lastName OR |%userName"},
{"name": "mytemplate","template": "%cm:content"}]
```
**Note: Spell checking only works on Search Services (Solr 6) if you have already enabled suggestions.**
For **spell checking** you can use a query like this:
```JSON
{
"query": {
"query": "cm:title:alfrezco"
},
"spellcheck": {"query": "alfrezco"}
}
```
If you are already specifying "userQuery" then the following may be easier
and produces the same result :
```JSON
{
"query": {
"query": "cm:title:alfrezco",
"userQuery": "alfrezco"
},
"spellcheck": {}
}
```
The spellcheck response includes a spellCheck context like this:
```JSON
"context": {
"spellCheck": {
"type": "searchInsteadFor",
"suggestions": ["alfresco"]
}
},
```
To specify defaults, you use a **defaults JSON body parameter**, for example:
```JSON
"defaults": {
"textAttributes": [
"cm:content", "cm:name"
],
"defaultFTSOperator": "AND",
"defaultFTSFieldOperator": "OR",
"namespace": "cm",
"defaultFieldName": "PATH"
}
```
You can specify several filter queries using the **filterQueries JSON body parameter**, for example:
```JSON
"filterQueries": [{"query": "TYPE:'cm:folder'"},{"query": "cm:creator:mjackson"}]
```
You can specify several facet queries using the **facetQueries JSON body parameter**, for example:
```JSON
"facetQueries": [{"query": "created:2016","label": "CreatedThisYear"}]
```
The response will contain a matching "context" section, the "label" will match the facet query.
```JSON
"context": {
"facetQueries": [
{"label": "CreatedThisYear","count": 3}
]
},
```
A complete query for facetting via the content.size field looks this:
```JSON
{
"query": {
"query": "presentation",
"language": "afts"
},
"facetQueries": [
{"query": "content.size:[0 TO 10240]", "label": "xtra small"},
{"query": "content.size:[10240 TO 102400]", "label": "small"},
{"query": "content.size:[102400 TO 1048576]", "label": "medium"},
{"query": "content.size:[1048576 TO 16777216]", "label": "large"},
{"query": "content.size:[16777216 TO 134217728]", "label": "xtra large"},
{"query": "content.size:[134217728 TO MAX]", "label": "XX large"}
],
"facetFields": {"facets": [{"field": "'content.size'"}]}
}
```
The response will contain a matching "context" section, the "label" will match the facet query.
```JSON
"context": {
"facetQueries": [
{ "label": "small","count": 2 },
{ "label": "large","count": 0 },
{ "label": "xtra small","count": 5 },
{ "label": "xtra large","count": 56},
{ "label": "medium","count": 4 },
{ "label": "XX large", "count": 1 }
]
},
```
You can specify several facet fields using the **facetFields JSON body parameter**, for example:
```JSON
"facetFields": {"facets": [{"field": "creator", "mincount": 1}, {"field": "modifier", "mincount": 1}]}
```
The response will contain a matching "context" section, the "label" will match the facet field.
```JSON
"context": {
"facetsFields": [
{ "label": "creator",
"buckets": [
{ "label": "System", "count": 75 },
{ "label": "mjackson", "count": 5 }
]},
{ "label": "modifier",
"buckets": [
{ "label": "System", "count": 72 },
{ "label": "mjackson", "count": 5 },
{ "label": "admin", "count": 3 }
]}
]
},
```
Grouping facet queries that go together can be done by specifying the group label in the fact queries as follow:
```JSON
{
"query": {
"query": "presentation"
},
"facetQueries": [
{"query": "content.size:[0 TO 102400]", "label": "small", "group":"foo"},
{"query": "content.size:[102400 TO 1048576]", "label": "medium","group":"foo"},
{"query": "content.size:[1048576 TO 16777216]", "label": "large","group":"foo"}
]
}
```
The above query returns the results a faceted field grouped under the label foo:
```JSON
{
"context": {"facetsFields": [{
"label": "foo",
"buckets": [
{
"count": 109,
"label": "small",
"filterQuery": "content.size:[0 TO 102400]"
},
{
"count": 0,
"label": "large",
"filterQuery": "content.size:[1048576 TO 16777216]"
},
{
"count": 0,
"label": "medium",
"filterQuery": "content.size:[102400 TO 1048576]"
}
]
}]
}
```
Range Faceting is supported by the **ranges JSON body parameter**, for example:
```JSON
{
"query": {
"query": "presentation"
},
"ranges": [
{
"field": "content.size",
"start": "0",
"end": "100",
"gap": "20",
"hardend": true
},
{
"field": "created",
"start": "2015-09-29T10:45:15.729Z",
"end": "2016-09-29T10:45:15.729Z",
"gap": "+100DAY"
}]
}
```
An example query for **search highlighting** could look like this:
```JSON
{
"query": {
"query": "description:workflow",
"userQuery":"workflow"
},
"highlight": {
"prefix": "¿",
"postfix": "?",
"mergeContiguous": true,
"fields": [
{
"field": "cm:title"
},
{
"field": "description",
"prefix": "(",
"postfix": ")"
}
]
}
}
```
The example above changes the highlighting prefix and postfix from the
default <em> for all fields to ¿? and just for the "description" field to ().
The highlight information is added in each node entry response; here is
an example partial response:
```
"entry": {
"createdAt": "2016-10-12T15:24:31.202+0000",
"isFolder": true,
"search": {
"score": 1,
"highlight": [
{
"field": "cm:title",
"snippets": [
"Customized ¿Workflow? Process Definitions"
]
},
{
"field": "description",
"snippets": [
"Customized (Workflow) Process Definitions"
]
}
]
},
```
parameters:
- in: body
name: queryBody
description: |
Generic query API
required: true
schema:
$ref: '#/definitions/SearchRequest'
operationId: search
produces:
- application/json
responses:
'200':
description: Successful response
schema:
$ref: '#/definitions/ResultSetPaging'
default:
description: Unexpected error
schema:
$ref: '#/definitions/Error'
definitions:
## Standard definition
Error:
type: object
required:
- error
properties:
error:
type: object
required:
- statusCode
- briefSummary
- stackTrace
- descriptionURL
properties:
errorKey:
type: string
statusCode:
type: integer
format: int32
briefSummary:
type: string
stackTrace:
type: string
descriptionURL:
type: string
logId:
type: string
SearchRequest:
type: object
required:
- query
properties:
query:
$ref: '#/definitions/RequestQuery'
paging:
$ref: '#/definitions/RequestPagination'
include:
$ref: '#/definitions/RequestInclude'
includeRequest:
description: "When true, include the original request in the response"
type: boolean
default: false
fields:
$ref: '#/definitions/RequestFields'
sort:
$ref: '#/definitions/RequestSortDefinition'
templates:
$ref: '#/definitions/RequestTemplates'
defaults:
$ref: '#/definitions/RequestDefaults'
localization:
$ref: '#/definitions/RequestLocalization'
filterQueries:
$ref: '#/definitions/RequestFilterQueries'
facetQueries:
$ref: '#/definitions/RequestFacetQueries'
facetFields:
$ref: '#/definitions/RequestFacetFields'
facetIntervals:
$ref: '#/definitions/RequestFacetIntervals'
pivots:
type: array
items:
$ref: '#/definitions/RequestPivot'
stats:
type: array
items:
$ref: '#/definitions/RequestStats'
spellcheck:
$ref: '#/definitions/RequestSpellcheck'
scope:
$ref: '#/definitions/RequestScope'
limits:
$ref: '#/definitions/RequestLimits'
highlight:
$ref: '#/definitions/RequestHighlight'
ranges:
type: array
items:
$ref: '#/definitions/RequestRange'
RequestInclude:
description: |
Returns additional information about the node. The following optional fields can be requested:
* properties
* aspectNames
* path
* isLink
* allowableOperations
* association
type: array
items:
type: string
enum:
- allowableOperations
- aspectNames
- isLink
- isLocked
- path
- properties
RequestFields:
description: A list of field names.
You can use this parameter to restrict the fields
returned within a response if, for example, you want to save on overall bandwidth.
The list applies to a returned individual
entity or entries within a collection.
If the **include** parameter is used as well then the fields specified in the **include**
parameter are returned in addition to those specified in the **fields** parameter.
type: array
items:
type: string
RequestPivot:
description: A list of pivots.
type: object
properties:
key:
description: A key corresponding to a matching field facet label or stats.
type: string
pivots:
type: array
items:
$ref: '#/definitions/RequestPivot'
RequestLocalization:
description: Localization settings
type: object
properties:
timezone:
description: A valid timezone id supported by @see java.time.ZoneId
type: string
locales:
description: A list of Locales defined by IETF BCP 47. The ordering is
significant. The first locale (leftmost) is used for sort and query
localization, whereas the remaining locales are used for query only.
type: array
items:
type: string
RequestStats:
description: A list of stats request.
type: object
properties:
field:
description: The stats field
type: string
label:
description: A label to include for reference the stats field
type: string
min:
description: The minimum value of the field
type: boolean
default: true
max:
description: The maximum value of the field
type: boolean
default: true
sum:
description: The sum of all values of the field
type: boolean
default: true
countValues:
description: The number which have a value for this field
type: boolean
default: true
missing:
description: The number which do not have a value for this field
type: boolean
default: true
mean:
description: The average
type: boolean
default: true
stddev:
description: Standard deviation
type: boolean
default: true
sumOfSquares:
description: Sum of all values squared
type: boolean
default: true
distinctValues:
description: The set of all distinct values for the field (This can be very
expensive to calculate)
type: boolean
default: false
countDistinct:
description: The number of distinct values (This can be very expensive to
calculate)
type: boolean
default: false
cardinality:
description: A statistical approximation of the number of distinct values
type: boolean
default: false
cardinalityAccuracy:
description: Number between 0.0 and 1.0 indicating how aggressively the algorithm
should try to be accurate. Used with boolean cardinality flag.
type: number
format: float
default: 0.3
excludeFilters:
description: A list of filters to exclude
type: array
items:
type: string
percentiles:
description: A list of percentile values, e.g. "1,99,99.9"
type: array
items:
type: number
format: float
RequestQuery:
description: Query.
type: object
required:
- query
properties:
language:
description: The query language in which the query is written.
type: string
default: afts
enum:
- afts
- lucene
- cmis
userQuery:
description: The exact search request typed in by the user
type: string
query:
description: The query which may have been generated in some way from the userQuery
type: string
# ReponseQuery
ResultSetPaging:
description: Query results
type: object
properties:
list:
type: object
properties:
pagination:
$ref: '#/definitions/Pagination'
context:
$ref: '#/definitions/ResultSetContext'
entries:
type: array
items:
$ref: '#/definitions/ResultSetRowEntry'
ResultSetContext:
description: Context that applies to the whole result set
type: object
properties:
consistency:
$ref: '#/definitions/ResponseConsistency'
request:
$ref: '#/definitions/SearchRequest'
facetQueries:
description: The counts from facet queries
type: array
items:
type: object
properties:
label:
type: string
filterQuery:
description: The filter query you can use to apply this facet
type: string
count:
type: integer
facetsFields:
description: The counts from field facets
type: array
items:
$ref: '#/definitions/ResultBuckets'
facets:
description: The faceted response
type: array
items:
$ref: '#/definitions/GenericFacetResponse'
spellcheck:
description: |
Suggested corrections
If zero results were found for the original query then a single entry of type "searchInsteadFor" will be returned.
If alternatives were found that return more results than the original query they are returned as "didYouMean" options.
The highest quality suggestion is first.
type: array
items:
type: object
properties:
"type":
type: string
enum:
- searchInsteadFor
- didYouMean
suggestion:
description: A suggested alternative query
type: array
items:
type: string
GenericFacetResponse:
type: object
properties:
type:
description: The facet type, eg. interval, range, pivot, stats
type: string
label:
description: The field name or its explicit label, if provided on the request
type: string
buckets:
description: An array of buckets and values
type: array
items:
$ref: '#/definitions/GenericBucket'
GenericBucket:
description: A bucket of facet results
type: object
properties:
label:
description: The bucket label
type: string
filterQuery:
description: The filter query you can use to apply this facet
type: string
display:
description: An optional field for additional display information
type: object
metrics:
description: An array of buckets and values
type: array
items:
$ref: '#/definitions/GenericMetric'
facets:
description: Additional list of nested facets
type: array
items:
type: object
bucketInfo:
description: Additional information of nested facet
type: object
properties:
start:
description: The start of range
type: string
startInclusive:
description: Includes values greater or equal to "start"
type: boolean
end:
description: The end of range
type: string
endInclusive:
description: Includes values less than or equal to "end"
type: boolean
GenericMetric:
description: A metric used in faceting
type: object
properties:
type:
description: The type of metric, e.g. count
type: string
value:
description: |
The metric value, e.g. {"count": 34}
type: object
ResultBuckets:
type: object
properties:
label:
description: The field name or its explicit label, if provided on the request
type: string
buckets:
description: An array of buckets and values
type: array
items:
type: object
properties:
label:
description: The bucket label
type: string
filterQuery:
description: The filter query you can use to apply this facet
type: string
count:
description: The count for the bucket
type: integer
display:
description: An optional field for additional display information
type: object
ResultSetRowEntry:
description: A row in the result set
type: object
required:
- entry
properties:
## Standard response structure
entry:
$ref: '#/definitions/ResultNode'
ResultNode:
allOf:
- $ref: '#/definitions/Node'
- type: object
properties:
search:
$ref: '#/definitions/SearchEntry'
archivedByUser:
$ref: '#/definitions/UserInfo'
archivedAt:
type: string
format: date-time
versionLabel:
type: string
versionComment:
type: string
SearchEntry:
type: object
properties:
score:
description: The score for this row
type: number
format: float
highlight:
description: |
Highlight fragments if requested and available. A match can happen in any of the requested field.
type: array
items:
type: object
properties:
field:
description: The field where a match occurred (one of the fields defined on the request)
type: string
snippets:
description: Any number of snippets for the specified field highlighting the matching text
type: array
items:
description: The highlighted fragment for the field.
type: string
## Standard definition
Node:
type: object
required:
- id
- name
- nodeType
- isFolder
- isFile
- createdAt
- createdByUser
- modifiedAt
- modifiedByUser
properties:
id:
type: string
name:
type: string
pattern: "^(?!(.*[\\\"\\*\\\\\\>\\<\\?\\/\\:\\|]+.*)|(.*[\\.]?.*[\\.]+$)|(.*[ ]+$))"
description: |
The name must not contain spaces or the following special characters: * " < > \ / ? : and |.
The character . must not be used at the end of the name.
nodeType:
type: string
isFolder:
type: boolean
isFile:
type: boolean
isLocked:
type: boolean
default: false
modifiedAt:
type: string
format: date-time
modifiedByUser:
$ref: '#/definitions/UserInfo'
createdAt:
type: string
format: date-time
createdByUser:
$ref: '#/definitions/UserInfo'
parentId:
type: string
isLink:
type: boolean
content:
$ref: '#/definitions/ContentInfo'
aspectNames:
type: array
items:
type: string
properties:
type: object
allowableOperations:
type: array
items:
type: string
path:
$ref: '#/definitions/PathInfo'
## Standard definition
UserInfo:
type: object
required:
- displayName
- id
properties:
displayName:
type: string
id:
type: string
## Standard definition
ContentInfo:
type: object
required:
- mimeType
- mimeTypeName
- sizeInBytes
properties:
mimeType:
type: string
mimeTypeName:
type: string
sizeInBytes:
type: integer
encoding:
type: string
mimeTypeGroup:
type: string
## Standard definition
PathElement:
type: object
properties:
id:
type: string
name:
type: string
## Standard definition
PathInfo:
type: object
properties:
elements:
type: array
items:
$ref: '#/definitions/PathElement'
name:
type: string
isComplete:
type: boolean
RequestDefaults:
description: Common query defaults
type: object
properties:
textAttributes:
description: |
A list of query fields/properties used to expand TEXT: queries.
The default is cm:content.
You could include all content properties using d:content or list all individual content properties or types.
As more terms are included the query size, complexity, memory impact and query time will increase.
type: array
items:
type: string
default: cm:content
defaultFTSOperator:
description: |
The default way to combine query parts when AND or OR is not explicitly stated - includes ! - +
one two three
(one two three)
type: string
default: AND
enum:
- AND
- OR
defaultFTSFieldOperator:
description: |
The default way to combine query parts in field query groups when AND or OR is not explicitly stated - includes ! - +
FIELD:(one two three)
type: string
default: AND
enum:
- AND
- OR
namespace:
description: The default name space to use if one is not provided
type: string
default: cm
defaultFieldName:
type: string
default: TEXT
RequestTemplates:
description: |
Templates used for query expansion.
A template called "WOOF" defined as "%(cm:name cm:title)" allows
WOOF:example
to generate
cm:name:example cm:name:example
type: array
items:
type: object
properties:
name:
description: The template name
type: string
template:
description: The template
type: string
RequestScope:
description: Scope
type: object
properties:
locations:
description: |
The locations to include in the query
type: string
enum:
- nodes
- versions
- deleted-nodes
RequestPagination:
type: object
properties:
maxItems:
description: The maximum number of items to return in the query results
type: integer
minimum: 1
default: 100
skipCount:
description: The number of items to skip from the start of the query set
type: integer
minimum: 0
default: 0
Pagination:
type: object