{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ErrorDetails", "title": "ErrorDetails", "type": "object", "required": [ "Message", "Code" ], "properties": { "Message": { "allOf": [ { "$ref": "#/components/schemas/stringType" }, { "description": "Detailed information about the reason that the operation failed." } ] }, "Code": { "allOf": [ { "$ref": "#/components/schemas/stringType" }, { "description": "The error code associated with the operation failure." } ] } }, "description": "
Contains information about the reason that the operation failed.
This data type is used as a response element in the GetOrganizationsAccessReport, GetServiceLastAccessedDetails, and GetServiceLastAccessedDetailsWithEntities operations.
" }