swagger-typescript-api
    Preparing search index...

    Interface SchemaComponent

    interface SchemaComponent {
        $ref: string;
        componentName: "paths" | "schemas";
        rawTypeData?: {
            $parsed: ParsedSchema<
                | SchemaTypeObjectContent
                | SchemaTypeEnumContent
                | SchemaTypePrimitiveContent,
            >;
            discriminator?: { propertyName?: string };
            properties?: Record<
                string,
                {
                    $parsed?: SchemaTypePrimitiveContent;
                    name?: string;
                    required: boolean;
                    type: string;
                },
            >;
            required?: string[];
            type: string;
        };
        typeData: | null
        | ParsedSchema<
            | SchemaTypeObjectContent
            | SchemaTypeEnumContent
            | SchemaTypePrimitiveContent,
        >;
        typeName: string;
    }
    Index

    Properties

    $ref: string
    componentName: "paths" | "schemas"
    rawTypeData?: {
        $parsed: ParsedSchema<
            | SchemaTypeObjectContent
            | SchemaTypeEnumContent
            | SchemaTypePrimitiveContent,
        >;
        discriminator?: { propertyName?: string };
        properties?: Record<
            string,
            {
                $parsed?: SchemaTypePrimitiveContent;
                name?: string;
                required: boolean;
                type: string;
            },
        >;
        required?: string[];
        type: string;
    }
    typeData:
        | null
        | ParsedSchema<
            | SchemaTypeObjectContent
            | SchemaTypeEnumContent
            | SchemaTypePrimitiveContent,
        >
    typeName: string