{
"type": "object",
"properties": {
"string-policy": { "type": "string" },
"int-policy": { "type": "integer" },
"double-policy": { "type": "number" },
"boolean-policy": { "type": "boolean" },
"list-policy": {
"type": "array",
"items": { "type": "string" }
},
"dict-policy": {
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": { "type": "integer" }
}
}
}
}
}
}