Weaviate · Schema

UserOwnInfo

Weaviate UserOwnInfo schema

Vector DatabaseAIMachine LearningSemantic SearchOpen SourceGraphQLKubernetes

Properties

Name Type Description
groups array The groups associated with the user.
roles array
username string The name (ID) of the user.
View JSON Schema on GitHub

JSON Schema

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