You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{"main":"cdnapi-process-api.raml","name":"CDN API - Process APIs","classifier":"raml","tags":[],"dependencies":[{"groupId":"893f605e-10e2-423a-bdb4-f952f56eb6d8","assetId":"api-standards","version":"1.1.6"},{"groupId":"893f605e-10e2-423a-bdb4-f952f56eb6d8","assetId":"commerce-cloud-standards","version":"1.0.12"}],"groupId":"893f605e-10e2-423a-bdb4-f952f56eb6d8","backwardsCompatible":false,"assetId":"cdn-api-process-apis","version":"1.0.9","apiVersion":"v1","originalFormatVersion":"1.0"}
1
+
{"main":"cdnapi-process-api.raml","name":"CDN API - Process APIs","classifier":"raml","tags":[],"dependencies":[{"groupId":"893f605e-10e2-423a-bdb4-f952f56eb6d8","assetId":"api-standards","version":"1.1.12"},{"groupId":"893f605e-10e2-423a-bdb4-f952f56eb6d8","assetId":"commerce-cloud-standards","version":"1.0.17"}],"groupId":"893f605e-10e2-423a-bdb4-f952f56eb6d8","backwardsCompatible":false,"assetId":"cdn-api-process-apis","version":"1.0.10","apiVersion":"v1","originalFormatVersion":"1.0"}
Copy file name to clipboardExpand all lines: apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/api-standards/1.1.12/api-standards.raml
usage: Library for types that can act as well described identifers.
3
+
4
+
types:
5
+
UniversallyUniqueIdentifier:
6
+
displayName: Uuid
7
+
description: A universally unique identifier (UUID) for the purpose of uniquely identifying an object in the system. It is defined as a 128-bit hex encoded string of 32 characters separated into 5 groups in a pattern of `{8-4-4-4-12}` (36 characters total, with the `-` separator).
Copy file name to clipboardExpand all lines: apis/cdn/cdn-api-process-apis/exchange_modules/893f605e-10e2-423a-bdb4-f952f56eb6d8/api-standards/1.1.12/dataTypes/pagination-types.raml
+11-2Lines changed: 11 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -8,9 +8,18 @@ types:
8
8
offset:
9
9
description: Used to retrieve the results based on a particular resource offset.
10
10
type: integer
11
+
format: int64
11
12
default: 0
12
13
minimum: 0
13
14
limit:
14
-
description: Maximum records to retrieve per request, not to exceed the maximum defined.
15
+
description: Maximum records to retrieve per request, not to exceed the maximum defined. A limit must be at least 1 so at least one record is returned (if any match the criteria).
15
16
type: integer
16
-
default: 10
17
+
format: int32
18
+
default: 10
19
+
minimum: 1
20
+
total:
21
+
description: The total number of hits that match the search's criteria. This can be greater than the number of results returned as search results are pagenated.
0 commit comments