Interface ErrorSourceAttribute<T>

interface ErrorSourceAttribute<T> {
    parameter: keyof T;
    pointer: keyof T;
}

Type Parameters

  • T

Properties

Properties

parameter: keyof T

A string indicating which URI query parameter caused the error.

Default Value

undefined

pointer: keyof T

A JSON Pointer [RFC6901] to the associated entity in the request document [e.g. /data for a primary data object, or /data/attributes/title for a specific attribute].

Default Value

"location"

Generated using TypeDoc