Weaviate · Schema

ClassificationMeta

Additional information to a specific classification.

Vector DatabaseAIMachine LearningSemantic SearchOpen SourceGraphQLKubernetes

Properties

Name Type Description
started string Time when this classification was started.
completed string Time when this classification finished.
count integer Number of objects which were taken into consideration for classification.
countSucceeded integer Number of objects successfully classified.
countFailed integer Number of objects which could not be classified - see error message for details.
View JSON Schema on GitHub

JSON Schema

weaviate-classificationmeta-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ClassificationMeta",
  "title": "ClassificationMeta",
  "type": "object",
  "description": "Additional information to a specific classification.",
  "properties": {
    "started": {
      "type": "string",
      "format": "date-time",
      "description": "Time when this classification was started.",
      "example": "2017-07-21T17:32:28Z"
    },
    "completed": {
      "type": "string",
      "format": "date-time",
      "description": "Time when this classification finished.",
      "example": "2017-07-21T17:32:28Z"
    },
    "count": {
      "type": "integer",
      "description": "Number of objects which were taken into consideration for classification.",
      "example": 147
    },
    "countSucceeded": {
      "type": "integer",
      "description": "Number of objects successfully classified.",
      "example": 140
    },
    "countFailed": {
      "type": "integer",
      "description": "Number of objects which could not be classified - see error message for details.",
      "example": 7
    }
  }
}