@spailybot/moleculer-auto-openapi - v2.0.0
    Preparing search index...

    Interface FVOASchemaMetaKeys

    These keys can be utilized at the root level of the fastest validator schema within the $$oa meta parameters.

    {
    $$oa: {
    description: "my description",
    summary: "my summary",
    externalDocs: { url: "https://example.com" }
    },
    $$strict: true,
    foo: "string",
    //the rest of your schema
    }
    interface FVOASchemaMetaKeys {
        description?: string;
        required?: boolean;
        summary?: string;
        [key: string]: any;
    }

    Hierarchy

    Indexable

    • [key: string]: any
    Index
    description?: string
    required?: boolean
    summary?: string