@appsemble/utils
Version:
Utility functions used in Appsemble internally
24 lines • 702 B
JavaScript
export const pathItems = {
parameters: [
{ $ref: '#/components/parameters/appId' },
{ name: 'schemaId', in: 'path', schema: { type: 'string' } },
],
get: {
tags: ['main', 'app', 'scim'],
security: [{ scim: [] }],
operationId: 'getAppScimSchema',
responses: {
200: {
description: 'The SCIM Schema',
content: {
'application/scim+json': {
schema: {
$ref: '#/components/schemas/ScimUser',
},
},
},
},
},
},
};
//# sourceMappingURL=schemaId.js.map