Skip to main content

Access

Access permissions define access rights for different data structures within certain context.

By default all data is publicaly accessible, unless public or private objects are present.

Public Access

Array of objects that define contexts that are publicaly available. If public object is not present, every data point is public unless excluded by private access object.

KeyTypeDescription
contextstringDefinies context
keysArray of stringsKey within context

Private Access

Array that defines contexts that are privately available.

When Objects receive private access, they function like digital keys that unlock the content.

KeyTypeDescription
contextstringDefinies context
keysArray of stringsKey within context
actorsArray of ActorsArray of actors that can access this context
objectsArray of ObjectsArray of objects that can access this context
"access": {
"public":[
{
"context":"",
"keys":[""]
}
],
"private":[
{
"context":"",
"keys":[""],
"actors":[""],
"objects":[""]
}
]
}