ErrorDetails

An object containing an error message, if there was an error.

Amazon Web ServicesData IntegrationData MatchingEntity ResolutionMachine Learning

Properties

Name Type Description
errorMessage object
View JSON Schema on GitHub

JSON Schema

amazon-entity-resolution-error-details-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-entity-resolution/refs/heads/main/json-schema/amazon-entity-resolution-error-details-schema.json",
  "title": "ErrorDetails",
  "description": "An object containing an error message, if there was an error.",
  "type": "object",
  "properties": {
    "errorMessage": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ErrorMessage"
        },
        {
          "description": "The error message from the job, if there is one."
        }
      ]
    }
  }
}