Weaviate · Schema

Role

Weaviate Role schema

Vector DatabaseArtificial IntelligenceMachine-LearningSemantic SearchOpen-SourceGraphQLKubernetes

Properties

Name Type Description
name string The name (ID) of the role.
permissions array
View JSON Schema on GitHub

JSON Schema

weaviate-role-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/weaviate/json-schema/weaviate-role-schema.json",
  "title": "Role",
  "description": "Weaviate Role schema",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "The name (ID) of the role."
    },
    "permissions": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Permission"
      }
    }
  },
  "required": [
    "name",
    "permissions"
  ]
}