unleash-server
Version:
Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.
21 lines • 837 B
JavaScript
export const createPatSchema = {
$id: '#/components/schemas/createPatSchema',
description: 'Describes the properties required to create a [personal access token](https://docs.getunleash.io/concepts/api-tokens-and-client-keys#personal-access-tokens), or PAT. PATs are automatically scoped to the authenticated user.',
type: 'object',
required: ['description', 'expiresAt'],
properties: {
description: {
type: 'string',
description: `The PAT's description.`,
example: 'user:xyzrandomstring',
},
expiresAt: {
type: 'string',
format: 'date-time',
description: `The PAT's expiration date.`,
example: '2023-04-19T08:15:14.000Z',
},
},
components: {},
};
//# sourceMappingURL=create-pat-schema.js.map