Weaviate SchemaCreate

Weaviate SchemaCreate

Certified

Create a Weaviate class schema

Creates a new Weaviate class with the provided properties. Fails if the class already exists; data types must match Weaviate schema types.

yaml
type: io.kestra.plugin.weaviate.SchemaCreate

Send schema creation request to a Weaviate database.

yaml
id: create_weaviate_schema
namespace: company.team

tasks:
  - id: schema
    type: io.kestra.plugin.weaviate.SchemaCreate
    url: "https://demo-cluster-id.weaviate.network"
    apiKey: "{{ secret('WEAVIATE_API_KEY') }}"
    className: Movies
    fields:
      name:
        - string
      description:
        - string
      category:
        - string
Properties
Min length1

Class name where your data will be stored

Min length1

Configure Weaviate endpoint URL

Full http or https host for the Weaviate cluster, including port when not default. Example: localhost: 8080 or https://cluster-id.weaviate.network

Provide managed cluster API key

Optional bearer-style key for hosted Weaviate; if omitted, requests use anonymous access.

SubTypearray

Properties to add to the class

Map of property name to a list of Weaviate data types (e.g. string, int). All listed properties are created on the new class.

Set custom request headers

Key/value headers appended to every call, e.g. extra auth tokens for upstream services.

Reference (ref) of the pluginDefaults to apply to this task.

Whether the schema creation succeeded