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

Example

{
$$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;
}

Properties

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