Permissions
The "permissions" structure represents a set of permissions for accessing, modifying, and referencing other data objects. These permissions can be specified for different contexts, keys, actors, and objects. The "permissions" object has three keys: access, modify, and reference, each of which represents a different type of permission.
Example
"permissions":{
"access": {
"public":[
{
"context":"",
"keys":[""]
}
],
"private":[
{
"context":"",
"keys":[""],
"actors":[""],
"objects":[""]
}
]
},
"modify":[
{
"context":"",
"keys":[""],
"actors":[""],
"objects":[""]
}
],
"reference":[
{
"context":"",
"keys":[""],
"actors":[""],
"objects":[""]
}
]
}