interface IAnyOf {
    anyOf: OpenApiV3_1.IJsonSchema[];
    deprecated?: boolean;
    description?: string;
    example?: any;
    examples?: any[] | Record<string, any>;
    title?: string;
}

Hierarchy (View Summary)

Properties

deprecated?: boolean

Whether the type is deprecated or not.

description?: string

Detailed description of the schema.

example?: any

Example value.

examples?: any[] | Record<string, any>
title?: string

Title of the schema.