Weaviate · JSON Structure

Weaviate Link Structure

Weaviate Link schema

Type: object Properties: 4
Vector DatabaseAIMachine LearningSemantic SearchOpen SourceGraphQLKubernetes

Weaviate Link Structure is a JSON Structure definition published by Weaviate, describing 4 properties. It conforms to the https://json-structure.org/meta/extended/v0/# meta-schema.

Properties

href rel name documentationHref

Meta-schema: https://json-structure.org/meta/extended/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/extended/v0/#",
  "$id": "https://api-evangelist.github.io/weaviate/json-structure/weaviate-link-structure.json",
  "title": "Link",
  "description": "Weaviate Link schema",
  "type": "object",
  "properties": {
    "href": {
      "type": "str",
      "description": "Target of the link."
    },
    "rel": {
      "type": "str",
      "description": "Relationship if both resources are related, e.g. 'next', 'previous', 'parent', etc."
    },
    "name": {
      "type": "str",
      "description": "Human readable name of the resource group."
    },
    "documentationHref": {
      "type": "str",
      "description": "Weaviate documentation about this resource group."
    }
  }
}