Newer
Older
Colton Leekley-Winslow
committed
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"name": {
"type": "string"
},
"roles": {
"type": "array",
"items": {"$ref": "permission.json"},
"uniqueItems": true
},
"created": {
"type": "string"
},
"modified": {
"type": "string"
},
"_id": {
"type": "string"
}
},
"required": [
"roles",
"created",
"modified",
"_id"
]
}