Amazon Entity Resolution API

API for creating and managing matching workflows, schema mappings, and ID mapping tables for matching and linking related records across data sources.

Documentation

Specifications

Schemas & Data

Other Resources

OpenAPI Specification

amazon-entity-resolution-openapi.yml Raw ↑
openapi: 3.0.0
info:
  version: '2018-05-10'
  x-release: v4
  title: AWS EntityResolution
  description: '<p>Welcome to the <i>AWS Entity Resolution API Reference</i>.</p> <p>AWS Entity Resolution is an AWS service that provides pre-configured entity resolution capabilities that enable developers
    and analysts at advertising and marketing companies to build an accurate and complete view of their consumers.</p> <p> With AWS Entity Resolution, you have the ability to match source records containing
    consumer identifiers, such as name, email address, and phone number. This holds true even when these records have incomplete or conflicting identifiers. For example, AWS Entity Resolution can effectively
    match a source record from a customer relationship management (CRM) system, which includes account information like first name, last name, postal address, phone number, and email address, with a source
    record from a marketing system containing campaign information, such as username and email address.</p> <p>To learn more about AWS Entity Resolution concepts, procedures, and best practices, see the
    <a href="https://docs.aws.amazon.com/entityresolution/latest/userguide/what-is-service.html">AWS Entity Resolution User Guide</a>.</p>'
  x-logo:
    url: 'https://twitter.com/awscloud/profile_image?size=original'
    backgroundColor: '#FFFFFF'
  termsOfService: 'https://aws.amazon.com/service-terms/'
  contact:
    name: Mike Ralphson
    email: [email protected]
    url: 'https://github.com/mermade/aws2openapi'
    x-twitter: PermittedSoc
  license:
    name: Apache 2.0 License
    url: 'http://www.apache.org/licenses/'
  x-providerName: amazonaws.com
  x-serviceName: entityresolution
  x-aws-signingName: entityresolution
  x-origin:
  - contentType: application/json
    url: 'https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/entityresolution-2018-05-10.normal.json'
    converter:
      url: 'https://github.com/mermade/aws2openapi'
      version: 1.0.0
    x-apisguru-driver: external
  x-apiClientRegistration:
    url: 'https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct'
  x-apisguru-categories:
  - cloud
  x-preferred: true
externalDocs:
  description: Amazon Web Services documentation
  url: 'https://docs.aws.amazon.com/entityresolution/'
servers:
- url: 'http://entityresolution.{region}.amazonaws.com'
  variables:
    region:
      description: The AWS region
      enum:
      - us-east-1
      - us-east-2
      - us-west-1
      - us-west-2
      - us-gov-west-1
      - us-gov-east-1
      - ca-central-1
      - eu-north-1
      - eu-west-1
      - eu-west-2
      - eu-west-3
      - eu-central-1
      - eu-south-1
      - af-south-1
      - ap-northeast-1
      - ap-northeast-2
      - ap-northeast-3
      - ap-southeast-1
      - ap-southeast-2
      - ap-east-1
      - ap-south-1
      - sa-east-1
      - me-south-1
      default: us-east-1
  description: The AWSEntityResolution multi-region endpoint
- url: 'https://entityresolution.{region}.amazonaws.com'
  variables:
    region:
      description: The AWS region
      enum:
      - us-east-1
      - us-east-2
      - us-west-1
      - us-west-2
      - us-gov-west-1
      - us-gov-east-1
      - ca-central-1
      - eu-north-1
      - eu-west-1
      - eu-west-2
      - eu-west-3
      - eu-central-1
      - eu-south-1
      - af-south-1
      - ap-northeast-1
      - ap-northeast-2
      - ap-northeast-3
      - ap-southeast-1
      - ap-southeast-2
      - ap-east-1
      - ap-south-1
      - sa-east-1
      - me-south-1
      default: us-east-1
  description: The AWSEntityResolution multi-region endpoint
- url: 'http://entityresolution.{region}.amazonaws.com.cn'
  variables:
    region:
      description: The AWS region
      enum:
      - cn-north-1
      - cn-northwest-1
      default: cn-north-1
  description: The AWSEntityResolution endpoint for China (Beijing) and China (Ningxia)
- url: 'https://entityresolution.{region}.amazonaws.com.cn'
  variables:
    region:
      description: The AWS region
      enum:
      - cn-north-1
      - cn-northwest-1
      default: cn-north-1
  description: The AWSEntityResolution endpoint for China (Beijing) and China (Ningxia)
