@spailybot/moleculer-auto-openapi - v1.3.2
    Preparing search index...

    Interface FVOARuleMetaKeys

    These keys can be put to use within the rule set of the fastest validator schema, under the $$oa meta parameters.

    {
    $$strict: true,
    foo: {
    $$oa: {
    in: 'body';
    description: "rule description";
    summary: "deprecated rule summary";
    deprecated: true;
    },
    type: "string"
    },
    //the rest of your schema
    }
    interface FVOARuleMetaKeys {
        deprecated?: boolean;
        description?: string;
        in?: "body" | "query";
        optional?: boolean;
        summary?: string;
    }
    Index

    Properties

    deprecated?: boolean
    description?: string
    in?: "body" | "query"
    optional?: boolean
    summary?: string