@telstra/iot-connectivity-manager
Version:
Telstra IoT Connectivity Manager
15 lines (14 loc) • 454 B
text/typescript
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,
};
}