UNPKG

@telstra/iot-connectivity-manager

Version:
15 lines (14 loc) 454 B
export abstract class Schemas { static readonly GET_ALL_SERVICES = { type: 'object', properties: { pageNumber: { type: 'number', minimum: 1 }, pageSize: { type: 'number', minimum: 1, maximum: 100 }, orderBy: { type: 'string' }, orderDirection: { type: 'string', enum: ['ASC', 'DESC'] }, accountNumber: { type: 'string' }, // Add more filter properties as needed }, additionalProperties: true, }; }