aboutsummaryrefslogtreecommitdiffstats
path: root/packages/json-schemas/schemas
diff options
context:
space:
mode:
authorfragosti <francesco.agosti93@gmail.com>2018-08-01 07:37:51 +0800
committerfragosti <francesco.agosti93@gmail.com>2018-08-01 07:37:51 +0800
commit4aff9515d807feb5fc30431d109d503a6c52f0cd (patch)
tree49c98689c083cdb0fd3992768d924a92ccfbd243 /packages/json-schemas/schemas
parent162fe797fcd4c41d8d84184ca5c0352c8342937b (diff)
downloaddexon-sol-tools-4aff9515d807feb5fc30431d109d503a6c52f0cd.tar
dexon-sol-tools-4aff9515d807feb5fc30431d109d503a6c52f0cd.tar.gz
dexon-sol-tools-4aff9515d807feb5fc30431d109d503a6c52f0cd.tar.bz2
dexon-sol-tools-4aff9515d807feb5fc30431d109d503a6c52f0cd.tar.lz
dexon-sol-tools-4aff9515d807feb5fc30431d109d503a6c52f0cd.tar.xz
dexon-sol-tools-4aff9515d807feb5fc30431d109d503a6c52f0cd.tar.zst
dexon-sol-tools-4aff9515d807feb5fc30431d109d503a6c52f0cd.zip
Get schema tests running (not crashiing)
Diffstat (limited to 'packages/json-schemas/schemas')
-rw-r--r--packages/json-schemas/schemas/paginated_collection_schema.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/json-schemas/schemas/paginated_collection_schema.ts b/packages/json-schemas/schemas/paginated_collection_schema.ts
index 5dd82ab3d..2c29ef4e0 100644
--- a/packages/json-schemas/schemas/paginated_collection_schema.ts
+++ b/packages/json-schemas/schemas/paginated_collection_schema.ts
@@ -3,8 +3,8 @@ export const paginatedCollectionSchema = {
type: 'object',
properties: {
total: { $ref: '/Number' },
- per_page: { $ref: '/Number' },
+ perPage: { $ref: '/Number' },
page: { $ref: '/Number' },
},
- required: ['total', 'per_page', 'page'],
+ required: ['total', 'perPage', 'page'],
};