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

31 lines
869 B
TypeScript
Raw Normal View History

import { FromSchema } from 'json-schema-to-ts';
export const adminFeaturesQuerySchema = {
$id: '#/components/schemas/adminFeaturesQuerySchema',
type: 'object',
additionalProperties: false,
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
>;