Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
getTaskSchema(): IJSONSchema {
return {
type: 'object',
properties: {
version: {
type: 'string'
},
tasks: {
type: 'array',
items: {
...deepClone(taskConfigurationSchema)
}
},
inputs: inputsSchema.definitions!.inputs
},
additionalProperties: false
};
}