mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-06 04:19:31 +00:00
19 lines
562 B
YAML
19 lines
562 B
YAML
title: Error is the standard API error response type.
|
|
type: object
|
|
properties:
|
|
detailCode:
|
|
description: DetailCode is the text of the status code returned
|
|
example: Internal Server Error
|
|
type: string
|
|
x-go-name: DetailCode
|
|
messages:
|
|
type: array
|
|
items:
|
|
$ref: './ErrorMessage.yaml'
|
|
x-go-name: Messages
|
|
trackingId:
|
|
description: TrackingID is the request tracking unique identifier
|
|
example: 9cd03ef80e6a425eb6b11bdbb057cdb4
|
|
type: string
|
|
x-go-name: TrackingID
|
|
x-go-package: github.com/sailpoint/atlas-go/atlas/web |