Weaviate · JSON Structure

Weaviate Classification Meta Structure

Additional information to a specific classification.

Type: object Properties: 5
Vector DatabaseAIMachine LearningSemantic SearchOpen SourceGraphQLKubernetes

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

Properties

started completed count countSucceeded countFailed

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-classification-meta-structure.json",
  "title": "ClassificationMeta",
  "description": "Additional information to a specific classification.",
  "type": "object",
  "properties": {
    "started": {
      "type": "datetime",
      "description": "Time when this classification was started."
    },
    "completed": {
      "type": "datetime",
      "description": "Time when this classification finished."
    },
    "count": {
      "type": "int32",
      "description": "Number of objects which were taken into consideration for classification."
    },
    "countSucceeded": {
      "type": "int32",
      "description": "Number of objects successfully classified."
    },
    "countFailed": {
      "type": "int32",
      "description": "Number of objects which could not be classified - see error message for details."
    }
  }
}