x-hasEquivalentPaths: true
paths:
  /matchingworkflows:
    post:
      operationId: CreateMatchingWorkflow
      description: 'Creates a <code>MatchingWorkflow</code> object which stores the configuration of the data processing job to be run. It is important to note that there should not be a pre-existing <code>MatchingWorkflow</code>
        with the same name. To modify an existing workflow, utilize the <code>UpdateMatchingWorkflow</code> API.'
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreateMatchingWorkflowOutput'
              examples:
                CreateMatchingWorkflow200Example:
                  summary: Default CreateMatchingWorkflow 200 response
                  x-microcks-default: true
                  value:
                    description: Example description
                    incrementalRunConfig: example
                    inputSourceConfig: example
                    outputSourceConfig: example
                    resolutionTechniques: example
        '480':
          description: ThrottlingException
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ThrottlingException'
              examples:
                CreateMatchingWorkflow480Example:
                  summary: Default CreateMatchingWorkflow 480 response
                  x-microcks-default: true
                  value: {}
        '481':
          description: InternalServerException
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InternalServerException'
              examples:
                CreateMatchingWorkflow481Example:
                  summary: Default CreateMatchingWorkflow 481 response
                  x-microcks-default: true
                  value: {}
        '482':
          description: AccessDeniedException
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AccessDeniedException'
              examples:
                CreateMatchingWorkflow482Example:
                  summary: Default CreateMatchingWorkflow 482 response
                  x-microcks-default: true
                  value: {}
        '483':
          description: ExceedsLimitException
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ExceedsLimitException'
              examples:
                CreateMatchingWorkflow483Example:
                  summary: Default CreateMatchingWorkflow 483 response
                  x-microcks-default: true
                  value: {}
        '484':
          description: ConflictException
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ConflictException'
              examples:
                CreateMatchingWorkflow484Example:
                  summary: Default CreateMatchingWorkflow 484 response
                  x-microcks-default: true
                  value: {}
        '485':
          description: ValidationException
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationException'
              examples:
                CreateMatchingWorkflow485Example:
                  summary: Default CreateMatchingWorkflow 485 response
                  x-microcks-default: true
                  value: {}
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - inputSourceConfig
              - outputSourceConfig
              - resolutionTechniques
              - roleArn
              - workflowName
              properties:
                description:
                  description: A description of the workflow.
                  type: string
                  minLength: 0
                  maxLength: 255
                incrementalRunConfig:
                  description: An object which defines an incremental run type and has only <code>incrementalRunType</code> as a field.
                  type: object
                  properties:
                    incrementalRunType:
                      allOf:
                      - $ref: '#/components/schemas/IncrementalRunType'
                      - description: 'The type of incremental run. It takes only one value: <code>IMMEDIATE</code>.'
                inputSourceConfig:
                  description: 'A list of <code>InputSource</code> objects, which have the fields <code>InputSourceARN</code> and <code>SchemaName</code>.'
                  type: array
                  items:
                    $ref: '#/components/schemas/InputSource'
                  minItems: 1
                  maxItems: 20
                outputSourceConfig:
                  description: 'A list of <code>OutputSource</code> objects, each of which contains fields <code>OutputS3Path</code>, <code>ApplyNormalization</code>, and <code>Output</code>.'
                  type: array
                  items:
                    $ref: '#/components/schemas/OutputSource'
                  minItems: 1
                  maxItems: 1
                resolutionTechniques:
                  description: 'An object which defines the <code>resolutionType</code> and the <code>ruleBasedProperties</code> '
                  type: object
                  properties:
                    resolutionType:
                      allOf:
                      - $ref: '#/components/schemas/ResolutionType'
                      - description: 'There are two types of matching, <code>RULE_MATCHING</code> and <code>ML_MATCHING</code> '
                    ruleBasedProperties:
                      allOf:
                      - $ref: '#/components/schemas/RuleBasedProperties'
                      - description: 'An object which defines the list of matching rules to run and has a field <code>Rules</code>, which is a list of rule objects.'
                roleArn:
                  description: The Amazon Resource Name (ARN) of the IAM role. AWS Entity Resolution assumes this role to create resources on your behalf as part of workflow execution.
                  type: string
                tags:
                  description: 'The tags used to organize, track, or control access for this resource.'
                  type: object
                  minProperties: 0
                  maxProperties: 200
                  additionalProperties:
                    $ref: '#/components/schemas/TagValue'
                workflowName:
                  description: The name of the workflow. There cannot be multiple <code>DataIntegrationWorkflows</code> with the same name.
                  type: string
                  pattern: '^[a-zA-Z_0-9-]*$'
                  minLength: 0
                  maxLength: 255
            examples:
              CreateMatchingWorkflowRequestExample:
                summary: Default CreateMatchingWorkflow request
                x-microcks-default: true
                value:
                  description: Example description
                  incrementalRunConfig: {}
                  inputSourceConfig: []
                  outputSourceConfig: []
                  resolutionTechniques: {}
      summary: Amazon Entity Resolution CreateMatchingWorkflow
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    parameters:
    - $ref: '#/components/parameters/X-Amz-Content-Sha256'
    - $ref: '#/components/parameters/X-Amz-Date'
    - $ref: '#/components/parameters/X-Amz-Algorithm'
    - $ref: '#/components/parameters/X-Amz-Credential'
    - $ref: '#/components/parameters/X-Amz-Security-Token'
    - $ref: '#/components/parameters/X-Amz-Signature'
    - $ref: '#/components/parameters/X-Amz-SignedHeaders'
    get:
      operationId: ListMatchingWorkflows
      description: Returns a list of all the <code>MatchingWorkflows</code> that have been created for an AWS account.
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListMatchingWorkflowsOutput'
              examples:
                ListMatchingWorkflows200Example:
                  summary: Default ListMatchingWorkflows 200 response
                  x-microcks-default: true
                  value:
                    nextToken: example
                    workflowSummaries: example
        '480':
          description: ThrottlingException
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ThrottlingException'
              examples:
                ListMatchingWorkflows480Example:
                  summary: Default ListMatchingWorkflows 480 response
                  x-microcks-default: true
                  value: {}
        '481':
          description: InternalServerException
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InternalServerException'
              examples:
                ListMatchingWorkflows481Example:
                  summary: Default ListMatchingWorkflows 481 response
                  x-microcks-default: true
                  value: {}
        '482':
          description: AccessDeniedException
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AccessDeniedException'
              examples:
                ListMatchingWorkflows482Example:
                  summary: Default ListMatchingWorkflows 482 response
                  x-microcks-default: true
                  value: {}
        '483':
          description: ValidationException
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationException'
              examples:
                ListMatchingWorkflows483Example:
                  summary: Default ListMatchingWorkflows 483 response
                  x-microcks-default: true
                  value: {}
      parameters:
      - name: maxResults
        in: query
        required: false
        description: The maximum number of objects returned per page.
        schema:
          type: integer
          maximum: 25
      - name: nextToken
        in: query
        required: false
        description: The pagination token from the previous <code>ListSchemaMappings</code> API call.
        schema:
          type: string
          pattern: '^[a-zA-Z_0-9-=+/]*$'
          minLength: 1
          maxLength: 1024
      summary: Amazon Entity Resolution ListMatchingWorkflows
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /schemas:
    post:
      operationId: CreateSchemaMapping
      description: 'Creates a schema mapping, which defines the schema of the input customer records table. The <code>SchemaMapping</code> also provides Entity Resolution with some metadata about the table,
        such as the attribute types of the columns and which columns to match on.'
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreateSchemaMappingOutput'
              examples:
                CreateSchemaMapping200Example:
                  summary: Default CreateSchemaMapping 200 response
                  x-microcks-default: true
                  value:
                    description: Example description
                    mappedInputFields: example
                    schemaArn: arn:aws:service:us-east-1:123456789012:resource/example
                    schemaName: example-name
        '480':
          description: ThrottlingException
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ThrottlingException'
              examples:
                CreateSchemaMapping480Example:
                  summary: Default CreateSchemaMapping 480 response
                  x-microcks-default: true
                  value: {}
        '481':
          description: InternalServerException
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InternalServerException'
              examples:
                CreateSchemaMapping481Example:
                  summary: Default CreateSchemaMapping 481 response
                  x-microcks-default: true
                  value: {}
        '482':
          description: AccessDeniedException
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AccessDeniedException'
              examples:
                CreateSchemaMapping482Example:
                  summary: Default CreateSchemaMapping 482 response
                  x-microcks-default: true
                  value: {}
        '483':
          description: ExceedsLimitException
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ExceedsLimitException'
              examples:
                CreateSchemaMapping483Example:
                  summary: Default CreateSchemaMapping 483 response
                  x-microcks-default: true
                  value: {}
        '484':
          description: ConflictException
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ConflictException'
              examples:
                CreateSchemaMapping484Example:
                  summary: Default CreateSchemaMapping 484 response
                  x-microcks-default: true
                  value: {}
        '485':
          description: ValidationException
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationException'
              examples:
                CreateSchemaMapping485Example:
                  summary: Default CreateSchemaMapping 485 response
                  x-microcks-default: true
                  value: {}
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - schemaName
              properties:
                description:
                  description: A description of the schema.
                  type: string
                  minLength: 0
                  maxLength: 255
                mappedInputFields:
                  description: 'A list of <code>MappedInputFields</code>. Each <code>MappedInputField</code> corresponds to a column the source data table, and contains column name plus additional information
                    that Entity Resolution uses for matching.'
                  type: array
                  items:
                    $ref: '#/components/schemas/SchemaInputAttribute'
                  minItems: 2
                  maxItems: 25
                schemaName:
                  description: The name of the schema. There cannot be multiple <code>SchemaMappings</code> with the same name.
                  type: string
                  pattern: '^[a-zA-Z_0-9-]*$'
                  minLength: 0
                  maxLength: 255
                tags:
                  description: 'The tags used to organize, track, or control access for this resource.'
                  type: object
                  minProperties: 0
                  maxProperties: 200
                  additionalProperties:
                    $ref: '#/components/schemas/TagValue'
            examples:
              CreateSchemaMappingRequestExample:
                summary: Default CreateSchemaMapping request
                x-microcks-default: true
                value:
                  description: Example description
                  mappedInputFields: []
                  schemaName: example-name
                  tags: {}
      summary: Amazon Entity Resolution CreateSchemaMapping
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    parameters:
    - $ref: '#/components/parameters/X-Amz-Content-Sha256'
    - $ref: '#/components/parameters/X-Amz-Date'
    - $ref: '#/components/parameters/X-Amz-Algorithm'
    - $ref: '#/components/parameters/X-Amz-Credential'
    - $ref: '#/components/parameters/X-Amz-Security-Token'
    - $ref: '#/components/parameters/X-Amz-Signature'
    - $ref: '#/components/parameters/X-Amz-SignedHeaders'
    get:
      operationId: ListSchemaMappings
      description: Returns a list of all the <code>SchemaMappings</code> that have been created for an AWS account.
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListSchemaMappingsOutput'
              examples:
                ListSchemaMappings200Example:
                  summary: Default ListSchemaMappings 200 response
                  x-microcks-default: true
                  value:
                    nextToken: example
                    schemaList: example
        '480':
          description: ThrottlingException
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ThrottlingException'
              examples:
                ListSchemaMappings480Example:
                  summary: Default ListSchemaMappings 480 response
                  x-microcks-default: true
                  value: {}
        '481':
          description: InternalServerException
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InternalServerException'
              examples:
                ListSchemaMappings481Example:
                  summary: Default ListSchemaMappings 481 response
                  x-microcks-default: true
                  value: {}
        '482':
          description: AccessDeniedException
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AccessDeniedException'
              examples:
                ListSchemaMappings482Example:
                  summary: Default ListSchemaMappings 482 response
                  x-microcks-default: true
                  value: {}
        '483':
          description: ValidationException
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationException'
              examples:
                ListSchemaMappings483Example:
                  summary: Default ListSchemaMappings 483 response
                  x-microcks-default: true
                  value: {}
      parameters:
      - name: maxResults
        in: query
        required: false
        description: The maximum number of objects returned per page.
        schema:
          type: integer
          maximum: 25
      - name: nextToken
        in: query
        required: false
        description: The pagination token from the previous <code>ListSchemaMappings</code> API call.
        schema:
          type: string
          pattern: '^[a-zA-Z_0-9-=+/]*$'
          minLength: 1
          maxLength: 1024
      summary: Amazon Entity Resolution ListSchemaMappings
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  '/matchingworkflows/{workflowName}':
    delete:
      operationId: DeleteMatchingWorkflow
      description: Deletes the <code>MatchingWorkflow</code> with a given name. This operation will succeed even if a workflow with the given name does not exist.
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeleteMatchingWorkflowOutput'
              examples:
                DeleteMatchingWorkflow200Example:
                  summary: Default DeleteMatchingWorkflow 200 response
                  x-microcks-default: true
                  value:
                    message: example
        '480':
          description: ThrottlingException
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ThrottlingException'
              examples:
                DeleteMatchingWorkflow480Example:
                  summary: Default DeleteMatchingWorkflow 480 response
                  x-microcks-default: true
                  value: {}
        '481':
          description: InternalServerException
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InternalServerException'
              examples:
                DeleteMatchingWorkflow481Example:
                  summary: Default DeleteMatchingWorkflow 481 response
                  x-microcks-default: true
                  value: {}
        '482':
          description: AccessDeniedException
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AccessDeniedException'
              examples:
                DeleteMatchingWorkflow482Example:
                  summary: Default DeleteMatchingWorkflow 482 response
                  x-microcks-default: true
                  value: {}
        '483':
          description: ValidationException
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationException'
              examples:
                DeleteMatchingWorkflow483Example:
                  summary: Default DeleteMatchingWorkflow 483 response
                  x-microcks-default: true
                  value: {}
      parameters:
      - name: workflowName
        in: path
        required: true
        description: The name of the workflow to be retrieved.
        schema:
          type: string
          pattern: '^[a-zA-Z_0-9-]*$'
          minLength: 0
          maxLength: 255
      summary: Amazon Entity Resolution DeleteMatchingWorkflow
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    parameters:
    - $ref: '#/components/parameters/X-Amz-Content-Sha256'
    - $ref: '#/components/parameters/X-Amz-Date'
    - $ref: '#/components/parameters/X-Amz-Algorithm'
    - $ref: '#/components/parameters/X-Amz-Credential'
    - $ref: '#/components/parameters/X-Amz-Security-Token'
    - $ref: '#/components/parameters/X-Amz-Signature'
    - $ref: '#/components/parameters/X-Amz-SignedHeaders'
    get:
      operationId: GetMatchingWorkflow
      description: 'Returns the <code>MatchingWorkflow</code> with a given name, if it exists.'
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetMatchingWorkflowOutput'
              examples:
                GetMatchingWorkflow200Example:
                  summary: Default GetMatchingWorkflow 200 response
                  x-microcks-default: true
                  value:
                    createdAt: example
                    description: Example description
                    incrementalRunConfig: example
                    inputSourceConfig: example
                    outputSourceConfig: example
        '480':
          description: ThrottlingException
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ThrottlingException'
              examples:
                GetMatchingWorkflow480Example:
                  summary: Default GetMatchingWorkflow 480 response
                  x-microcks-default: true
                  value: {}
        '481':
          description: InternalServerException
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InternalServerException'
              examples:
                GetMatchingWorkflow481Example:
                  summary: Default GetMatchingWorkflow 481 response
                  x-microcks-default: true
                  value: {}
        '482':
          description: ResourceNotFoundException
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResourceNotFoundException'
              examples:
                GetMatchingWorkflow482Example:
                  summary: Default GetMatchingWorkflow 482 response
                  x-microcks-default: true
                  value: {}
        '483':
          description: AccessDeniedException
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AccessDeniedException'
              examples:
                GetMatchingWorkflow483Example:
                  summary: Default GetMatchingWorkflow 483 response
                  x-microcks-default: true
                  value: {}
        '484':
          description: ValidationException
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationException'
              examples:
                GetMatchingWorkflow484Example:
                  summary: Default GetMatchingWorkflow 484 response
                  x-microcks-default: true
                  value: {}
      parameters:
      - name: workflowName
        in: path
        required: true
        description: The name of the workflow.
        schema:
          type: string
          pattern: '^[a-zA-Z_0-9-]*$'
          minLength: 0
          maxLength: 255
      summary: Amazon Entity Resolution GetMatchingWorkflow
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    put:
      operationId: UpdateMatchingWorkflow
      description: 'Updates an existing <code>MatchingWorkflow</code>. This method is identical to <code>CreateMatchingWorkflow</code>, except it uses an HTTP <code>PUT</code> request instead of a <code>POST</code>
        request, and the <code>MatchingWorkflow</code> must already exist for the method to succeed.'
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UpdateMatchingWorkflowOutput'
              examples:
                UpdateMatchingWorkflow200Example:
                  summary: Default UpdateMatchingWorkflow 200 response
                  x-microcks-default: true
                  value:
                    description: Example description
                    incrementalRunConfig: example
                    inputSourceConfig: example
                    outputSourceConfig: example
                    resolutionTechniques: example
        '480':
          description: ThrottlingException
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ThrottlingException'
              examples:
                UpdateMatchingWorkflow480Example:
                  summary: Default UpdateMatchingWorkflow 480 response
                  x-microcks-default: true
                  value: {}
        '481':
          description: InternalServerException
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InternalServerException'
              examples:
                UpdateMatchingWorkflow481Example:
                  summary: Default UpdateMatchingWorkflow 481 response
                  x-microcks-default: true
                  value: {}
        '482':
          description: ResourceNotFoundException
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResourceNotFoundException'
              examples:
                UpdateMatchingWorkflow482Example:
                  summary: Default UpdateMatchingWorkflow 482 response
                  x-microcks-default: true
                  value: {}
        '483':
    

# --- truncated at 32 KB (104 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/amazon-entity-resolution/refs/heads/main/openapi/amazon-entity-resolution-openapi.yml