mirror of
https://github.com/Unleash/unleash.git
synced 2025-10-13 11:17:26 +02:00
* refactor: add OpenAPI schema to context controller * Update src/lib/routes/admin-api/context.ts Co-authored-by: olav <mail@olav.io> * address PR comments, misc fixes and improvements * refactor: address PR comments * add createdAt to test * fix: reverted upsert schema after discussion Co-authored-by: olav <mail@olav.io>
42 lines
986 B
TypeScript
42 lines
986 B
TypeScript
import { FromSchema } from 'json-schema-to-ts';
|
|
import { legalValueSchema } from './legal-value-schema';
|
|
|
|
export const contextFieldSchema = {
|
|
$id: '#/components/schemas/contextFieldSchema',
|
|
type: 'object',
|
|
additionalProperties: false,
|
|
required: ['name'],
|
|
properties: {
|
|
name: {
|
|
type: 'string',
|
|
},
|
|
description: {
|
|
type: 'string',
|
|
},
|
|
stickiness: {
|
|
type: 'boolean',
|
|
},
|
|
sortOrder: {
|
|
type: 'number',
|
|
},
|
|
createdAt: {
|
|
type: 'string',
|
|
format: 'date-time',
|
|
nullable: true,
|
|
},
|
|
legalValues: {
|
|
type: 'array',
|
|
items: {
|
|
$ref: '#/components/schemas/legalValueSchema',
|
|
},
|
|
},
|
|
},
|
|
components: {
|
|
schemas: {
|
|
legalValueSchema,
|
|
},
|
|
},
|
|
} as const;
|
|
|
|
export type ContextFieldSchema = FromSchema<typeof contextFieldSchema>;
|