soajs.multitenant
Version:
soajs multitenant service
44 lines (38 loc) • 935 B
JavaScript
/**
* @license
* Copyright SOAJS All Rights Reserved.
*
* Use of this source code is governed by an Apache license that can be
* found in the LICENSE file at the root of this repository
*/
;
let updateAppSchema = {
"type": "object",
"required": true,
"additionalProperties": false,
"properties": {
"result": {
"type": "boolean",
"required": true
},
"data": {
"type": "integer",
"required": false
},
"errors": {
"type": "object",
"required": false,
"properties": {
"codes": {
"type": "array",
"required": true
},
"details": {
"type": "array",
"required": true
}
}
}
}
};
module.exports = updateAppSchema;