blob: 21ef46c49043bfa60df6e99ed2e9e467727bb0b5 [file] [log] [blame]
{
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"$comment": "This schema is used in unit tests of cmc's validate command. It makes the 'shell' sandbox feature forbidden.",
"properties": {
"sandbox": {
"type": "object",
"properties": {
"features": {
"type": "array",
"items": {
"not": {
"enum": ["shell"]
}
}
}
}
}
}
}