Weaviate · Schema

UserApiKey

Weaviate UserApiKey schema

Vector DatabaseAIMachine LearningSemantic SearchOpen SourceGraphQLKubernetes

Properties

Name Type Description
apikey string The API key associated with the user.
View JSON Schema on GitHub

JSON Schema

weaviate-user-api-key-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/weaviate/json-schema/weaviate-user-api-key-schema.json",
  "title": "UserApiKey",
  "description": "Weaviate UserApiKey schema",
  "type": "object",
  "properties": {
    "apikey": {
      "type": "string",
      "description": "The API key associated with the user."
    }
  },
  "required": [
    "apikey"
  ]
}