@typia/website
    Preparing search index...

    Interface IOpenApiSchemaError

    OpenAPI schema related error.

    IOpenApiSchemaError is a type representing an error that occurred during the iteration or transformation of the OpenAPI schema (JSON schema) of OpenApi.IJsonSchema type.

    The most IOpenApiSchemaError is occurred by the transformation process from OpenApi.IJsonSchema to ILlmSchema type. The transformation can be failed by following reasons:

    Jeongho Nam - https://github.com/samchon

    interface IOpenApiSchemaError {
        message: string;
        method: string;
        reasons: IReason[];
    }
    Index

    Properties

    message: string

    Message of the error.

    method: string

    Method that caused the error.

    reasons: IReason[]

    The detailed reasons of the error.