AIRI Server API - v0.10.2
    Preparing search index...

    Interface ModuleConfigSchema

    Static schema metadata for module configuration. This is transport-friendly and can be paired with a JSON Schema-like object.

    Example: { id: "airi.config.stage-ui", version: 2, schema: { type: "object", properties: { model: { type: "string" } }, required: ["model"] }, }

    interface ModuleConfigSchema {
        id: string;
        version: number;
        schema?: Record<string, unknown>;
    }
    Index

    Properties

    Properties

    id: string
    version: number
    schema?: Record<string, unknown>

    Optional JSON Schema-like descriptor for tooling/validation. Keep it JSON-serializable and avoid runtime-only values.