aboutsummaryrefslogtreecommitdiffstats
path: root/packages/json-schemas/schemas/paginated_collection_schema.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/json-schemas/schemas/paginated_collection_schema.ts')
-rw-r--r--packages/json-schemas/schemas/paginated_collection_schema.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/json-schemas/schemas/paginated_collection_schema.ts b/packages/json-schemas/schemas/paginated_collection_schema.ts
index 2c29ef4e0..abd86f1ef 100644
--- a/packages/json-schemas/schemas/paginated_collection_schema.ts
+++ b/packages/json-schemas/schemas/paginated_collection_schema.ts
@@ -2,9 +2,9 @@ export const paginatedCollectionSchema = {
id: '/PaginatedCollection',
type: 'object',
properties: {
- total: { $ref: '/Number' },
- perPage: { $ref: '/Number' },
- page: { $ref: '/Number' },
+ total: { type: 'number' },
+ perPage: { type: 'number' },
+ page: { type: 'number' },
},
required: ['total', 'perPage', 'page'],
};