@cfxlabsinc/b2b-services
    Preparing search index...

    Type Alias RouteSchema

    The route schema. TypeBox schemas are JSON Schema 2020-12, which is also OpenAPI 3.1's Schema Object, so these pass through to the spec verbatim.

    type RouteSchema = {
        body?: TSchema;
        deprecated?: boolean;
        description?: string;
        headers?: TSchema;
        hide?: boolean;
        operationId?: string;
        params?: TSchema;
        querystring?: TSchema;
        response?: Record<string, TSchema>;
        summary?: string;
        tags?: readonly string[];
    }
    Index
    body?: TSchema
    deprecated?: boolean
    description?: string
    headers?: TSchema
    hide?: boolean
    operationId?: string
    params?: TSchema
    querystring?: TSchema
    response?: Record<string, TSchema>
    summary?: string
    tags?: readonly string[]