Documentation
    Preparing search index...

    Detailed information about a single transformation failure.

    Provides the specific schema that failed, its accessor path for locating it within the document, and a message explaining why the transformation failed.

    interface IReason {
        accessor: string;
        message: string;
        schema: OpenApi.IJsonSchema;
    }
    Index

    Properties

    accessor: string

    Path to the failing schema within the document.

    A dot-notation path (e.g., "components.schemas.User.properties.tags") that identifies where the problematic schema is located. Use this to locate and fix the issue in the source OpenAPI document.

    message: string

    Human-readable explanation of the failure.

    Describes why the schema could not be transformed, such as "Tuple type is not supported" or "Cannot resolve $ref reference".

    The schema that caused the transformation failure.

    The actual JSON schema object that could not be transformed. Inspect this to understand the problematic schema structure.