interface IOneOf {
    deprecated?: boolean;
    description?: string;
    example?: any;
    examples?: any[];
    title?: string;
    "x-oneOf": SwaggerV2.IJsonSchema[];
}

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[]
title?: string

Title of the schema.

"x-oneOf": SwaggerV2.IJsonSchema[]