Vana SDK - v0.1.0
    Preparing search index...

    Data schema interface following the Vana schema specification

    interface DataSchema {
        name: string;
        version: string;
        description?: string;
        dialect: "sqlite" | "json";
        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: "sqlite" | "json"

    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