Files: 1370996e72773275a544e0bdd26ee0f6db0e49d8 / errors / schema / positionLateError.js
281 bytesRaw
1 | const errorSchema = require('./positionError') |
2 | const cloneDeep = require('lodash.clonedeep') |
3 | |
4 | const schema = cloneDeep(errorSchema) |
5 | |
6 | // collapse the details down to be ONLY late error |
7 | schema.properties.type = { $ref: '#/definitions/errorTypes/errorLate' } |
8 | |
9 | module.exports = schema |
10 |
Built with git-ssb-web