@appsemble/utils
Version:
Utility functions used in Appsemble internally
30 lines • 1.01 kB
JavaScript
export const resource = {
description: 'A resource definition',
content: {
'application/json': {
schema: {
$ref: '#/components/schemas/Resource',
},
},
'multipart/form-data': {
schema: {
type: 'object',
required: ['resource'],
description: 'A `multipart/form-data` representation of a resource.',
additionalProperties: false,
properties: {
resource: { $ref: '#/components/schemas/Resource' },
assets: {
type: 'array',
description: 'A list of assets that should be linked to the resource.',
items: {
type: 'string',
format: 'binary',
},
},
},
},
},
},
};
//# sourceMappingURL=resource.js.map