Alteryx · Schema

CollectionPermissionFlags

Permission flags for collection access

AnalyticsAutomationData EngineeringData PreparationData ScienceETLMachine-LearningPredictive Analytics

Properties

Name Type Description
isAdmin boolean
canAddAssets boolean
canRemoveAssets boolean
canUpdateAssets boolean
canAddUsers boolean
canRemoveUsers boolean
View JSON Schema on GitHub

JSON Schema

alteryx-server-v3-collection-permission-flags-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "CollectionPermissionFlags",
  "type": "object",
  "description": "Permission flags for collection access",
  "properties": {
    "isAdmin": {
      "type": "boolean"
    },
    "canAddAssets": {
      "type": "boolean"
    },
    "canRemoveAssets": {
      "type": "boolean"
    },
    "canUpdateAssets": {
      "type": "boolean"
    },
    "canAddUsers": {
      "type": "boolean"
    },
    "canRemoveUsers": {
      "type": "boolean"
    }
  }
}