Skip to content
Snippets Groups Projects
group-output.json 473 B
Newer Older
{
  "$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"
  ]
}