Tiny Congress Frontend
    Preparing search index...

    Interface components

    interface components {
        headers: never;
        parameters: never;
        pathItems: never;
        requestBodies: never;
        responses: never;
        schemas: {
            BuildInfo: {
                buildTime: string;
                gitSha: string;
                message?: string | null;
                version: string;
            };
            ProblemDetails: {
                detail: string;
                extensions?: { code: string; field?: string | null }
                | null;
                instance?: string | null;
                status: number;
                title: string;
                type: string;
            };
            ProblemExtensions: { code: string; field?: string
            | null };
        };
    }
    Index

    Properties

    headers: never
    parameters: never
    pathItems: never
    requestBodies: never
    responses: never
    schemas: {
        BuildInfo: {
            buildTime: string;
            gitSha: string;
            message?: string | null;
            version: string;
        };
        ProblemDetails: {
            detail: string;
            extensions?: { code: string; field?: string | null }
            | null;
            instance?: string | null;
            status: number;
            title: string;
            type: string;
        };
        ProblemExtensions: { code: string; field?: string
        | null };
    }

    Type Declaration

    • BuildInfo: { buildTime: string; gitSha: string; message?: string | null; version: string }

      Build metadata exposed via GraphQL, REST, and logs.

    • ProblemDetails: {
          detail: string;
          extensions?: { code: string; field?: string | null } | null;
          instance?: string | null;
          status: number;
          title: string;
          type: string;
      }

      RFC 7807 Problem Details error response.

      • detail: string

        Human-readable explanation specific to this occurrence

      • Optionalextensions?: { code: string; field?: string | null } | null
      • Optionalinstance?: string | null

        URI reference identifying the specific occurrence

      • status: number

        Format: int32

        HTTP status code

      • title: string

        Short human-readable summary

      • type: string

        URI reference identifying the problem type

    • ProblemExtensions: { code: string; field?: string | null }

      Extended error information mapping to GraphQL error codes.

      • code: string

        Error code matching GraphQL error codes

      • Optionalfield?: string | null

        Field that caused the error (for validation errors)