Access Control List

An Object

Note

Drop in one of our language drivers to accelerate your development.
Here are links to some of our popular Cookbooks to help you get started!

Properties

The following properties are available:

Property Type Default Read-Only Description
rows array No

Schema


{
  "type": "object",
  "description": "Access Control List",
  "properties": {
    "rows": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "principal-id": {
            "type": "string",
            "description": "The ID of the principal"
          },
          "authorities": {
            "type": "array",
            "items": {
              "type": "string",
              "description": "Authority Key"
            }
          }
        }
      }
    }
  },
  "id": "acl"
}