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

    Interface CompleteSchema

    Complete schema with all definition fields populated. This is what schemas.get() returns - a schema with the definition fetched.

    interface CompleteSchema {
        id: number;
        name: string;
        dialect: "json" | "sqlite";
        definitionUrl: string;
        version: string;
        description?: string;
        dialectVersion?: string;
        schema: string | object;
    }

    Hierarchy (View Summary)

    Index

    Properties

    id: number

    Schema ID

    name: string

    Schema name

    dialect: "json" | "sqlite"

    Schema dialect ('json' or 'sqlite')

    definitionUrl: string

    URL containing the schema definition

    version: string

    Version of the schema

    description?: string

    Optional description of the schema

    dialectVersion?: string

    Optional version of the dialect

    schema: string | object

    The actual schema - JSON Schema object for 'json' dialect, DDL string for 'sqlite'