mirror of
https://github.com/strapi/strapi.git
synced 2025-07-13 12:02:10 +00:00
23 lines
335 B
JavaScript
23 lines
335 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
type: 'object',
|
|
required: ['error'],
|
|
properties: {
|
|
error: {
|
|
type: 'object',
|
|
properties: {
|
|
status: {
|
|
type: 'integer',
|
|
},
|
|
name: {
|
|
type: 'string',
|
|
},
|
|
message: {
|
|
type: 'string',
|
|
},
|
|
},
|
|
},
|
|
},
|
|
};
|