Unified.to · Schema

StoragePermission

IntegrationsUnified API

Properties

Name Type Description
group_id string
is_hidden boolean
is_public boolean
roles object
user_id string
View JSON Schema on GitHub

JSON Schema

unified-to-storagepermission-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StoragePermission",
  "title": "StoragePermission",
  "properties": {
    "group_id": {
      "type": "string"
    },
    "is_hidden": {
      "type": "boolean"
    },
    "is_public": {
      "type": "boolean"
    },
    "roles": {
      "$ref": "#/components/schemas/property_StoragePermission_roles"
    },
    "user_id": {
      "type": "string"
    }
  },
  "required": [
    "roles"
  ],
  "type": "object"
}