Export

GetSchemaResponse

interface GetSchemaResponse {
    _links?: GetSchemaResponseLinks;
    errors?: Error[];
    payload?: {
        [key: string]: object;
    };
}

Properties

Memberof

GetSchemaResponse

errors?: Error[]

A list of error responses returned when a request is unsuccessful.

Memberof

GetSchemaResponse

payload?: {
    [key: string]: object;
}

A JSON schema document describing the expected payload of the action. This object can be validated against http://json-schema.org/draft-04/schema.

Type declaration

  • [key: string]: object

Memberof

GetSchemaResponse