mirror of
https://github.com/joelwmale/webhook-action.git
synced 2024-08-25 08:08:00 +00:00
18 lines
278 B
JavaScript
18 lines
278 B
JavaScript
|
// Standard YAML's Failsafe schema.
|
||
|
// http://www.yaml.org/spec/1.2/spec.html#id2802346
|
||
|
|
||
|
|
||
|
'use strict';
|
||
|
|
||
|
|
||
|
var Schema = require('../schema');
|
||
|
|
||
|
|
||
|
module.exports = new Schema({
|
||
|
explicit: [
|
||
|
require('../type/str'),
|
||
|
require('../type/seq'),
|
||
|
require('../type/map')
|
||
|
]
|
||
|
});
|