Type Alias TenantPatchErrors

type TenantPatchErrors = {
    errors?: {
        code: string;
        meta?: { code?: string; title?: string };
        source?: { parameter?: string; pointer?: string };
        title: string;
    }[];
}
Index

Properties

Properties

errors?: {
    code: string;
    meta?: { code?: string; title?: string };
    source?: { parameter?: string; pointer?: string };
    title: string;
}[]

Type declaration

  • code: string

    The error code.

  • Optionalmeta?: { code?: string; title?: string }

    Additional properties relating to the error.

    • Optionalcode?: string

      The error code.

    • Optionaltitle?: string

      Summary of the problem.

  • Optionalsource?: { parameter?: string; pointer?: string }

    References to the source of the error.

    • Optionalparameter?: string

      The URI query parameter that caused the error.

    • Optionalpointer?: string

      A JSON Pointer to the property that caused the error.

  • title: string

    Summary of the problem.