Number (double) type info.

interface INumber {
    deprecated?: boolean;
    description?: string;
    enum?: number[];
    example?: any;
    examples?: Record<string, any>;
    title?: string;
    type: "number";
}

Hierarchy (View Summary)

Properties

deprecated?: boolean

Whether the type is deprecated or not.

description?: string

Detailed description of the schema.

enum?: number[]

Enumeration values.

example?: any

Example value.

examples?: Record<string, any>

List of example values as key-value pairs.

title?: string

Title of the schema.

type: "number"

Discriminator value of the type.