GetSchemaResponse

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

Properties

GetSchemaResponse

errors?: Error[]

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

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.

GetSchemaResponse