unleash-server
Version:
Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.
26 lines • 798 B
JavaScript
export const projectActivitySchema = {
$id: '#/components/schemas/projectActivitySchema',
type: 'array',
description: 'An array of project activity information. Each item contains a date and the total number of activities for that date.',
items: {
type: 'object',
additionalProperties: false,
required: ['date', 'count'],
properties: {
date: {
type: 'string',
example: '2022-12-14',
description: 'Activity date',
},
count: {
type: 'integer',
minimum: 0,
description: 'Activity count',
},
},
},
components: {
schemas: {},
},
};
//# sourceMappingURL=project-activity-schema.js.map