@appsemble/lang-sdk
Version:
Language SDK for Appsemble
15 lines • 540 B
JavaScript
export const FilterParametersDefinition = {
type: 'object',
description: 'An object describing the comparison that should be applied to the key in an OData filter.',
additionalProperties: false,
properties: {
type: {
enum: ['Boolean', 'String', 'Number', 'Date', 'Guid'],
},
value: { $ref: '#/components/schemas/RemapperDefinition' },
comparator: {
enum: ['eq', 'ge', 'gt', 'le', 'lt', 'ne'],
},
},
};
//# sourceMappingURL=FilterParametersDefinition.js.map