@spailybot/moleculer-auto-openapi - v1.3.2
    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"
    },
    $$strict: true,
    foo: "string",
    //the rest of your schema
    }
    interface FVOASchemaMetaKeys {
        description?: string;
        summary?: string;
    }
    Index

    Properties

    description?: string
    summary?: string