Weaviate · JSON Structure

Weaviate C11Y Extension Structure

A resource describing an extension to the contextinoary, containing both the identifier and the definition of the extension

Type: object Properties: 3
Vector DatabaseAIMachine LearningSemantic SearchOpen SourceGraphQLKubernetes

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

Properties

concept definition weight

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-c11y-extension-structure.json",
  "title": "C11yExtension",
  "description": "A resource describing an extension to the contextinoary, containing both the identifier and the definition of the extension",
  "type": "object",
  "properties": {
    "concept": {
      "type": "str",
      "description": "The new concept you want to extend. Must be an all-lowercase single word, or a space delimited compound word. Examples: 'foobarium', 'my custom concept'"
    },
    "definition": {
      "type": "str",
      "description": "A list of space-delimited words or a sentence describing what the custom concept is about. Avoid using the custom concept itself. An Example definition for the custom concept 'foobarium': would be 'a naturally occurring element which can only be seen by programmers'"
    },
    "weight": {
      "type": "float32",
      "description": "Weight of the definition of the new concept where 1='override existing definition entirely' and 0='ignore custom definition'. Note that if the custom concept is not present in the contextionary yet, the weight cannot be less than 1."
    }
  }
}