Vana SDK - v2.2.2
    Preparing search index...

    Interface DataSchema

    Data schema interface following the Vana schema specification

    interface DataSchema {
        name: string;
        version: string;
        description?: string;
        dialect: "json" | "sqlite";
        dialectVersion?: string;
        schema: string | object;
    }
    Index

    Properties

    name: string

    The name of the data schema

    version: string

    The version of the data schema

    description?: string

    Optional description of the data schema

    dialect: "json" | "sqlite"

    The dialect type - either SQLite or JSON

    dialectVersion?: string

    Optional version of the dialect

    schema: string | object

    The actual schema definition as string or object