1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-03-04 00:18:40 +01:00
unleash.unleash/src/lib/openapi/spec/admin-features-query-schema.ts

33 lines
965 B
TypeScript
Raw Normal View History

import type { FromSchema } from 'json-schema-to-ts';
export const adminFeaturesQuerySchema = {
$id: '#/components/schemas/adminFeaturesQuerySchema',
type: 'object',
additionalProperties: false,
description:
'Query parameters used to modify the list of features returned.',
properties: {
tag: {
type: 'array',
items: {
type: 'string',
pattern: '\\w+:\\w+',
},
description:
'Used to filter by tags. For each entry, a TAGTYPE:TAGVALUE is expected',
example: ['simple:mytag'],
},
namePrefix: {
type: 'string',
description:
'A case-insensitive prefix filter for the names of feature toggles',
example: 'demo.part1',
},
},
components: {},
} as const;
export type AdminFeaturesQuerySchema = FromSchema<
typeof adminFeaturesQuerySchema
>;