> ## Documentation Index
> Fetch the complete documentation index at: https://docs.artu.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# List unique clients related to an alert (direct + via transactions)



## OpenAPI

````yaml /openapi/alerts.json post /alerts/{alertId}/clients
openapi: 3.1.1
info:
  title: ARTU Compliance API
  version: 1.0.0
  description: 'API for compliance management. Documentation: https://docs.artu.ai'
servers:
  - url: https://api.artu.ai
security:
  - bearerAuth: []
    environmentHeader: []
paths:
  /alerts/{alertId}/clients:
    post:
      tags:
        - Alerts
      summary: List unique clients related to an alert (direct + via transactions)
      operationId: alerts.listClients
      parameters:
        - name: alertId
          in: path
          required: true
          schema:
            type: string
            format: uuid
      requestBody:
        required: false
        content:
          application/json:
            schema:
              type: object
              properties:
                filter:
                  type: object
                  properties:
                    id:
                      anyOf:
                        - type: string
                          format: uuid
                        - type: object
                          properties:
                            eq:
                              type: string
                              format: uuid
                            in:
                              type: array
                              items:
                                type: string
                                format: uuid
                            nin:
                              type: array
                              items:
                                type: string
                                format: uuid
                      description: ID
                    search:
                      type: string
                      minLength: 1
                      maxLength: 200
                      description: Search
                    type:
                      anyOf:
                        - enum:
                            - individual
                            - company
                            - trust
                          type: string
                        - type: object
                          properties:
                            eq:
                              enum:
                                - individual
                                - company
                                - trust
                              type: string
                            in:
                              type: array
                              items:
                                enum:
                                  - individual
                                  - company
                                  - trust
                                type: string
                            nin:
                              type: array
                              items:
                                enum:
                                  - individual
                                  - company
                                  - trust
                                type: string
                      description: Type
                    isPrimary:
                      type: boolean
                      description: Is Primary
                    age:
                      anyOf:
                        - type: number
                        - type: object
                          properties:
                            eq:
                              type: number
                            gt:
                              type: number
                            gte:
                              type: number
                            lt:
                              type: number
                            lte:
                              type: number
                            in:
                              type: array
                              items:
                                type: number
                            nin:
                              type: array
                              items:
                                type: number
                      description: Age
                    name:
                      anyOf:
                        - type: string
                        - type: object
                          properties:
                            eq:
                              type: string
                            contains:
                              type: string
                            startsWith:
                              type: string
                            endsWith:
                              type: string
                            in:
                              type: array
                              items:
                                type: string
                            nin:
                              type: array
                              items:
                                type: string
                      description: Name
                    lastName:
                      anyOf:
                        - type: string
                        - type: object
                          properties:
                            eq:
                              type: string
                            contains:
                              type: string
                            startsWith:
                              type: string
                            endsWith:
                              type: string
                            in:
                              type: array
                              items:
                                type: string
                            nin:
                              type: array
                              items:
                                type: string
                      description: Last Name
                    email:
                      anyOf:
                        - type: string
                        - type: object
                          properties:
                            eq:
                              type: string
                            contains:
                              type: string
                            startsWith:
                              type: string
                            endsWith:
                              type: string
                            in:
                              type: array
                              items:
                                type: string
                            nin:
                              type: array
                              items:
                                type: string
                      description: Email
                    externalId:
                      anyOf:
                        - type: string
                        - type: object
                          properties:
                            eq:
                              type: string
                            contains:
                              type: string
                            startsWith:
                              type: string
                            endsWith:
                              type: string
                            in:
                              type: array
                              items:
                                type: string
                            nin:
                              type: array
                              items:
                                type: string
                      description: External ID
                    metadataFilters:
                      type: array
                      items:
                        type: object
                        properties:
                          key:
                            type: string
                          value:
                            type: string
                        required:
                          - key
                          - value
                      description: Metadata Filters
                    scopes:
                      anyOf:
                        - enum:
                            - base
                            - MX:AV
                            - MX:AV:ARI
                            - MX:AV:AVI
                            - MX:AV:INM
                            - MX:AV:JYS
                            - MX:AV:MJR
                            - MX:AV:MPC
                            - MX:AV:TSC
                            - MX:AV:VEH
                            - MX:CNBV
                            - MX:CNBV:TRANSMISOR
                            - MX
                          type: string
                        - type: object
                          properties:
                            eq:
                              enum:
                                - base
                                - MX:AV
                                - MX:AV:ARI
                                - MX:AV:AVI
                                - MX:AV:INM
                                - MX:AV:JYS
                                - MX:AV:MJR
                                - MX:AV:MPC
                                - MX:AV:TSC
                                - MX:AV:VEH
                                - MX:CNBV
                                - MX:CNBV:TRANSMISOR
                                - MX
                              type: string
                            in:
                              type: array
                              items:
                                enum:
                                  - base
                                  - MX:AV
                                  - MX:AV:ARI
                                  - MX:AV:AVI
                                  - MX:AV:INM
                                  - MX:AV:JYS
                                  - MX:AV:MJR
                                  - MX:AV:MPC
                                  - MX:AV:TSC
                                  - MX:AV:VEH
                                  - MX:CNBV
                                  - MX:CNBV:TRANSMISOR
                                  - MX
                                type: string
                            nin:
                              type: array
                              items:
                                enum:
                                  - base
                                  - MX:AV
                                  - MX:AV:ARI
                                  - MX:AV:AVI
                                  - MX:AV:INM
                                  - MX:AV:JYS
                                  - MX:AV:MJR
                                  - MX:AV:MPC
                                  - MX:AV:TSC
                                  - MX:AV:VEH
                                  - MX:CNBV
                                  - MX:CNBV:TRANSMISOR
                                  - MX
                                type: string
                      description: Scopes
                    riskAssessment:
                      type: object
                      properties:
                        name:
                          type: string
                        eq:
                          type: number
                        gt:
                          type: number
                        gte:
                          type: number
                        lt:
                          type: number
                        lte:
                          type: number
                        levelIn:
                          type: array
                          items:
                            type: string
                            minLength: 1
                        levelNin:
                          type: array
                          items:
                            type: string
                            minLength: 1
                      description: Risk Assessment
                    checklist:
                      enum:
                        - complete
                        - incomplete
                      type: string
                      description: Checklist
                    createdAt:
                      anyOf:
                        - type: string
                          format: date-time
                        - type: object
                          properties:
                            eq:
                              type: string
                              format: date-time
                            gt:
                              type: string
                              format: date-time
                            gte:
                              type: string
                              format: date-time
                            lt:
                              type: string
                              format: date-time
                            lte:
                              type: string
                              format: date-time
                      description: Created At
                    updatedAt:
                      anyOf:
                        - type: string
                          format: date-time
                        - type: object
                          properties:
                            eq:
                              type: string
                              format: date-time
                            gt:
                              type: string
                              format: date-time
                            gte:
                              type: string
                              format: date-time
                            lt:
                              type: string
                              format: date-time
                            lte:
                              type: string
                              format: date-time
                      description: Updated At
                    tagIds:
                      anyOf:
                        - type: string
                          format: uuid
                        - type: object
                          properties:
                            contains:
                              type: string
                              format: uuid
                            notContains:
                              type: string
                              format: uuid
                            containsAny:
                              type: array
                              items:
                                type: string
                                format: uuid
                            containsAll:
                              type: array
                              items:
                                type: string
                                format: uuid
                            empty:
                              type: boolean
                            notEmpty:
                              type: boolean
                      description: Tags
                    scopeData:
                      type: object
                      properties:
                        MX:
                          type: object
                          properties:
                            rfc:
                              anyOf:
                                - type: string
                                - type: object
                                  properties:
                                    eq:
                                      type: string
                                    contains:
                                      type: string
                                    startsWith:
                                      type: string
                                    endsWith:
                                      type: string
                                    in:
                                      type: array
                                      items:
                                        type: string
                                    nin:
                                      type: array
                                      items:
                                        type: string
                              description: RFC
                            curp:
                              anyOf:
                                - type: string
                                - type: object
                                  properties:
                                    eq:
                                      type: string
                                    contains:
                                      type: string
                                    startsWith:
                                      type: string
                                    endsWith:
                                      type: string
                                    in:
                                      type: array
                                      items:
                                        type: string
                                    nin:
                                      type: array
                                      items:
                                        type: string
                              description: CURP
                            actividadEconomica:
                              anyOf:
                                - enum:
                                    - '1000000'
                                    - '1110100'
                                    - '1110400'
                                    - '1220100'
                                    - '1220200'
                                    - '1330200'
                                    - '2130100'
                                    - '2140100'
                                    - '2210100'
                                    - '2240200'
                                    - '2420100'
                                    - '2420200'
                                    - '2530100'
                                    - '3130100'
                                    - '3130300'
                                    - '3310300'
                                    - '3310400'
                                    - '3310600'
                                    - '3410200'
                                    - '3420100'
                                    - '3420200'
                                    - '4130300'
                                    - '4130500'
                                    - '4131000'
                                    - '4230200'
                                    - '4230500'
                                    - '4330100'
                                    - '4330200'
                                    - '4430200'
                                    - '4440100'
                                    - '4530200'
                                    - '4530500'
                                    - '4630100'
                                    - '4640300'
                                    - '5110100'
                                    - '5121300'
                                    - '5210100'
                                    - '5310700'
                                    - '5410100'
                                    - '5420700'
                                    - '5510100'
                                    - '5610200'
                                    - '5710200'
                                    - '5720800'
                                    - '5720900'
                                    - '5721000'
                                    - '5721100'
                                    - '5722900'
                                    - '5730600'
                                    - '5731100'
                                    - '5810200'
                                    - '5910400'
                                    - '6120100'
                                    - '6120200'
                                    - '6220100'
                                    - '6330100'
                                    - '6330200'
                                    - '6330400'
                                    - '6330500'
                                    - '6330600'
                                    - '6420100'
                                    - '6430100'
                                    - '6430300'
                                    - '7110200'
                                    - '7110300'
                                    - '7110500'
                                    - '7110600'
                                    - '7120100'
                                    - '7130200'
                                    - '7130400'
                                    - '7140100'
                                    - '7140200'
                                    - '7210100'
                                    - '7230200'
                                    - '7240200'
                                    - '7330200'
                                    - '7330300'
                                    - '7430100'
                                    - '7430200'
                                    - '7430400'
                                    - '7530100'
                                    - '7540100'
                                    - '7620100'
                                    - '7620200'
                                    - '7630100'
                                    - '7630200'
                                    - '7720100'
                                    - '7720200'
                                    - '7720300'
                                    - '7810200'
                                    - '8120100'
                                    - '8130500'
                                    - '8140100'
                                    - '8210100'
                                    - '8220400'
                                    - '8220600'
                                    - '8230300'
                                    - '8240100'
                                    - '8240200'
                                    - '8240600'
                                    - '8240700'
                                    - '8250100'
                                    - '8250200'
                                    - '8250800'
                                    - '8340100'
                                    - '8340300'
                                    - '9120700'
                                    - '9130300'
                                    - '9131200'
                                    - '9140200'
                                    - '9140400'
                                    - '9140500'
                                    - '9140700'
                                    - '9140800'
                                    - '9230100'
                                    - '9230200'
                                    - '9230300'
                                    - '9230400'
                                    - '9330100'
                                    - '9330300'
                                    - '9420100'
                                    - '9420300'
                                    - '9430100'
                                    - '1014010'
                                    - '1014030'
                                    - '1023010'
                                    - '1023070'
                                    - '1024020'
                                    - '1033010'
                                    - '1033020'
                                    - '1033040'
                                    - '1034010'
                                    - '1044010'
                                    - '1052010'
                                    - '1054010'
                                    - '1112010'
                                    - '1113010'
                                    - '1113020'
                                    - '1114010'
                                    - '1114020'
                                    - '1114030'
                                    - '1114040'
                                    - '1114050'
                                    - '1114060'
                                    - '1114070'
                                    - '1114090'
                                    - '1123020'
                                    - '1124070'
                                    - '1125010'
                                    - '1133010'
                                    - '1134010'
                                    - '1135010'
                                    - '1135080'
                                    - '1135020'
                                    - '1135030'
                                    - '1135050'
                                    - '1135060'
                                    - '1135070'
                                    - '1136010'
                                    - '1136020'
                                    - '1136030'
                                    - '1136040'
                                    - '1136070'
                                    - '1136050'
                                    - '1136060'
                                    - '1136090'
                                    - '1136080'
                                  type: string
                                - type: object
                                  properties:
                                    eq:
                                      enum:
                                        - '1000000'
                                        - '1110100'
                                        - '1110400'
                                        - '1220100'
                                        - '1220200'
                                        - '1330200'
                                        - '2130100'
                                        - '2140100'
                                        - '2210100'
                                        - '2240200'
                                        - '2420100'
                                        - '2420200'
                                        - '2530100'
                                        - '3130100'
                                        - '3130300'
                                        - '3310300'
                                        - '3310400'
                                        - '3310600'
                                        - '3410200'
                                        - '3420100'
                                        - '3420200'
                                        - '4130300'
                                        - '4130500'
                                        - '4131000'
                                        - '4230200'
                                        - '4230500'
                                        - '4330100'
                                        - '4330200'
                                        - '4430200'
                                        - '4440100'
                                        - '4530200'
                                        - '4530500'
                                        - '4630100'
                                        - '4640300'
                                        - '5110100'
                                        - '5121300'
                                        - '5210100'
                                        - '5310700'
                                        - '5410100'
                                        - '5420700'
                                        - '5510100'
                                        - '5610200'
                                        - '5710200'
                                        - '5720800'
                                        - '5720900'
                                        - '5721000'
                                        - '5721100'
                                        - '5722900'
                                        - '5730600'
                                        - '5731100'
                                        - '5810200'
                                        - '5910400'
                                        - '6120100'
                                        - '6120200'
                                        - '6220100'
                                        - '6330100'
                                        - '6330200'
                                        - '6330400'
                                        - '6330500'
                                        - '6330600'
                                        - '6420100'
                                        - '6430100'
                                        - '6430300'
                                        - '7110200'
                                        - '7110300'
                                        - '7110500'
                                        - '7110600'
                                        - '7120100'
                                        - '7130200'
                                        - '7130400'
                                        - '7140100'
                                        - '7140200'
                                        - '7210100'
                                        - '7230200'
                                        - '7240200'
                                        - '7330200'
                                        - '7330300'
                                        - '7430100'
                                        - '7430200'
                                        - '7430400'
                                        - '7530100'
                                        - '7540100'
                                        - '7620100'
                                        - '7620200'
                                        - '7630100'
                                        - '7630200'
                                        - '7720100'
                                        - '7720200'
                                        - '7720300'
                                        - '7810200'
                                        - '8120100'
                                        - '8130500'
                                        - '8140100'
                                        - '8210100'
                                        - '8220400'
                                        - '8220600'
                                        - '8230300'
                                        - '8240100'
                                        - '8240200'
                                        - '8240600'
                                        - '8240700'
                                        - '8250100'
                                        - '8250200'
                                        - '8250800'
                                        - '8340100'
                                        - '8340300'
                                        - '9120700'
                                        - '9130300'
                                        - '9131200'
                                        - '9140200'
                                        - '9140400'
                                        - '9140500'
                                        - '9140700'
                                        - '9140800'
                                        - '9230100'
                                        - '9230200'
                                        - '9230300'
                                        - '9230400'
                                        - '9330100'
                                        - '9330300'
                                        - '9420100'
                                        - '9420300'
                                        - '9430100'
                                        - '1014010'
                                        - '1014030'
                                        - '1023010'
                                        - '1023070'
                                        - '1024020'
                                        - '1033010'
                                        - '1033020'
                                        - '1033040'
                                        - '1034010'
                                        - '1044010'
                                        - '1052010'
                                        - '1054010'
                                        - '1112010'
                                        - '1113010'
                                        - '1113020'
                                        - '1114010'
                                        - '1114020'
                                        - '1114030'
                                        - '1114040'
                                        - '1114050'
                                        - '1114060'
                                        - '1114070'
                                        - '1114090'
                                        - '1123020'
                                        - '1124070'
                                        - '1125010'
                                        - '1133010'
                                        - '1134010'
                                        - '1135010'
                                        - '1135080'
                                        - '1135020'
                                        - '1135030'
                                        - '1135050'
                                        - '1135060'
                                        - '1135070'
                                        - '1136010'
                                        - '1136020'
                                        - '1136030'
                                        - '1136040'
                                        - '1136070'
                                        - '1136050'
                                        - '1136060'
                                        - '1136090'
                                        - '1136080'
                                      type: string
                                    in:
                                      type: array
                                      items:
                                        enum:
                                          - '1000000'
                                          - '1110100'
                                          - '1110400'
                                          - '1220100'
                                          - '1220200'
                                          - '1330200'
                                          - '2130100'
                                          - '2140100'
                                          - '2210100'
                                          - '2240200'
                                          - '2420100'
                                          - '2420200'
                                          - '2530100'
                                          - '3130100'
                                          - '3130300'
                                          - '3310300'
                                          - '3310400'
                                          - '3310600'
                                          - '3410200'
                                          - '3420100'
                                          - '3420200'
                                          - '4130300'
                                          - '4130500'
                                          - '4131000'
                                          - '4230200'
                                          - '4230500'
                                          - '4330100'
                                          - '4330200'
                                          - '4430200'
                                          - '4440100'
                                          - '4530200'
                                          - '4530500'
                                          - '4630100'
                                          - '4640300'
                                          - '5110100'
                                          - '5121300'
                                          - '5210100'
                                          - '5310700'
                                          - '5410100'
                                          - '5420700'
                                          - '5510100'
                                          - '5610200'
                                          - '5710200'
                                          - '5720800'
                                          - '5720900'
                                          - '5721000'
                                          - '5721100'
                                          - '5722900'
                                          - '5730600'
                                          - '5731100'
                                          - '5810200'
                                          - '5910400'
                                          - '6120100'
                                          - '6120200'
                                          - '6220100'
                                          - '6330100'
                                          - '6330200'
                                          - '6330400'
                                          - '6330500'
                                          - '6330600'
                                          - '6420100'
                                          - '6430100'
                                          - '6430300'
                                          - '7110200'
                                          - '7110300'
                                          - '7110500'
                                          - '7110600'
                                          - '7120100'
                                          - '7130200'
                                          - '7130400'
                                          - '7140100'
                                          - '7140200'
                                          - '7210100'
                                          - '7230200'
                                          - '7240200'
                                          - '7330200'
                                          - '7330300'
                                          - '7430100'
                                          - '7430200'
                                          - '7430400'
                                          - '7530100'
                                          - '7540100'
                                          - '7620100'
                                          - '7620200'
                                          - '7630100'
                                          - '7630200'
                                          - '7720100'
                                          - '7720200'
                                          - '7720300'
                                          - '7810200'
                                          - '8120100'
                                          - '8130500'
                                          - '8140100'
                                          - '8210100'
                                          - '8220400'
                                          - '8220600'
                                          - '8230300'
                                          - '8240100'
                                          - '8240200'
                                          - '8240600'
                                          - '8240700'
                                          - '8250100'
                                          - '8250200'
                                          - '8250800'
                                          - '8340100'
                                          - '8340300'
                                          - '9120700'
                                          - '9130300'
                                          - '9131200'
                                          - '9140200'
                                          - '9140400'
                                          - '9140500'
                                          - '9140700'
                                          - '9140800'
                                          - '9230100'
                                          - '9230200'
                                          - '9230300'
                                          - '9230400'
                                          - '9330100'
                                          - '9330300'
                                          - '9420100'
                                          - '9420300'
                                          - '9430100'
                                          - '1014010'
                                          - '1014030'
                                          - '1023010'
                                          - '1023070'
                                          - '1024020'
                                          - '1033010'
                                          - '1033020'
                                          - '1033040'
                                          - '1034010'
                                          - '1044010'
                                          - '1052010'
                                          - '1054010'
                                          - '1112010'
                                          - '1113010'
                                          - '1113020'
                                          - '1114010'
                                          - '1114020'
                                          - '1114030'
                                          - '1114040'
                                          - '1114050'
                                          - '1114060'
                                          - '1114070'
                                          - '1114090'
                                          - '1123020'
                                          - '1124070'
                                          - '1125010'
                                          - '1133010'
                                          - '1134010'
                                          - '1135010'
                                          - '1135080'
                                          - '1135020'
                                          - '1135030'
                                          - '1135050'
                                          - '1135060'
                                          - '1135070'
                                          - '1136010'
                                          - '1136020'
                                          - '1136030'
                                          - '1136040'
                                          - '1136070'
                                          - '1136050'
                                          - '1136060'
                                          - '1136090'
                                          - '1136080'
                                        type: string
                                    nin:
                                      type: array
                                      items:
                                        enum:
                                          - '1000000'
                                          - '1110100'
                                          - '1110400'
                                          - '1220100'
                                          - '1220200'
                                          - '1330200'
                                          - '2130100'
                                          - '2140100'
                                          - '2210100'
                                          - '2240200'
                                          - '2420100'
                                          - '2420200'
                                          - '2530100'
                                          - '3130100'
                                          - '3130300'
                                          - '3310300'
                                          - '3310400'
                                          - '3310600'
                                          - '3410200'
                                          - '3420100'
                                          - '3420200'
                                          - '4130300'
                                          - '4130500'
                                          - '4131000'
                                          - '4230200'
                                          - '4230500'
                                          - '4330100'
                                          - '4330200'
                                          - '4430200'
                                          - '4440100'
                                          - '4530200'
                                          - '4530500'
                                          - '4630100'
                                          - '4640300'
                                          - '5110100'
                                          - '5121300'
                                          - '5210100'
                                          - '5310700'
                                          - '5410100'
                                          - '5420700'
                                          - '5510100'
                                          - '5610200'
                                          - '5710200'
                                          - '5720800'
                                          - '5720900'
                                          - '5721000'
                                          - '5721100'
                                          - '5722900'
                                          - '5730600'
                                          - '5731100'
                                          - '5810200'
                                          - '5910400'
                                          - '6120100'
                                          - '6120200'
                                          - '6220100'
                                          - '6330100'
                                          - '6330200'
                                          - '6330400'
                                          - '6330500'
                                          - '6330600'
                                          - '6420100'
                                          - '6430100'
                                          - '6430300'
                                          - '7110200'
                                          - '7110300'
                                          - '7110500'
                                          - '7110600'
                                          - '7120100'
                                          - '7130200'
                                          - '7130400'
                                          - '7140100'
                                          - '7140200'
                                          - '7210100'
                                          - '7230200'
                                          - '7240200'
                                          - '7330200'
                                          - '7330300'
                                          - '7430100'
                                          - '7430200'
                                          - '7430400'
                                          - '7530100'
                                          - '7540100'
                                          - '7620100'
                                          - '7620200'
                                          - '7630100'
                                          - '7630200'
                                          - '7720100'
                                          - '7720200'
                                          - '7720300'
                                          - '7810200'
                                          - '8120100'
                                          - '8130500'
                                          - '8140100'
                                          - '8210100'
                                          - '8220400'
                                          - '8220600'
                                          - '8230300'
                                          - '8240100'
                                          - '8240200'
                                          - '8240600'
                                          - '8240700'
                                          - '8250100'
                                          - '8250200'
                                          - '8250800'
                                          - '8340100'
                                          - '8340300'
                                          - '9120700'
                                          - '9130300'
                                          - '9131200'
                                          - '9140200'
                                          - '9140400'
                                          - '9140500'
                                          - '9140700'
                                          - '9140800'
                                          - '9230100'
                                          - '9230200'
                                          - '9230300'
                                          - '9230400'
                                          - '9330100'
                                          - '9330300'
                                          - '9420100'
                                          - '9420300'
                                          - '9430100'
                                          - '1014010'
                                          - '1014030'
                                          - '1023010'
                                          - '1023070'
                                          - '1024020'
                                          - '1033010'
                                          - '1033020'
                                          - '1033040'
                                          - '1034010'
                                          - '1044010'
                                          - '1052010'
                                          - '1054010'
                                          - '1112010'
                                          - '1113010'
                                          - '1113020'
                                          - '1114010'
                                          - '1114020'
                                          - '1114030'
                                          - '1114040'
                                          - '1114050'
                                          - '1114060'
                                          - '1114070'
                                          - '1114090'
                                          - '1123020'
                                          - '1124070'
                                          - '1125010'
                                          - '1133010'
                                          - '1134010'
                                          - '1135010'
                                          - '1135080'
                                          - '1135020'
                                          - '1135030'
                                          - '1135050'
                                          - '1135060'
                                          - '1135070'
                                          - '1136010'
                                          - '1136020'
                                          - '1136030'
                                          - '1136040'
                                          - '1136070'
                                          - '1136050'
                                          - '1136060'
                                          - '1136090'
                                          - '1136080'
                                        type: string
                              description: Economic Activity
                            giroMercantil:
                              anyOf:
                                - enum:
                                    - '1000000'
                                    - '1100001'
                                    - '1200001'
                                    - '1300001'
                                    - '1400002'
                                    - '1500001'
                                    - '2100002'
                                    - '2200002'
                                    - '2300003'
                                    - '2400002'
                                    - '2500002'
                                    - '2600003'
                                    - '2710004'
                                    - '2720004'
                                    - '2730004'
                                    - '2740004'
                                    - '2754004'
                                    - '3110005'
                                    - '3120005'
                                    - '3140005'
                                    - '3150005'
                                    - '3210005'
                                    - '3220005'
                                    - '3230005'
                                    - '3240005'
                                    - '3250005'
                                    - '3260005'
                                    - '3270005'
                                    - '3310005'
                                    - '3320005'
                                    - '3330005'
                                    - '3340005'
                                    - '3350005'
                                    - '3360005'
                                    - '3370005'
                                    - '3380005'
                                    - '3410005'
                                    - '3420005'
                                    - '3430005'
                                    - '3440005'
                                    - '4310006'
                                    - '4320006'
                                    - '4330006'
                                    - '4340006'
                                    - '4620006'
                                    - '4630006'
                                    - '4650006'
                                    - '4660026'
                                    - '4670006'
                                    - '4680006'
                                    - '4710006'
                                    - '4720006'
                                    - '4730006'
                                    - '4740006'
                                    - '4750006'
                                    - '4760006'
                                    - '4810007'
                                    - '4820007'
                                    - '4830007'
                                    - '4840007'
                                    - '4850007'
                                    - '4860007'
                                    - '4880007'
                                    - '4890007'
                                    - '4910008'
                                    - '4920009'
                                    - '4930010'
                                    - '5100011'
                                    - '5180012'
                                    - '5210013'
                                    - '5220013'
                                    - '5230013'
                                    - '5240013'
                                    - '5250013'
                                    - '5260013'
                                    - '5270013'
                                    - '5280013'
                                    - '5290013'
                                    - '5310013'
                                    - '5320013'
                                    - '5330013'
                                    - '5340013'
                                    - '5350013'
                                    - '5360013'
                                    - '5370013'
                                    - '5390013'
                                    - '5410013'
                                    - '5420013'
                                    - '5430013'
                                    - '5440013'
                                    - '5450013'
                                    - '5510014'
                                    - '5520014'
                                    - '5530014'
                                    - '5540014'
                                    - '5550014'
                                    - '5610015'
                                    - '5620015'
                                    - '5630015'
                                    - '5640015'
                                    - '5650015'
                                    - '5660015'
                                    - '5670015'
                                    - '5680015'
                                    - '5690015'
                                    - '5710016'
                                    - '5720016'
                                    - '5730016'
                                    - '5740016'
                                    - '5750016'
                                    - '6100017'
                                    - '6200018'
                                    - '7110019'
                                    - '7120019'
                                    - '7130019'
                                    - '7140019'
                                    - '7150019'
                                    - '7200020'
                                    - '8100021'
                                    - '8200022'
                                    - '8310023'
                                    - '8320023'
                                    - '8330023'
                                    - '8340023'
                                    - '8350023'
                                    - '8360023'
                                    - '8370023'
                                    - '9100025'
                                    - '9810024'
                                    - '9820024'
                                    - '9830024'
                                    - '9840024'
                                    - '9850024'
                                    - '9860024'
                                    - '9870024'
                                    - '9880024'
                                  type: string
                                - type: object
                                  properties:
                                    eq:
                                      enum:
                                        - '1000000'
                                        - '1100001'
                                        - '1200001'
                                        - '1300001'
                                        - '1400002'
                                        - '1500001'
                                        - '2100002'
                                        - '2200002'
                                        - '2300003'
                                        - '2400002'
                                        - '2500002'
                                        - '2600003'
                                        - '2710004'
                                        - '2720004'
                                        - '2730004'
                                        - '2740004'
                                        - '2754004'
                                        - '3110005'
                                        - '3120005'
                                        - '3140005'
                                        - '3150005'
                                        - '3210005'
                                        - '3220005'
                                        - '3230005'
                                        - '3240005'
                                        - '3250005'
                                        - '3260005'
                                        - '3270005'
                                        - '3310005'
                                        - '3320005'
                                        - '3330005'
                                        - '3340005'
                                        - '3350005'
                                        - '3360005'
                                        - '3370005'
                                        - '3380005'
                                        - '3410005'
                                        - '3420005'
                                        - '3430005'
                                        - '3440005'
                                        - '4310006'
                                        - '4320006'
                                        - '4330006'
                                        - '4340006'
                                        - '4620006'
                                        - '4630006'
                                        - '4650006'
                                        - '4660026'
                                        - '4670006'
                                        - '4680006'
                                        - '4710006'
                                        - '4720006'
                                        - '4730006'
                                        - '4740006'
                                        - '4750006'
                                        - '4760006'
                                        - '4810007'
                                        - '4820007'
                                        - '4830007'
                                        - '4840007'
                                        - '4850007'
                                        - '4860007'
                                        - '4880007'
                                        - '4890007'
                                        - '4910008'
                                        - '4920009'
                                        - '4930010'
                                        - '5100011'
                                        - '5180012'
                                        - '5210013'
                                        - '5220013'
                                        - '5230013'
                                        - '5240013'
                                        - '5250013'
                                        - '5260013'
                                        - '5270013'
                                        - '5280013'
                                        - '5290013'
                                        - '5310013'
                                        - '5320013'
                                        - '5330013'
                                        - '5340013'
                                        - '5350013'
                                        - '5360013'
                                        - '5370013'
                                        - '5390013'
                                        - '5410013'
                                        - '5420013'
                                        - '5430013'
                                        - '5440013'
                                        - '5450013'
                                        - '5510014'
                                        - '5520014'
                                        - '5530014'
                                        - '5540014'
                                        - '5550014'
                                        - '5610015'
                                        - '5620015'
                                        - '5630015'
                                        - '5640015'
                                        - '5650015'
                                        - '5660015'
                                        - '5670015'
                                        - '5680015'
                                        - '5690015'
                                        - '5710016'
                                        - '5720016'
                                        - '5730016'
                                        - '5740016'
                                        - '5750016'
                                        - '6100017'
                                        - '6200018'
                                        - '7110019'
                                        - '7120019'
                                        - '7130019'
                                        - '7140019'
                                        - '7150019'
                                        - '7200020'
                                        - '8100021'
                                        - '8200022'
                                        - '8310023'
                                        - '8320023'
                                        - '8330023'
                                        - '8340023'
                                        - '8350023'
                                        - '8360023'
                                        - '8370023'
                                        - '9100025'
                                        - '9810024'
                                        - '9820024'
                                        - '9830024'
                                        - '9840024'
                                        - '9850024'
                                        - '9860024'
                                        - '9870024'
                                        - '9880024'
                                      type: string
                                    in:
                                      type: array
                                      items:
                                        enum:
                                          - '1000000'
                                          - '1100001'
                                          - '1200001'
                                          - '1300001'
                                          - '1400002'
                                          - '1500001'
                                          - '2100002'
                                          - '2200002'
                                          - '2300003'
                                          - '2400002'
                                          - '2500002'
                                          - '2600003'
                                          - '2710004'
                                          - '2720004'
                                          - '2730004'
                                          - '2740004'
                                          - '2754004'
                                          - '3110005'
                                          - '3120005'
                                          - '3140005'
                                          - '3150005'
                                          - '3210005'
                                          - '3220005'
                                          - '3230005'
                                          - '3240005'
                                          - '3250005'
                                          - '3260005'
                                          - '3270005'
                                          - '3310005'
                                          - '3320005'
                                          - '3330005'
                                          - '3340005'
                                          - '3350005'
                                          - '3360005'
                                          - '3370005'
                                          - '3380005'
                                          - '3410005'
                                          - '3420005'
                                          - '3430005'
                                          - '3440005'
                                          - '4310006'
                                          - '4320006'
                                          - '4330006'
                                          - '4340006'
                                          - '4620006'
                                          - '4630006'
                                          - '4650006'
                                          - '4660026'
                                          - '4670006'
                                          - '4680006'
                                          - '4710006'
                                          - '4720006'
                                          - '4730006'
                                          - '4740006'
                                          - '4750006'
                                          - '4760006'
                                          - '4810007'
                                          - '4820007'
                                          - '4830007'
                                          - '4840007'
                                          - '4850007'
                                          - '4860007'
                                          - '4880007'
                                          - '4890007'
                                          - '4910008'
                                          - '4920009'
                                          - '4930010'
                                          - '5100011'
                                          - '5180012'
                                          - '5210013'
                                          - '5220013'
                                          - '5230013'
                                          - '5240013'
                                          - '5250013'
                                          - '5260013'
                                          - '5270013'
                                          - '5280013'
                                          - '5290013'
                                          - '5310013'
                                          - '5320013'
                                          - '5330013'
                                          - '5340013'
                                          - '5350013'
                                          - '5360013'
                                          - '5370013'
                                          - '5390013'
                                          - '5410013'
                                          - '5420013'
                                          - '5430013'
                                          - '5440013'
                                          - '5450013'
                                          - '5510014'
                                          - '5520014'
                                          - '5530014'
                                          - '5540014'
                                          - '5550014'
                                          - '5610015'
                                          - '5620015'
                                          - '5630015'
                                          - '5640015'
                                          - '5650015'
                                          - '5660015'
                                          - '5670015'
                                          - '5680015'
                                          - '5690015'
                                          - '5710016'
                                          - '5720016'
                                          - '5730016'
                                          - '5740016'
                                          - '5750016'
                                          - '6100017'
                                          - '6200018'
                                          - '7110019'
                                          - '7120019'
                                          - '7130019'
                                          - '7140019'
                                          - '7150019'
                                          - '7200020'
                                          - '8100021'
                                          - '8200022'
                                          - '8310023'
                                          - '8320023'
                                          - '8330023'
                                          - '8340023'
                                          - '8350023'
                                          - '8360023'
                                          - '8370023'
                                          - '9100025'
                                          - '9810024'
                                          - '9820024'
                                          - '9830024'
                                          - '9840024'
                                          - '9850024'
                                          - '9860024'
                                          - '9870024'
                                          - '9880024'
                                        type: string
                                    nin:
                                      type: array
                                      items:
                                        enum:
                                          - '1000000'
                                          - '1100001'
                                          - '1200001'
                                          - '1300001'
                                          - '1400002'
                                          - '1500001'
                                          - '2100002'
                                          - '2200002'
                                          - '2300003'
                                          - '2400002'
                                          - '2500002'
                                          - '2600003'
                                          - '2710004'
                                          - '2720004'
                                          - '2730004'
                                          - '2740004'
                                          - '2754004'
                                          - '3110005'
                                          - '3120005'
                                          - '3140005'
                                          - '3150005'
                                          - '3210005'
                                          - '3220005'
                                          - '3230005'
                                          - '3240005'
                                          - '3250005'
                                          - '3260005'
                                          - '3270005'
                                          - '3310005'
                                          - '3320005'
                                          - '3330005'
                                          - '3340005'
                                          - '3350005'
                                          - '3360005'
                                          - '3370005'
                                          - '3380005'
                                          - '3410005'
                                          - '3420005'
                                          - '3430005'
                                          - '3440005'
                                          - '4310006'
                                          - '4320006'
                                          - '4330006'
                                          - '4340006'
                                          - '4620006'
                                          - '4630006'
                                          - '4650006'
                                          - '4660026'
                                          - '4670006'
                                          - '4680006'
                                          - '4710006'
                                          - '4720006'
                                          - '4730006'
                                          - '4740006'
                                          - '4750006'
                                          - '4760006'
                                          - '4810007'
                                          - '4820007'
                                          - '4830007'
                                          - '4840007'
                                          - '4850007'
                                          - '4860007'
                                          - '4880007'
                                          - '4890007'
                                          - '4910008'
                                          - '4920009'
                                          - '4930010'
                                          - '5100011'
                                          - '5180012'
                                          - '5210013'
                                          - '5220013'
                                          - '5230013'
                                          - '5240013'
                                          - '5250013'
                                          - '5260013'
                                          - '5270013'
                                          - '5280013'
                                          - '5290013'
                                          - '5310013'
                                          - '5320013'
                                          - '5330013'
                                          - '5340013'
                                          - '5350013'
                                          - '5360013'
                                          - '5370013'
                                          - '5390013'
                                          - '5410013'
                                          - '5420013'
                                          - '5430013'
                                          - '5440013'
                                          - '5450013'
                                          - '5510014'
                                          - '5520014'
                                          - '5530014'
                                          - '5540014'
                                          - '5550014'
                                          - '5610015'
                                          - '5620015'
                                          - '5630015'
                                          - '5640015'
                                          - '5650015'
                                          - '5660015'
                                          - '5670015'
                                          - '5680015'
                                          - '5690015'
                                          - '5710016'
                                          - '5720016'
                                          - '5730016'
                                          - '5740016'
                                          - '5750016'
                                          - '6100017'
                                          - '6200018'
                                          - '7110019'
                                          - '7120019'
                                          - '7130019'
                                          - '7140019'
                                          - '7150019'
                                          - '7200020'
                                          - '8100021'
                                          - '8200022'
                                          - '8310023'
                                          - '8320023'
                                          - '8330023'
                                          - '8340023'
                                          - '8350023'
                                          - '8360023'
                                          - '8370023'
                                          - '9100025'
                                          - '9810024'
                                          - '9820024'
                                          - '9830024'
                                          - '9840024'
                                          - '9850024'
                                          - '9860024'
                                          - '9870024'
                                          - '9880024'
                                        type: string
                              description: Line of Business
                            actividadVulnerable:
                              type: object
                              properties:
                                ARI:
                                  type: object
                                AVI:
                                  type: object
                                  properties:
                                    username:
                                      anyOf:
                                        - type: string
                                        - type: object
                                          properties:
                                            eq:
                                              type: string
                                            contains:
                                              type: string
                                            startsWith:
                                              type: string
                                            endsWith:
                                              type: string
                                            in:
                                              type: array
                                              items:
                                                type: string
                                            nin:
                                              type: array
                                              items:
                                                type: string
                                      description: Username
                                INM:
                                  type: object
                                JYS:
                                  type: object
                                MJR:
                                  type: object
                                MPC:
                                  type: object
                                TSC:
                                  type: object
                                VEH:
                                  type: object
                              description: Actividad Vulnerable
                            cnbv:
                              type: object
                              properties:
                                TRANSMISOR:
                                  type: object
                              description: CNBV
                      description: JurisdictionUtils
                    alertItem:
                      type: object
                      properties:
                        id:
                          anyOf:
                            - type: string
                              format: uuid
                            - type: object
                              properties:
                                eq:
                                  type: string
                                  format: uuid
                                in:
                                  type: array
                                  items:
                                    type: string
                                    format: uuid
                                nin:
                                  type: array
                                  items:
                                    type: string
                                    format: uuid
                          description: ID
                        alertId:
                          anyOf:
                            - type: string
                              format: uuid
                            - type: object
                              properties:
                                eq:
                                  type: string
                                  format: uuid
                                in:
                                  type: array
                                  items:
                                    type: string
                                    format: uuid
                                nin:
                                  type: array
                                  items:
                                    type: string
                                    format: uuid
                          description: Alert ID
                        clientId:
                          anyOf:
                            - type: string
                              format: uuid
                            - type: object
                              properties:
                                eq:
                                  type: string
                                  format: uuid
                                in:
                                  type: array
                                  items:
                                    type: string
                                    format: uuid
                                nin:
                                  type: array
                                  items:
                                    type: string
                                    format: uuid
                          description: Client ID
                        transactionId:
                          anyOf:
                            - type: string
                              format: uuid
                            - type: object
                              properties:
                                eq:
                                  type: string
                                  format: uuid
                                in:
                                  type: array
                                  items:
                                    type: string
                                    format: uuid
                                nin:
                                  type: array
                                  items:
                                    type: string
                                    format: uuid
                          description: Transaction ID
                        hasErrors:
                          type: boolean
                          description: Has Errors
                        clientNames:
                          anyOf:
                            - type: string
                            - type: object
                              properties:
                                eq:
                                  type: string
                                contains:
                                  type: string
                                startsWith:
                                  type: string
                                endsWith:
                                  type: string
                                in:
                                  type: array
                                  items:
                                    type: string
                                nin:
                                  type: array
                                  items:
                                    type: string
                          description: Client Names
                        transactionAmount:
                          anyOf:
                            - type: number
                            - type: object
                              properties:
                                eq:
                                  type: number
                                gt:
                                  type: number
                                gte:
                                  type: number
                                lt:
                                  type: number
                                lte:
                                  type: number
                                in:
                                  type: array
                                  items:
                                    type: number
                                nin:
                                  type: array
                                  items:
                                    type: number
                          description: Transaction Amount
                        transactionCurrency:
                          anyOf:
                            - type: string
                            - type: object
                              properties:
                                eq:
                                  type: string
                                in:
                                  type: array
                                  items:
                                    type: string
                                nin:
                                  type: array
                                  items:
                                    type: string
                          description: Transaction Currency
                        transactionDate:
                          anyOf:
                            - type: string
                              format: date-time
                            - type: object
                              properties:
                                eq:
                                  type: string
                                  format: date-time
                                gt:
                                  type: string
                                  format: date-time
                                gte:
                                  type: string
                                  format: date-time
                                lt:
                                  type: string
                                  format: date-time
                                lte:
                                  type: string
                                  format: date-time
                          description: Transaction Date
                        createdAt:
                          anyOf:
                            - type: string
                              format: date-time
                            - type: object
                              properties:
                                eq:
                                  type: string
                                  format: date-time
                                gt:
                                  type: string
                                  format: date-time
                                gte:
                                  type: string
                                  format: date-time
                                lt:
                                  type: string
                                  format: date-time
                                lte:
                                  type: string
                                  format: date-time
                          description: Created At
                        updatedAt:
                          anyOf:
                            - type: string
                              format: date-time
                            - type: object
                              properties:
                                eq:
                                  type: string
                                  format: date-time
                                gt:
                                  type: string
                                  format: date-time
                                gte:
                                  type: string
                                  format: date-time
                                lt:
                                  type: string
                                  format: date-time
                                lte:
                                  type: string
                                  format: date-time
                          description: Updated At
                        metadataFilters:
                          type: array
                          items:
                            type: object
                            properties:
                              key:
                                type: string
                              value:
                                type: string
                            required:
                              - key
                              - value
                          description: Metadata Filters
                        scopeData:
                          type: object
                          properties:
                            MX:
                              type: object
                              properties:
                                actividadVulnerable:
                                  type: object
                                  properties:
                                    alertDescription:
                                      anyOf:
                                        - type: string
                                        - type: object
                                          properties:
                                            eq:
                                              type: string
                                            contains:
                                              type: string
                                            startsWith:
                                              type: string
                                            endsWith:
                                              type: string
                                            in:
                                              type: array
                                              items:
                                                type: string
                                            nin:
                                              type: array
                                              items:
                                                type: string
                                      description: Alert Description
                                    ARI:
                                      type: object
                                      properties:
                                        alertType:
                                          anyOf:
                                            - enum:
                                                - '100'
                                                - '3001'
                                                - '3002'
                                                - '3003'
                                                - '3004'
                                                - '3005'
                                                - '3006'
                                                - '3007'
                                                - '3008'
                                                - '3009'
                                                - '3010'
                                                - '3011'
                                                - '3012'
                                                - '3013'
                                                - '3014'
                                                - '3015'
                                                - '3016'
                                                - '3017'
                                                - '3018'
                                                - '3019'
                                                - '3020'
                                                - '3021'
                                                - '3022'
                                                - '3023'
                                                - '3024'
                                                - '9999'
                                              type: string
                                            - type: object
                                              properties:
                                                eq:
                                                  enum:
                                                    - '100'
                                                    - '3001'
                                                    - '3002'
                                                    - '3003'
                                                    - '3004'
                                                    - '3005'
                                                    - '3006'
                                                    - '3007'
                                                    - '3008'
                                                    - '3009'
                                                    - '3010'
                                                    - '3011'
                                                    - '3012'
                                                    - '3013'
                                                    - '3014'
                                                    - '3015'
                                                    - '3016'
                                                    - '3017'
                                                    - '3018'
                                                    - '3019'
                                                    - '3020'
                                                    - '3021'
                                                    - '3022'
                                                    - '3023'
                                                    - '3024'
                                                    - '9999'
                                                  type: string
                                                in:
                                                  type: array
                                                  items:
                                                    enum:
                                                      - '100'
                                                      - '3001'
                                                      - '3002'
                                                      - '3003'
                                                      - '3004'
                                                      - '3005'
                                                      - '3006'
                                                      - '3007'
                                                      - '3008'
                                                      - '3009'
                                                      - '3010'
                                                      - '3011'
                                                      - '3012'
                                                      - '3013'
                                                      - '3014'
                                                      - '3015'
                                                      - '3016'
                                                      - '3017'
                                                      - '3018'
                                                      - '3019'
                                                      - '3020'
                                                      - '3021'
                                                      - '3022'
                                                      - '3023'
                                                      - '3024'
                                                      - '9999'
                                                    type: string
                                                nin:
                                                  type: array
                                                  items:
                                                    enum:
                                                      - '100'
                                                      - '3001'
                                                      - '3002'
                                                      - '3003'
                                                      - '3004'
                                                      - '3005'
                                                      - '3006'
                                                      - '3007'
                                                      - '3008'
                                                      - '3009'
                                                      - '3010'
                                                      - '3011'
                                                      - '3012'
                                                      - '3013'
                                                      - '3014'
                                                      - '3015'
                                                      - '3016'
                                                      - '3017'
                                                      - '3018'
                                                      - '3019'
                                                      - '3020'
                                                      - '3021'
                                                      - '3022'
                                                      - '3023'
                                                      - '3024'
                                                      - '9999'
                                                    type: string
                                          description: Alert Type
                                    AVI:
                                      type: object
                                      properties:
                                        alertType:
                                          anyOf:
                                            - enum:
                                                - '100'
                                                - '4101'
                                                - '4102'
                                                - '4103'
                                                - '4104'
                                                - '4105'
                                                - '4106'
                                                - '4107'
                                                - '4108'
                                                - '4109'
                                                - '4110'
                                                - '4111'
                                                - '4112'
                                                - '4113'
                                                - '4114'
                                                - '4115'
                                                - '4116'
                                                - '4117'
                                                - '4118'
                                                - '4119'
                                                - '4120'
                                                - '4121'
                                                - '4122'
                                                - '9999'
                                              type: string
                                            - type: object
                                              properties:
                                                eq:
                                                  enum:
                                                    - '100'
                                                    - '4101'
                                                    - '4102'
                                                    - '4103'
                                                    - '4104'
                                                    - '4105'
                                                    - '4106'
                                                    - '4107'
                                                    - '4108'
                                                    - '4109'
                                                    - '4110'
                                                    - '4111'
                                                    - '4112'
                                                    - '4113'
                                                    - '4114'
                                                    - '4115'
                                                    - '4116'
                                                    - '4117'
                                                    - '4118'
                                                    - '4119'
                                                    - '4120'
                                                    - '4121'
                                                    - '4122'
                                                    - '9999'
                                                  type: string
                                                in:
                                                  type: array
                                                  items:
                                                    enum:
                                                      - '100'
                                                      - '4101'
                                                      - '4102'
                                                      - '4103'
                                                      - '4104'
                                                      - '4105'
                                                      - '4106'
                                                      - '4107'
                                                      - '4108'
                                                      - '4109'
                                                      - '4110'
                                                      - '4111'
                                                      - '4112'
                                                      - '4113'
                                                      - '4114'
                                                      - '4115'
                                                      - '4116'
                                                      - '4117'
                                                      - '4118'
                                                      - '4119'
                                                      - '4120'
                                                      - '4121'
                                                      - '4122'
                                                      - '9999'
                                                    type: string
                                                nin:
                                                  type: array
                                                  items:
                                                    enum:
                                                      - '100'
                                                      - '4101'
                                                      - '4102'
                                                      - '4103'
                                                      - '4104'
                                                      - '4105'
                                                      - '4106'
                                                      - '4107'
                                                      - '4108'
                                                      - '4109'
                                                      - '4110'
                                                      - '4111'
                                                      - '4112'
                                                      - '4113'
                                                      - '4114'
                                                      - '4115'
                                                      - '4116'
                                                      - '4117'
                                                      - '4118'
                                                      - '4119'
                                                      - '4120'
                                                      - '4121'
                                                      - '4122'
                                                      - '9999'
                                                    type: string
                                          description: Alert Type
                                    INM:
                                      type: object
                                      properties:
                                        alertType:
                                          anyOf:
                                            - enum:
                                                - '100'
                                                - '3101'
                                                - '3102'
                                                - '3103'
                                                - '3104'
                                                - '3105'
                                                - '3106'
                                                - '3107'
                                                - '3108'
                                                - '3109'
                                                - '3110'
                                                - '3111'
                                                - '3112'
                                                - '3113'
                                                - '3114'
                                                - '3115'
                                                - '3116'
                                                - '3117'
                                                - '3118'
                                                - '3119'
                                                - '3120'
                                                - '9999'
                                              type: string
                                            - type: object
                                              properties:
                                                eq:
                                                  enum:
                                                    - '100'
                                                    - '3101'
                                                    - '3102'
                                                    - '3103'
                                                    - '3104'
                                                    - '3105'
                                                    - '3106'
                                                    - '3107'
                                                    - '3108'
                                                    - '3109'
                                                    - '3110'
                                                    - '3111'
                                                    - '3112'
                                                    - '3113'
                                                    - '3114'
                                                    - '3115'
                                                    - '3116'
                                                    - '3117'
                                                    - '3118'
                                                    - '3119'
                                                    - '3120'
                                                    - '9999'
                                                  type: string
                                                in:
                                                  type: array
                                                  items:
                                                    enum:
                                                      - '100'
                                                      - '3101'
                                                      - '3102'
                                                      - '3103'
                                                      - '3104'
                                                      - '3105'
                                                      - '3106'
                                                      - '3107'
                                                      - '3108'
                                                      - '3109'
                                                      - '3110'
                                                      - '3111'
                                                      - '3112'
                                                      - '3113'
                                                      - '3114'
                                                      - '3115'
                                                      - '3116'
                                                      - '3117'
                                                      - '3118'
                                                      - '3119'
                                                      - '3120'
                                                      - '9999'
                                                    type: string
                                                nin:
                                                  type: array
                                                  items:
                                                    enum:
                                                      - '100'
                                                      - '3101'
                                                      - '3102'
                                                      - '3103'
                                                      - '3104'
                                                      - '3105'
                                                      - '3106'
                                                      - '3107'
                                                      - '3108'
                                                      - '3109'
                                                      - '3110'
                                                      - '3111'
                                                      - '3112'
                                                      - '3113'
                                                      - '3114'
                                                      - '3115'
                                                      - '3116'
                                                      - '3117'
                                                      - '3118'
                                                      - '3119'
                                                      - '3120'
                                                      - '9999'
                                                    type: string
                                          description: Alert Type
                                    JYS:
                                      type: object
                                      properties:
                                        alertType:
                                          anyOf:
                                            - enum:
                                                - '100'
                                                - '2101'
                                                - '2102'
                                                - '2103'
                                                - '2104'
                                                - '2105'
                                                - '2106'
                                                - '2107'
                                                - '2108'
                                                - '2109'
                                                - '2110'
                                                - '2111'
                                                - '2112'
                                                - '2113'
                                                - '2114'
                                                - '2115'
                                                - '2116'
                                                - '2117'
                                                - '2118'
                                                - '2119'
                                                - '2120'
                                                - '2121'
                                                - '2122'
                                                - '2123'
                                                - '2124'
                                                - '2125'
                                                - '2126'
                                                - '2127'
                                                - '9999'
                                              type: string
                                            - type: object
                                              properties:
                                                eq:
                                                  enum:
                                                    - '100'
                                                    - '2101'
                                                    - '2102'
                                                    - '2103'
                                                    - '2104'
                                                    - '2105'
                                                    - '2106'
                                                    - '2107'
                                                    - '2108'
                                                    - '2109'
                                                    - '2110'
                                                    - '2111'
                                                    - '2112'
                                                    - '2113'
                                                    - '2114'
                                                    - '2115'
                                                    - '2116'
                                                    - '2117'
                                                    - '2118'
                                                    - '2119'
                                                    - '2120'
                                                    - '2121'
                                                    - '2122'
                                                    - '2123'
                                                    - '2124'
                                                    - '2125'
                                                    - '2126'
                                                    - '2127'
                                                    - '9999'
                                                  type: string
                                                in:
                                                  type: array
                                                  items:
                                                    enum:
                                                      - '100'
                                                      - '2101'
                                                      - '2102'
                                                      - '2103'
                                                      - '2104'
                                                      - '2105'
                                                      - '2106'
                                                      - '2107'
                                                      - '2108'
                                                      - '2109'
                                                      - '2110'
                                                      - '2111'
                                                      - '2112'
                                                      - '2113'
                                                      - '2114'
                                                      - '2115'
                                                      - '2116'
                                                      - '2117'
                                                      - '2118'
                                                      - '2119'
                                                      - '2120'
                                                      - '2121'
                                                      - '2122'
                                                      - '2123'
                                                      - '2124'
                                                      - '2125'
                                                      - '2126'
                                                      - '2127'
                                                      - '9999'
                                                    type: string
                                                nin:
                                                  type: array
                                                  items:
                                                    enum:
                                                      - '100'
                                                      - '2101'
                                                      - '2102'
                                                      - '2103'
                                                      - '2104'
                                                      - '2105'
                                                      - '2106'
                                                      - '2107'
                                                      - '2108'
                                                      - '2109'
                                                      - '2110'
                                                      - '2111'
                                                      - '2112'
                                                      - '2113'
                                                      - '2114'
                                                      - '2115'
                                                      - '2116'
                                                      - '2117'
                                                      - '2118'
                                                      - '2119'
                                                      - '2120'
                                                      - '2121'
                                                      - '2122'
                                                      - '2123'
                                                      - '2124'
                                                      - '2125'
                                                      - '2126'
                                                      - '2127'
                                                      - '9999'
                                                    type: string
                                          description: Alert Type
                                    MJR:
                                      type: object
                                      properties:
                                        alertType:
                                          anyOf:
                                            - enum:
                                                - '100'
                                                - '2901'
                                                - '2902'
                                                - '2903'
                                                - '2904'
                                                - '2905'
                                                - '2906'
                                                - '2907'
                                                - '2908'
                                                - '2909'
                                                - '2910'
                                                - '2911'
                                                - '2912'
                                                - '2913'
                                                - '2914'
                                                - '2915'
                                                - '2916'
                                                - '2917'
                                                - '2918'
                                                - '2919'
                                                - '2920'
                                                - '2921'
                                                - '2922'
                                                - '2923'
                                                - '2924'
                                                - '2925'
                                                - '9999'
                                              type: string
                                            - type: object
                                              properties:
                                                eq:
                                                  enum:
                                                    - '100'
                                                    - '2901'
                                                    - '2902'
                                                    - '2903'
                                                    - '2904'
                                                    - '2905'
                                                    - '2906'
                                                    - '2907'
                                                    - '2908'
                                                    - '2909'
                                                    - '2910'
                                                    - '2911'
                                                    - '2912'
                                                    - '2913'
                                                    - '2914'
                                                    - '2915'
                                                    - '2916'
                                                    - '2917'
                                                    - '2918'
                                                    - '2919'
                                                    - '2920'
                                                    - '2921'
                                                    - '2922'
                                                    - '2923'
                                                    - '2924'
                                                    - '2925'
                                                    - '9999'
                                                  type: string
                                                in:
                                                  type: array
                                                  items:
                                                    enum:
                                                      - '100'
                                                      - '2901'
                                                      - '2902'
                                                      - '2903'
                                                      - '2904'
                                                      - '2905'
                                                      - '2906'
                                                      - '2907'
                                                      - '2908'
                                                      - '2909'
                                                      - '2910'
                                                      - '2911'
                                                      - '2912'
                                                      - '2913'
                                                      - '2914'
                                                      - '2915'
                                                      - '2916'
                                                      - '2917'
                                                      - '2918'
                                                      - '2919'
                                                      - '2920'
                                                      - '2921'
                                                      - '2922'
                                                      - '2923'
                                                      - '2924'
                                                      - '2925'
                                                      - '9999'
                                                    type: string
                                                nin:
                                                  type: array
                                                  items:
                                                    enum:
                                                      - '100'
                                                      - '2901'
                                                      - '2902'
                                                      - '2903'
                                                      - '2904'
                                                      - '2905'
                                                      - '2906'
                                                      - '2907'
                                                      - '2908'
                                                      - '2909'
                                                      - '2910'
                                                      - '2911'
                                                      - '2912'
                                                      - '2913'
                                                      - '2914'
                                                      - '2915'
                                                      - '2916'
                                                      - '2917'
                                                      - '2918'
                                                      - '2919'
                                                      - '2920'
                                                      - '2921'
                                                      - '2922'
                                                      - '2923'
                                                      - '2924'
                                                      - '2925'
                                                      - '9999'
                                                    type: string
                                          description: Alert Type
                                    MPC:
                                      type: object
                                      properties:
                                        alertType:
                                          anyOf:
                                            - enum:
                                                - '100'
                                                - '2801'
                                                - '2802'
                                                - '2803'
                                                - '2804'
                                                - '2805'
                                                - '2806'
                                                - '2807'
                                                - '2808'
                                                - '2809'
                                                - '2810'
                                                - '2811'
                                                - '2812'
                                                - '2813'
                                                - '2814'
                                                - '9999'
                                              type: string
                                            - type: object
                                              properties:
                                                eq:
                                                  enum:
                                                    - '100'
                                                    - '2801'
                                                    - '2802'
                                                    - '2803'
                                                    - '2804'
                                                    - '2805'
                                                    - '2806'
                                                    - '2807'
                                                    - '2808'
                                                    - '2809'
                                                    - '2810'
                                                    - '2811'
                                                    - '2812'
                                                    - '2813'
                                                    - '2814'
                                                    - '9999'
                                                  type: string
                                                in:
                                                  type: array
                                                  items:
                                                    enum:
                                                      - '100'
                                                      - '2801'
                                                      - '2802'
                                                      - '2803'
                                                      - '2804'
                                                      - '2805'
                                                      - '2806'
                                                      - '2807'
                                                      - '2808'
                                                      - '2809'
                                                      - '2810'
                                                      - '2811'
                                                      - '2812'
                                                      - '2813'
                                                      - '2814'
                                                      - '9999'
                                                    type: string
                                                nin:
                                                  type: array
                                                  items:
                                                    enum:
                                                      - '100'
                                                      - '2801'
                                                      - '2802'
                                                      - '2803'
                                                      - '2804'
                                                      - '2805'
                                                      - '2806'
                                                      - '2807'
                                                      - '2808'
                                                      - '2809'
                                                      - '2810'
                                                      - '2811'
                                                      - '2812'
                                                      - '2813'
                                                      - '2814'
                                                      - '9999'
                                                    type: string
                                          description: Alert Type
                                    TSC:
                                      type: object
                                      properties:
                                        alertType:
                                          anyOf:
                                            - enum:
                                                - '100'
                                                - '2201'
                                                - '2202'
                                                - '2203'
                                                - '2204'
                                                - '2205'
                                                - '2206'
                                                - '2207'
                                                - '2208'
                                                - '2209'
                                                - '2210'
                                                - '2211'
                                                - '2212'
                                                - '2213'
                                                - '2214'
                                                - '2215'
                                                - '2216'
                                                - '9999'
                                              type: string
                                            - type: object
                                              properties:
                                                eq:
                                                  enum:
                                                    - '100'
                                                    - '2201'
                                                    - '2202'
                                                    - '2203'
                                                    - '2204'
                                                    - '2205'
                                                    - '2206'
                                                    - '2207'
                                                    - '2208'
                                                    - '2209'
                                                    - '2210'
                                                    - '2211'
                                                    - '2212'
                                                    - '2213'
                                                    - '2214'
                                                    - '2215'
                                                    - '2216'
                                                    - '9999'
                                                  type: string
                                                in:
                                                  type: array
                                                  items:
                                                    enum:
                                                      - '100'
                                                      - '2201'
                                                      - '2202'
                                                      - '2203'
                                                      - '2204'
                                                      - '2205'
                                                      - '2206'
                                                      - '2207'
                                                      - '2208'
                                                      - '2209'
                                                      - '2210'
                                                      - '2211'
                                                      - '2212'
                                                      - '2213'
                                                      - '2214'
                                                      - '2215'
                                                      - '2216'
                                                      - '9999'
                                                    type: string
                                                nin:
                                                  type: array
                                                  items:
                                                    enum:
                                                      - '100'
                                                      - '2201'
                                                      - '2202'
                                                      - '2203'
                                                      - '2204'
                                                      - '2205'
                                                      - '2206'
                                                      - '2207'
                                                      - '2208'
                                                      - '2209'
                                                      - '2210'
                                                      - '2211'
                                                      - '2212'
                                                      - '2213'
                                                      - '2214'
                                                      - '2215'
                                                      - '2216'
                                                      - '9999'
                                                    type: string
                                          description: Alert Type
                                    VEH:
                                      type: object
                                      properties:
                                        alertType:
                                          anyOf:
                                            - enum:
                                                - '100'
                                                - '2501'
                                                - '2502'
                                                - '2503'
                                                - '2504'
                                                - '2505'
                                                - '2506'
                                                - '2507'
                                                - '2508'
                                                - '2509'
                                                - '2510'
                                                - '2511'
                                                - '2512'
                                                - '2513'
                                                - '2514'
                                                - '2515'
                                                - '2516'
                                                - '2517'
                                                - '2518'
                                                - '2519'
                                                - '2520'
                                                - '2521'
                                                - '9999'
                                              type: string
                                            - type: object
                                              properties:
                                                eq:
                                                  enum:
                                                    - '100'
                                                    - '2501'
                                                    - '2502'
                                                    - '2503'
                                                    - '2504'
                                                    - '2505'
                                                    - '2506'
                                                    - '2507'
                                                    - '2508'
                                                    - '2509'
                                                    - '2510'
                                                    - '2511'
                                                    - '2512'
                                                    - '2513'
                                                    - '2514'
                                                    - '2515'
                                                    - '2516'
                                                    - '2517'
                                                    - '2518'
                                                    - '2519'
                                                    - '2520'
                                                    - '2521'
                                                    - '9999'
                                                  type: string
                                                in:
                                                  type: array
                                                  items:
                                                    enum:
                                                      - '100'
                                                      - '2501'
                                                      - '2502'
                                                      - '2503'
                                                      - '2504'
                                                      - '2505'
                                                      - '2506'
                                                      - '2507'
                                                      - '2508'
                                                      - '2509'
                                                      - '2510'
                                                      - '2511'
                                                      - '2512'
                                                      - '2513'
                                                      - '2514'
                                                      - '2515'
                                                      - '2516'
                                                      - '2517'
                                                      - '2518'
                                                      - '2519'
                                                      - '2520'
                                                      - '2521'
                                                      - '9999'
                                                    type: string
                                                nin:
                                                  type: array
                                                  items:
                                                    enum:
                                                      - '100'
                                                      - '2501'
                                                      - '2502'
                                                      - '2503'
                                                      - '2504'
                                                      - '2505'
                                                      - '2506'
                                                      - '2507'
                                                      - '2508'
                                                      - '2509'
                                                      - '2510'
                                                      - '2511'
                                                      - '2512'
                                                      - '2513'
                                                      - '2514'
                                                      - '2515'
                                                      - '2516'
                                                      - '2517'
                                                      - '2518'
                                                      - '2519'
                                                      - '2520'
                                                      - '2521'
                                                      - '9999'
                                                    type: string
                                          description: Alert Type
                                  description: Actividad Vulnerable
                                cnbv:
                                  type: object
                                  properties:
                                    TRANSMISOR:
                                      type: object
                                  description: CNBV
                          description: JurisdictionUtils
                    alertItemHasErrors:
                      type: boolean
                      description: Has Validation Errors
                sort:
                  type: array
                  items:
                    type: object
                    properties:
                      field:
                        enum:
                          - name
                          - email
                          - type
                          - age
                          - createdAt
                          - updatedAt
                          - relevance
                          - scopeData.MX.rfc
                          - scopeData.MX.curp
                          - scopeData.MX.actividadVulnerable.AVI.username
                        type: string
                      direction:
                        enum:
                          - asc
                          - desc
                        type: string
                    required:
                      - field
                      - direction
                cursor:
                  type: string
                offset:
                  type: integer
                  minimum: 0
                  maximum: 9007199254740991
                limit:
                  type: integer
                  minimum: 1
                  maximum: 200
                  default: 20
                includeTotalCount:
                  type: boolean
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      allOf:
                        - allOf:
                            - anyOf:
                                - type: object
                                  properties:
                                    type:
                                      const: individual
                                      description: Type
                                    name:
                                      type: string
                                      minLength: 1
                                      description: Name
                                    nationalities:
                                      description: Nationalities
                                    externalId:
                                      type: string
                                      description: External ID
                                    metadata:
                                      type: object
                                      propertyNames:
                                        type: string
                                      additionalProperties: {}
                                      description: Metadata
                                    birthDate:
                                      type: string
                                      format: date
                                      description: Birth Date
                                    middleName:
                                      type: string
                                      description: Middle Name
                                    lastName:
                                      description: Last Name
                                    employment:
                                      type: object
                                      properties:
                                        isEmployee:
                                          type: boolean
                                          description: Is Employee
                                        employeeId:
                                          type: string
                                          description: Employee ID
                                        position:
                                          type: string
                                          description: Position
                                        department:
                                          type: string
                                          description: Department
                                        startDate:
                                          type: string
                                          format: date
                                          description: Start Date
                                      required:
                                        - isEmployee
                                      description: Employment
                                    scopes:
                                      type: array
                                      minItems: 1
                                      items:
                                        enum:
                                          - base
                                          - MX:AV
                                          - MX:AV:ARI
                                          - MX:AV:AVI
                                          - MX:AV:INM
                                          - MX:AV:JYS
                                          - MX:AV:MJR
                                          - MX:AV:MPC
                                          - MX:AV:TSC
                                          - MX:AV:VEH
                                          - MX:CNBV
                                          - MX:CNBV:TRANSMISOR
                                          - MX
                                        type: string
                                    scopeData:
                                      type: object
                                      properties:
                                        MX:
                                          type: object
                                          properties:
                                            rfc:
                                              type: string
                                            curp:
                                              type: string
                                            actividadEconomica:
                                              enum:
                                                - '1000000'
                                                - '1110100'
                                                - '1110400'
                                                - '1220100'
                                                - '1220200'
                                                - '1330200'
                                                - '2130100'
                                                - '2140100'
                                                - '2210100'
                                                - '2240200'
                                                - '2420100'
                                                - '2420200'
                                                - '2530100'
                                                - '3130100'
                                                - '3130300'
                                                - '3310300'
                                                - '3310400'
                                                - '3310600'
                                                - '3410200'
                                                - '3420100'
                                                - '3420200'
                                                - '4130300'
                                                - '4130500'
                                                - '4131000'
                                                - '4230200'
                                                - '4230500'
                                                - '4330100'
                                                - '4330200'
                                                - '4430200'
                                                - '4440100'
                                                - '4530200'
                                                - '4530500'
                                                - '4630100'
                                                - '4640300'
                                                - '5110100'
                                                - '5121300'
                                                - '5210100'
                                                - '5310700'
                                                - '5410100'
                                                - '5420700'
                                                - '5510100'
                                                - '5610200'
                                                - '5710200'
                                                - '5720800'
                                                - '5720900'
                                                - '5721000'
                                                - '5721100'
                                                - '5722900'
                                                - '5730600'
                                                - '5731100'
                                                - '5810200'
                                                - '5910400'
                                                - '6120100'
                                                - '6120200'
                                                - '6220100'
                                                - '6330100'
                                                - '6330200'
                                                - '6330400'
                                                - '6330500'
                                                - '6330600'
                                                - '6420100'
                                                - '6430100'
                                                - '6430300'
                                                - '7110200'
                                                - '7110300'
                                                - '7110500'
                                                - '7110600'
                                                - '7120100'
                                                - '7130200'
                                                - '7130400'
                                                - '7140100'
                                                - '7140200'
                                                - '7210100'
                                                - '7230200'
                                                - '7240200'
                                                - '7330200'
                                                - '7330300'
                                                - '7430100'
                                                - '7430200'
                                                - '7430400'
                                                - '7530100'
                                                - '7540100'
                                                - '7620100'
                                                - '7620200'
                                                - '7630100'
                                                - '7630200'
                                                - '7720100'
                                                - '7720200'
                                                - '7720300'
                                                - '7810200'
                                                - '8120100'
                                                - '8130500'
                                                - '8140100'
                                                - '8210100'
                                                - '8220400'
                                                - '8220600'
                                                - '8230300'
                                                - '8240100'
                                                - '8240200'
                                                - '8240600'
                                                - '8240700'
                                                - '8250100'
                                                - '8250200'
                                                - '8250800'
                                                - '8340100'
                                                - '8340300'
                                                - '9120700'
                                                - '9130300'
                                                - '9131200'
                                                - '9140200'
                                                - '9140400'
                                                - '9140500'
                                                - '9140700'
                                                - '9140800'
                                                - '9230100'
                                                - '9230200'
                                                - '9230300'
                                                - '9230400'
                                                - '9330100'
                                                - '9330300'
                                                - '9420100'
                                                - '9420300'
                                                - '9430100'
                                                - '1014010'
                                                - '1014030'
                                                - '1023010'
                                                - '1023070'
                                                - '1024020'
                                                - '1033010'
                                                - '1033020'
                                                - '1033040'
                                                - '1034010'
                                                - '1044010'
                                                - '1052010'
                                                - '1054010'
                                                - '1112010'
                                                - '1113010'
                                                - '1113020'
                                                - '1114010'
                                                - '1114020'
                                                - '1114030'
                                                - '1114040'
                                                - '1114050'
                                                - '1114060'
                                                - '1114070'
                                                - '1114090'
                                                - '1123020'
                                                - '1124070'
                                                - '1125010'
                                                - '1133010'
                                                - '1134010'
                                                - '1135010'
                                                - '1135080'
                                                - '1135020'
                                                - '1135030'
                                                - '1135050'
                                                - '1135060'
                                                - '1135070'
                                                - '1136010'
                                                - '1136020'
                                                - '1136030'
                                                - '1136040'
                                                - '1136070'
                                                - '1136050'
                                                - '1136060'
                                                - '1136090'
                                                - '1136080'
                                              type: string
                                            giroMercantil:
                                              enum:
                                                - '1000000'
                                                - '1100001'
                                                - '1200001'
                                                - '1300001'
                                                - '1400002'
                                                - '1500001'
                                                - '2100002'
                                                - '2200002'
                                                - '2300003'
                                                - '2400002'
                                                - '2500002'
                                                - '2600003'
                                                - '2710004'
                                                - '2720004'
                                                - '2730004'
                                                - '2740004'
                                                - '2754004'
                                                - '3110005'
                                                - '3120005'
                                                - '3140005'
                                                - '3150005'
                                                - '3210005'
                                                - '3220005'
                                                - '3230005'
                                                - '3240005'
                                                - '3250005'
                                                - '3260005'
                                                - '3270005'
                                                - '3310005'
                                                - '3320005'
                                                - '3330005'
                                                - '3340005'
                                                - '3350005'
                                                - '3360005'
                                                - '3370005'
                                                - '3380005'
                                                - '3410005'
                                                - '3420005'
                                                - '3430005'
                                                - '3440005'
                                                - '4310006'
                                                - '4320006'
                                                - '4330006'
                                                - '4340006'
                                                - '4620006'
                                                - '4630006'
                                                - '4650006'
                                                - '4660026'
                                                - '4670006'
                                                - '4680006'
                                                - '4710006'
                                                - '4720006'
                                                - '4730006'
                                                - '4740006'
                                                - '4750006'
                                                - '4760006'
                                                - '4810007'
                                                - '4820007'
                                                - '4830007'
                                                - '4840007'
                                                - '4850007'
                                                - '4860007'
                                                - '4880007'
                                                - '4890007'
                                                - '4910008'
                                                - '4920009'
                                                - '4930010'
                                                - '5100011'
                                                - '5180012'
                                                - '5210013'
                                                - '5220013'
                                                - '5230013'
                                                - '5240013'
                                                - '5250013'
                                                - '5260013'
                                                - '5270013'
                                                - '5280013'
                                                - '5290013'
                                                - '5310013'
                                                - '5320013'
                                                - '5330013'
                                                - '5340013'
                                                - '5350013'
                                                - '5360013'
                                                - '5370013'
                                                - '5390013'
                                                - '5410013'
                                                - '5420013'
                                                - '5430013'
                                                - '5440013'
                                                - '5450013'
                                                - '5510014'
                                                - '5520014'
                                                - '5530014'
                                                - '5540014'
                                                - '5550014'
                                                - '5610015'
                                                - '5620015'
                                                - '5630015'
                                                - '5640015'
                                                - '5650015'
                                                - '5660015'
                                                - '5670015'
                                                - '5680015'
                                                - '5690015'
                                                - '5710016'
                                                - '5720016'
                                                - '5730016'
                                                - '5740016'
                                                - '5750016'
                                                - '6100017'
                                                - '6200018'
                                                - '7110019'
                                                - '7120019'
                                                - '7130019'
                                                - '7140019'
                                                - '7150019'
                                                - '7200020'
                                                - '8100021'
                                                - '8200022'
                                                - '8310023'
                                                - '8320023'
                                                - '8330023'
                                                - '8340023'
                                                - '8350023'
                                                - '8360023'
                                                - '8370023'
                                                - '9100025'
                                                - '9810024'
                                                - '9820024'
                                                - '9830024'
                                                - '9840024'
                                                - '9850024'
                                                - '9860024'
                                                - '9870024'
                                                - '9880024'
                                              type: string
                                            actividadVulnerable:
                                              type: object
                                              properties:
                                                ARI:
                                                  type: object
                                                AVI:
                                                  type: object
                                                  properties:
                                                    username:
                                                      description: Username
                                                INM:
                                                  type: object
                                                JYS:
                                                  type: object
                                                MJR:
                                                  type: object
                                                MPC:
                                                  type: object
                                                TSC:
                                                  type: object
                                                VEH:
                                                  type: object
                                            cnbv:
                                              type: object
                                              properties:
                                                TRANSMISOR:
                                                  type: object
                                                  properties:
                                                    numeroCuenta:
                                                      type: string
                                                      pattern: ^[A-Za-z0-9]{1,16}$
                                                      description: Account Number
                                                    claveSujetoObligado:
                                                      type: string
                                                      pattern: ^\d{2}-(\d{3}|\d{5})$
                                                      description: Clave Sujeto Obligado
                                        US: {}
                                  required:
                                    - type
                                    - name
                                    - scopes
                                - type: object
                                  properties:
                                    type:
                                      const: company
                                      description: Type
                                    name:
                                      type: string
                                      minLength: 1
                                      description: Name
                                    nationalities:
                                      description: Nationalities
                                    externalId:
                                      type: string
                                      description: External ID
                                    metadata:
                                      type: object
                                      propertyNames:
                                        type: string
                                      additionalProperties: {}
                                      description: Metadata
                                    incorporationDate:
                                      type: string
                                      format: date
                                      description: Incorporation Date
                                    commercialName:
                                      type: string
                                      description: Commercial Name
                                    scopes:
                                      type: array
                                      minItems: 1
                                      items:
                                        enum:
                                          - base
                                          - MX:AV
                                          - MX:AV:ARI
                                          - MX:AV:AVI
                                          - MX:AV:INM
                                          - MX:AV:JYS
                                          - MX:AV:MJR
                                          - MX:AV:MPC
                                          - MX:AV:TSC
                                          - MX:AV:VEH
                                          - MX:CNBV
                                          - MX:CNBV:TRANSMISOR
                                          - MX
                                        type: string
                                    scopeData:
                                      type: object
                                      properties:
                                        MX:
                                          type: object
                                          properties:
                                            rfc:
                                              type: string
                                            curp:
                                              type: string
                                            actividadEconomica:
                                              enum:
                                                - '1000000'
                                                - '1110100'
                                                - '1110400'
                                                - '1220100'
                                                - '1220200'
                                                - '1330200'
                                                - '2130100'
                                                - '2140100'
                                                - '2210100'
                                                - '2240200'
                                                - '2420100'
                                                - '2420200'
                                                - '2530100'
                                                - '3130100'
                                                - '3130300'
                                                - '3310300'
                                                - '3310400'
                                                - '3310600'
                                                - '3410200'
                                                - '3420100'
                                                - '3420200'
                                                - '4130300'
                                                - '4130500'
                                                - '4131000'
                                                - '4230200'
                                                - '4230500'
                                                - '4330100'
                                                - '4330200'
                                                - '4430200'
                                                - '4440100'
                                                - '4530200'
                                                - '4530500'
                                                - '4630100'
                                                - '4640300'
                                                - '5110100'
                                                - '5121300'
                                                - '5210100'
                                                - '5310700'
                                                - '5410100'
                                                - '5420700'
                                                - '5510100'
                                                - '5610200'
                                                - '5710200'
                                                - '5720800'
                                                - '5720900'
                                                - '5721000'
                                                - '5721100'
                                                - '5722900'
                                                - '5730600'
                                                - '5731100'
                                                - '5810200'
                                                - '5910400'
                                                - '6120100'
                                                - '6120200'
                                                - '6220100'
                                                - '6330100'
                                                - '6330200'
                                                - '6330400'
                                                - '6330500'
                                                - '6330600'
                                                - '6420100'
                                                - '6430100'
                                                - '6430300'
                                                - '7110200'
                                                - '7110300'
                                                - '7110500'
                                                - '7110600'
                                                - '7120100'
                                                - '7130200'
                                                - '7130400'
                                                - '7140100'
                                                - '7140200'
                                                - '7210100'
                                                - '7230200'
                                                - '7240200'
                                                - '7330200'
                                                - '7330300'
                                                - '7430100'
                                                - '7430200'
                                                - '7430400'
                                                - '7530100'
                                                - '7540100'
                                                - '7620100'
                                                - '7620200'
                                                - '7630100'
                                                - '7630200'
                                                - '7720100'
                                                - '7720200'
                                                - '7720300'
                                                - '7810200'
                                                - '8120100'
                                                - '8130500'
                                                - '8140100'
                                                - '8210100'
                                                - '8220400'
                                                - '8220600'
                                                - '8230300'
                                                - '8240100'
                                                - '8240200'
                                                - '8240600'
                                                - '8240700'
                                                - '8250100'
                                                - '8250200'
                                                - '8250800'
                                                - '8340100'
                                                - '8340300'
                                                - '9120700'
                                                - '9130300'
                                                - '9131200'
                                                - '9140200'
                                                - '9140400'
                                                - '9140500'
                                                - '9140700'
                                                - '9140800'
                                                - '9230100'
                                                - '9230200'
                                                - '9230300'
                                                - '9230400'
                                                - '9330100'
                                                - '9330300'
                                                - '9420100'
                                                - '9420300'
                                                - '9430100'
                                                - '1014010'
                                                - '1014030'
                                                - '1023010'
                                                - '1023070'
                                                - '1024020'
                                                - '1033010'
                                                - '1033020'
                                                - '1033040'
                                                - '1034010'
                                                - '1044010'
                                                - '1052010'
                                                - '1054010'
                                                - '1112010'
                                                - '1113010'
                                                - '1113020'
                                                - '1114010'
                                                - '1114020'
                                                - '1114030'
                                                - '1114040'
                                                - '1114050'
                                                - '1114060'
                                                - '1114070'
                                                - '1114090'
                                                - '1123020'
                                                - '1124070'
                                                - '1125010'
                                                - '1133010'
                                                - '1134010'
                                                - '1135010'
                                                - '1135080'
                                                - '1135020'
                                                - '1135030'
                                                - '1135050'
                                                - '1135060'
                                                - '1135070'
                                                - '1136010'
                                                - '1136020'
                                                - '1136030'
                                                - '1136040'
                                                - '1136070'
                                                - '1136050'
                                                - '1136060'
                                                - '1136090'
                                                - '1136080'
                                              type: string
                                            giroMercantil:
                                              enum:
                                                - '1000000'
                                                - '1100001'
                                                - '1200001'
                                                - '1300001'
                                                - '1400002'
                                                - '1500001'
                                                - '2100002'
                                                - '2200002'
                                                - '2300003'
                                                - '2400002'
                                                - '2500002'
                                                - '2600003'
                                                - '2710004'
                                                - '2720004'
                                                - '2730004'
                                                - '2740004'
                                                - '2754004'
                                                - '3110005'
                                                - '3120005'
                                                - '3140005'
                                                - '3150005'
                                                - '3210005'
                                                - '3220005'
                                                - '3230005'
                                                - '3240005'
                                                - '3250005'
                                                - '3260005'
                                                - '3270005'
                                                - '3310005'
                                                - '3320005'
                                                - '3330005'
                                                - '3340005'
                                                - '3350005'
                                                - '3360005'
                                                - '3370005'
                                                - '3380005'
                                                - '3410005'
                                                - '3420005'
                                                - '3430005'
                                                - '3440005'
                                                - '4310006'
                                                - '4320006'
                                                - '4330006'
                                                - '4340006'
                                                - '4620006'
                                                - '4630006'
                                                - '4650006'
                                                - '4660026'
                                                - '4670006'
                                                - '4680006'
                                                - '4710006'
                                                - '4720006'
                                                - '4730006'
                                                - '4740006'
                                                - '4750006'
                                                - '4760006'
                                                - '4810007'
                                                - '4820007'
                                                - '4830007'
                                                - '4840007'
                                                - '4850007'
                                                - '4860007'
                                                - '4880007'
                                                - '4890007'
                                                - '4910008'
                                                - '4920009'
                                                - '4930010'
                                                - '5100011'
                                                - '5180012'
                                                - '5210013'
                                                - '5220013'
                                                - '5230013'
                                                - '5240013'
                                                - '5250013'
                                                - '5260013'
                                                - '5270013'
                                                - '5280013'
                                                - '5290013'
                                                - '5310013'
                                                - '5320013'
                                                - '5330013'
                                                - '5340013'
                                                - '5350013'
                                                - '5360013'
                                                - '5370013'
                                                - '5390013'
                                                - '5410013'
                                                - '5420013'
                                                - '5430013'
                                                - '5440013'
                                                - '5450013'
                                                - '5510014'
                                                - '5520014'
                                                - '5530014'
                                                - '5540014'
                                                - '5550014'
                                                - '5610015'
                                                - '5620015'
                                                - '5630015'
                                                - '5640015'
                                                - '5650015'
                                                - '5660015'
                                                - '5670015'
                                                - '5680015'
                                                - '5690015'
                                                - '5710016'
                                                - '5720016'
                                                - '5730016'
                                                - '5740016'
                                                - '5750016'
                                                - '6100017'
                                                - '6200018'
                                                - '7110019'
                                                - '7120019'
                                                - '7130019'
                                                - '7140019'
                                                - '7150019'
                                                - '7200020'
                                                - '8100021'
                                                - '8200022'
                                                - '8310023'
                                                - '8320023'
                                                - '8330023'
                                                - '8340023'
                                                - '8350023'
                                                - '8360023'
                                                - '8370023'
                                                - '9100025'
                                                - '9810024'
                                                - '9820024'
                                                - '9830024'
                                                - '9840024'
                                                - '9850024'
                                                - '9860024'
                                                - '9870024'
                                                - '9880024'
                                              type: string
                                            actividadVulnerable:
                                              type: object
                                              properties:
                                                ARI:
                                                  type: object
                                                AVI:
                                                  type: object
                                                  properties:
                                                    username:
                                                      description: Username
                                                INM:
                                                  type: object
                                                JYS:
                                                  type: object
                                                MJR:
                                                  type: object
                                                MPC:
                                                  type: object
                                                TSC:
                                                  type: object
                                                VEH:
                                                  type: object
                                            cnbv:
                                              type: object
                                              properties:
                                                TRANSMISOR:
                                                  type: object
                                                  properties:
                                                    numeroCuenta:
                                                      type: string
                                                      pattern: ^[A-Za-z0-9]{1,16}$
                                                      description: Account Number
                                                    claveSujetoObligado:
                                                      type: string
                                                      pattern: ^\d{2}-(\d{3}|\d{5})$
                                                      description: Clave Sujeto Obligado
                                        US: {}
                                  required:
                                    - type
                                    - name
                                    - scopes
                                - type: object
                                  properties:
                                    type:
                                      const: trust
                                      description: Type
                                    name:
                                      type: string
                                      minLength: 1
                                      description: Name
                                    nationalities:
                                      description: Nationalities
                                    externalId:
                                      type: string
                                      description: External ID
                                    metadata:
                                      type: object
                                      propertyNames:
                                        type: string
                                      additionalProperties: {}
                                      description: Metadata
                                    formationDate:
                                      type: string
                                      format: date
                                      description: Formation Date
                                    scopes:
                                      type: array
                                      minItems: 1
                                      items:
                                        enum:
                                          - base
                                          - MX:AV
                                          - MX:AV:ARI
                                          - MX:AV:AVI
                                          - MX:AV:INM
                                          - MX:AV:JYS
                                          - MX:AV:MJR
                                          - MX:AV:MPC
                                          - MX:AV:TSC
                                          - MX:AV:VEH
                                          - MX:CNBV
                                          - MX:CNBV:TRANSMISOR
                                          - MX
                                        type: string
                                    scopeData:
                                      type: object
                                      properties:
                                        MX:
                                          type: object
                                          properties:
                                            rfc:
                                              type: string
                                            curp:
                                              type: string
                                            actividadEconomica:
                                              enum:
                                                - '1000000'
                                                - '1110100'
                                                - '1110400'
                                                - '1220100'
                                                - '1220200'
                                                - '1330200'
                                                - '2130100'
                                                - '2140100'
                                                - '2210100'
                                                - '2240200'
                                                - '2420100'
                                                - '2420200'
                                                - '2530100'
                                                - '3130100'
                                                - '3130300'
                                                - '3310300'
                                                - '3310400'
                                                - '3310600'
                                                - '3410200'
                                                - '3420100'
                                                - '3420200'
                                                - '4130300'
                                                - '4130500'
                                                - '4131000'
                                                - '4230200'
                                                - '4230500'
                                                - '4330100'
                                                - '4330200'
                                                - '4430200'
                                                - '4440100'
                                                - '4530200'
                                                - '4530500'
                                                - '4630100'
                                                - '4640300'
                                                - '5110100'
                                                - '5121300'
                                                - '5210100'
                                                - '5310700'
                                                - '5410100'
                                                - '5420700'
                                                - '5510100'
                                                - '5610200'
                                                - '5710200'
                                                - '5720800'
                                                - '5720900'
                                                - '5721000'
                                                - '5721100'
                                                - '5722900'
                                                - '5730600'
                                                - '5731100'
                                                - '5810200'
                                                - '5910400'
                                                - '6120100'
                                                - '6120200'
                                                - '6220100'
                                                - '6330100'
                                                - '6330200'
                                                - '6330400'
                                                - '6330500'
                                                - '6330600'
                                                - '6420100'
                                                - '6430100'
                                                - '6430300'
                                                - '7110200'
                                                - '7110300'
                                                - '7110500'
                                                - '7110600'
                                                - '7120100'
                                                - '7130200'
                                                - '7130400'
                                                - '7140100'
                                                - '7140200'
                                                - '7210100'
                                                - '7230200'
                                                - '7240200'
                                                - '7330200'
                                                - '7330300'
                                                - '7430100'
                                                - '7430200'
                                                - '7430400'
                                                - '7530100'
                                                - '7540100'
                                                - '7620100'
                                                - '7620200'
                                                - '7630100'
                                                - '7630200'
                                                - '7720100'
                                                - '7720200'
                                                - '7720300'
                                                - '7810200'
                                                - '8120100'
                                                - '8130500'
                                                - '8140100'
                                                - '8210100'
                                                - '8220400'
                                                - '8220600'
                                                - '8230300'
                                                - '8240100'
                                                - '8240200'
                                                - '8240600'
                                                - '8240700'
                                                - '8250100'
                                                - '8250200'
                                                - '8250800'
                                                - '8340100'
                                                - '8340300'
                                                - '9120700'
                                                - '9130300'
                                                - '9131200'
                                                - '9140200'
                                                - '9140400'
                                                - '9140500'
                                                - '9140700'
                                                - '9140800'
                                                - '9230100'
                                                - '9230200'
                                                - '9230300'
                                                - '9230400'
                                                - '9330100'
                                                - '9330300'
                                                - '9420100'
                                                - '9420300'
                                                - '9430100'
                                                - '1014010'
                                                - '1014030'
                                                - '1023010'
                                                - '1023070'
                                                - '1024020'
                                                - '1033010'
                                                - '1033020'
                                                - '1033040'
                                                - '1034010'
                                                - '1044010'
                                                - '1052010'
                                                - '1054010'
                                                - '1112010'
                                                - '1113010'
                                                - '1113020'
                                                - '1114010'
                                                - '1114020'
                                                - '1114030'
                                                - '1114040'
                                                - '1114050'
                                                - '1114060'
                                                - '1114070'
                                                - '1114090'
                                                - '1123020'
                                                - '1124070'
                                                - '1125010'
                                                - '1133010'
                                                - '1134010'
                                                - '1135010'
                                                - '1135080'
                                                - '1135020'
                                                - '1135030'
                                                - '1135050'
                                                - '1135060'
                                                - '1135070'
                                                - '1136010'
                                                - '1136020'
                                                - '1136030'
                                                - '1136040'
                                                - '1136070'
                                                - '1136050'
                                                - '1136060'
                                                - '1136090'
                                                - '1136080'
                                              type: string
                                            giroMercantil:
                                              enum:
                                                - '1000000'
                                                - '1100001'
                                                - '1200001'
                                                - '1300001'
                                                - '1400002'
                                                - '1500001'
                                                - '2100002'
                                                - '2200002'
                                                - '2300003'
                                                - '2400002'
                                                - '2500002'
                                                - '2600003'
                                                - '2710004'
                                                - '2720004'
                                                - '2730004'
                                                - '2740004'
                                                - '2754004'
                                                - '3110005'
                                                - '3120005'
                                                - '3140005'
                                                - '3150005'
                                                - '3210005'
                                                - '3220005'
                                                - '3230005'
                                                - '3240005'
                                                - '3250005'
                                                - '3260005'
                                                - '3270005'
                                                - '3310005'
                                                - '3320005'
                                                - '3330005'
                                                - '3340005'
                                                - '3350005'
                                                - '3360005'
                                                - '3370005'
                                                - '3380005'
                                                - '3410005'
                                                - '3420005'
                                                - '3430005'
                                                - '3440005'
                                                - '4310006'
                                                - '4320006'
                                                - '4330006'
                                                - '4340006'
                                                - '4620006'
                                                - '4630006'
                                                - '4650006'
                                                - '4660026'
                                                - '4670006'
                                                - '4680006'
                                                - '4710006'
                                                - '4720006'
                                                - '4730006'
                                                - '4740006'
                                                - '4750006'
                                                - '4760006'
                                                - '4810007'
                                                - '4820007'
                                                - '4830007'
                                                - '4840007'
                                                - '4850007'
                                                - '4860007'
                                                - '4880007'
                                                - '4890007'
                                                - '4910008'
                                                - '4920009'
                                                - '4930010'
                                                - '5100011'
                                                - '5180012'
                                                - '5210013'
                                                - '5220013'
                                                - '5230013'
                                                - '5240013'
                                                - '5250013'
                                                - '5260013'
                                                - '5270013'
                                                - '5280013'
                                                - '5290013'
                                                - '5310013'
                                                - '5320013'
                                                - '5330013'
                                                - '5340013'
                                                - '5350013'
                                                - '5360013'
                                                - '5370013'
                                                - '5390013'
                                                - '5410013'
                                                - '5420013'
                                                - '5430013'
                                                - '5440013'
                                                - '5450013'
                                                - '5510014'
                                                - '5520014'
                                                - '5530014'
                                                - '5540014'
                                                - '5550014'
                                                - '5610015'
                                                - '5620015'
                                                - '5630015'
                                                - '5640015'
                                                - '5650015'
                                                - '5660015'
                                                - '5670015'
                                                - '5680015'
                                                - '5690015'
                                                - '5710016'
                                                - '5720016'
                                                - '5730016'
                                                - '5740016'
                                                - '5750016'
                                                - '6100017'
                                                - '6200018'
                                                - '7110019'
                                                - '7120019'
                                                - '7130019'
                                                - '7140019'
                                                - '7150019'
                                                - '7200020'
                                                - '8100021'
                                                - '8200022'
                                                - '8310023'
                                                - '8320023'
                                                - '8330023'
                                                - '8340023'
                                                - '8350023'
                                                - '8360023'
                                                - '8370023'
                                                - '9100025'
                                                - '9810024'
                                                - '9820024'
                                                - '9830024'
                                                - '9840024'
                                                - '9850024'
                                                - '9860024'
                                                - '9870024'
                                                - '9880024'
                                              type: string
                                            actividadVulnerable:
                                              type: object
                                              properties:
                                                ARI:
                                                  type: object
                                                AVI:
                                                  type: object
                                                  properties:
                                                    username:
                                                      description: Username
                                                INM:
                                                  type: object
                                                JYS:
                                                  type: object
                                                MJR:
                                                  type: object
                                                MPC:
                                                  type: object
                                                TSC:
                                                  type: object
                                                VEH:
                                                  type: object
                                            cnbv:
                                              type: object
                                              properties:
                                                TRANSMISOR:
                                                  type: object
                                                  properties:
                                                    numeroCuenta:
                                                      type: string
                                                      pattern: ^[A-Za-z0-9]{1,16}$
                                                      description: Account Number
                                                    claveSujetoObligado:
                                                      type: string
                                                      pattern: ^\d{2}-(\d{3}|\d{5})$
                                                      description: Clave Sujeto Obligado
                                        US: {}
                                  required:
                                    - type
                                    - name
                                    - scopes
                            - type: object
                              properties:
                                id:
                                  type: string
                                  format: uuid
                                createdAt:
                                  type: string
                                  format: date-time
                                updatedAt:
                                  type: string
                                  format: date-time
                                scopes:
                                  type: array
                                  items:
                                    enum:
                                      - base
                                      - MX:AV
                                      - MX:AV:ARI
                                      - MX:AV:AVI
                                      - MX:AV:INM
                                      - MX:AV:JYS
                                      - MX:AV:MJR
                                      - MX:AV:MPC
                                      - MX:AV:TSC
                                      - MX:AV:VEH
                                      - MX:CNBV
                                      - MX:CNBV:TRANSMISOR
                                      - MX
                                    type: string
                                isPrimary:
                                  type: boolean
                                email:
                                  anyOf:
                                    - type: string
                                    - type: 'null'
                                phone:
                                  anyOf:
                                    - type: string
                                    - type: 'null'
                                age:
                                  anyOf:
                                    - type: integer
                                      minimum: -9007199254740991
                                      maximum: 9007199254740991
                                    - type: 'null'
                                addresses:
                                  type: array
                                  items:
                                    type: object
                                    properties:
                                      clientId:
                                        type: string
                                        format: uuid
                                        description: Client ID
                                      type:
                                        enum:
                                          - home
                                          - business
                                          - mailing
                                          - legal
                                          - other
                                        type: string
                                        description: Type
                                        default: home
                                      isPrimary:
                                        type: boolean
                                      street:
                                        type: string
                                        minLength: 1
                                        description: Street
                                      city:
                                        type: string
                                        minLength: 1
                                        description: City
                                      state:
                                        type: string
                                        minLength: 1
                                        description: State
                                      postalCode:
                                        type: string
                                        minLength: 1
                                        description: Postal Code
                                      country:
                                        description: Country
                                      externalId:
                                        type: string
                                        description: External ID
                                      metadata:
                                        type: object
                                        propertyNames:
                                          type: string
                                        additionalProperties: {}
                                        description: Metadata
                                      scope:
                                        enum:
                                          - base
                                          - MX:AV
                                          - MX:AV:ARI
                                          - MX:AV:AVI
                                          - MX:AV:INM
                                          - MX:AV:JYS
                                          - MX:AV:MJR
                                          - MX:AV:MPC
                                          - MX:AV:TSC
                                          - MX:AV:VEH
                                          - MX:CNBV
                                          - MX:CNBV:TRANSMISOR
                                          - MX
                                        type: string
                                      scopeData:
                                        type: object
                                        properties:
                                          MX:
                                            type: object
                                            properties:
                                              exteriorNumber:
                                                type: string
                                                minLength: 1
                                                description: Exterior Number
                                              interiorNumber:
                                                type: string
                                                description: Interior Number
                                              neighborhood:
                                                type: string
                                                minLength: 1
                                                description: Neighborhood
                                              municipality:
                                                type: string
                                                description: Municipality
                                              betweenStreets:
                                                type: string
                                                description: Between Streets
                                              reference:
                                                type: string
                                                description: Reference
                                              cnbv:
                                                type: object
                                                properties:
                                                  TRANSMISOR:
                                                    type: object
                                                    properties:
                                                      localidad: {}
                                          US: {}
                                      id:
                                        type: string
                                        format: uuid
                                      createdAt:
                                        type: string
                                        format: date-time
                                      updatedAt:
                                        type: string
                                        format: date-time
                                    required:
                                      - clientId
                                      - isPrimary
                                      - street
                                      - city
                                      - state
                                      - postalCode
                                      - scope
                                      - id
                                      - createdAt
                                      - updatedAt
                                contactMethods:
                                  type: array
                                  items:
                                    type: object
                                    properties:
                                      clientId:
                                        type: string
                                        format: uuid
                                        description: Client ID
                                      type:
                                        enum:
                                          - email
                                          - phone
                                          - mobile
                                          - fax
                                          - other
                                        type: string
                                        description: Type
                                      isPrimary:
                                        type: boolean
                                        default: false
                                        description: Is Primary
                                      value:
                                        type: string
                                        minLength: 1
                                        description: Value
                                      label:
                                        type: string
                                        description: Label
                                      isVerified:
                                        type: boolean
                                      verifiedAt:
                                        anyOf:
                                          - type: string
                                            format: date-time
                                          - type: 'null'
                                      externalId:
                                        type: string
                                        description: External ID
                                      metadata:
                                        type: object
                                        propertyNames:
                                          type: string
                                        additionalProperties: {}
                                        description: Metadata
                                      id:
                                        type: string
                                        format: uuid
                                      createdAt:
                                        type: string
                                        format: date-time
                                      updatedAt:
                                        type: string
                                        format: date-time
                                    required:
                                      - clientId
                                      - type
                                      - value
                                      - isVerified
                                      - verifiedAt
                                      - id
                                      - createdAt
                                      - updatedAt
                                bankAccounts:
                                  type: array
                                  items:
                                    anyOf:
                                      - type: object
                                        properties:
                                          id:
                                            type: string
                                            format: uuid
                                          clientId:
                                            type: string
                                            format: uuid
                                          accountNumber:
                                            type: string
                                            minLength: 1
                                            description: Account Number
                                          bankName:
                                            type: string
                                            minLength: 1
                                            description: Bank Name
                                          bankCode:
                                            type: string
                                            description: Bank Code
                                          country:
                                            const: MX
                                          currency:
                                            type: string
                                            description: Currency
                                          type:
                                            enum:
                                              - checking
                                              - savings
                                              - investment
                                              - other
                                            type: string
                                            description: Type
                                            default: checking
                                          isPrimary:
                                            type: boolean
                                            description: Is Primary
                                          isActive:
                                            type: boolean
                                            description: Is Active
                                          label:
                                            type: string
                                            description: Label
                                          externalId:
                                            type: string
                                            description: External ID
                                          metadata:
                                            type: object
                                            propertyNames:
                                              type: string
                                            additionalProperties: {}
                                            description: Metadata
                                          clabe:
                                            description: CLABE
                                          codigoBanco:
                                            type: string
                                            minLength: 3
                                            maxLength: 3
                                            description: Bank Code
                                          codigoPlaza:
                                            type: string
                                            minLength: 3
                                            maxLength: 3
                                            description: Plaza Code
                                          createdAt:
                                            type: string
                                            format: date-time
                                          updatedAt:
                                            type: string
                                            format: date-time
                                        required:
                                          - id
                                          - clientId
                                          - accountNumber
                                          - bankName
                                          - country
                                          - currency
                                          - createdAt
                                          - updatedAt
                                      - type: object
                                        properties:
                                          id:
                                            type: string
                                            format: uuid
                                          clientId:
                                            type: string
                                            format: uuid
                                          accountNumber:
                                            type: string
                                            minLength: 1
                                            description: Account Number
                                          bankName:
                                            type: string
                                            minLength: 1
                                            description: Bank Name
                                          bankCode:
                                            type: string
                                            description: Bank Code
                                          country: {}
                                          currency:
                                            type: string
                                            description: Currency
                                          type:
                                            enum:
                                              - checking
                                              - savings
                                              - investment
                                              - other
                                            type: string
                                            description: Type
                                            default: checking
                                          isPrimary:
                                            type: boolean
                                            description: Is Primary
                                          isActive:
                                            type: boolean
                                            description: Is Active
                                          label:
                                            type: string
                                            description: Label
                                          externalId:
                                            type: string
                                            description: External ID
                                          metadata:
                                            type: object
                                            propertyNames:
                                              type: string
                                            additionalProperties: {}
                                            description: Metadata
                                          createdAt:
                                            type: string
                                            format: date-time
                                          updatedAt:
                                            type: string
                                            format: date-time
                                        required:
                                          - id
                                          - clientId
                                          - accountNumber
                                          - bankName
                                          - currency
                                          - createdAt
                                          - updatedAt
                                documents:
                                  type: array
                                  items:
                                    allOf:
                                      - type: object
                                        properties:
                                          clientId:
                                            type: string
                                            format: uuid
                                            description: Client ID
                                          category:
                                            enum:
                                              - identity
                                              - tax
                                              - address
                                              - incorporation
                                              - financial
                                              - other
                                              - consent
                                            type: string
                                            description: Category
                                          scope:
                                            enum:
                                              - MX
                                              - US
                                            type: string
                                            description: Scope
                                          type:
                                            type: string
                                            minLength: 1
                                            description: Type
                                          status:
                                            enum:
                                              - pending_upload
                                              - uploaded
                                              - pending_review
                                              - processing
                                              - verified
                                              - rejected
                                              - expired
                                              - no_file
                                            type: string
                                            description: Status
                                            default: pending_upload
                                          filename:
                                            anyOf:
                                              - type: string
                                                description: Filename
                                              - type: 'null'
                                          contentType:
                                            anyOf:
                                              - type: string
                                                description: Content Type
                                              - type: 'null'
                                          size:
                                            anyOf:
                                              - type: integer
                                                minimum: -9007199254740991
                                                maximum: 9007199254740991
                                                description: Size
                                              - type: 'null'
                                          expiresAt:
                                            anyOf:
                                              - type: string
                                                format: date
                                                description: Expires At
                                              - type: 'null'
                                          verifiedAt:
                                            anyOf:
                                              - type: string
                                                format: date-time
                                                description: Verified At
                                              - type: 'null'
                                          verifiedBy:
                                            anyOf:
                                              - type: string
                                                description: Verified By
                                              - type: 'null'
                                          rejectionReason:
                                            anyOf:
                                              - type: string
                                                description: Rejection Reason
                                              - type: 'null'
                                          reviewedAt:
                                            anyOf:
                                              - type: string
                                                format: date-time
                                                description: Reviewed At
                                              - type: 'null'
                                          reviewedBy:
                                            anyOf:
                                              - type: string
                                                description: Reviewed By
                                              - type: 'null'
                                          externalId:
                                            anyOf:
                                              - type: string
                                                description: External ID
                                              - type: 'null'
                                          fields:
                                            anyOf:
                                              - type: object
                                                propertyNames:
                                                  type: string
                                                additionalProperties: {}
                                                description: Fields
                                              - type: 'null'
                                          metadata:
                                            anyOf:
                                              - type: object
                                                propertyNames:
                                                  type: string
                                                additionalProperties: {}
                                                description: Metadata
                                              - type: 'null'
                                        required:
                                          - clientId
                                          - category
                                          - scope
                                          - type
                                      - type: object
                                        properties:
                                          id:
                                            type: string
                                            format: uuid
                                          createdAt:
                                            type: string
                                            format: date-time
                                          updatedAt:
                                            type: string
                                            format: date-time
                                        required:
                                          - id
                                          - createdAt
                                          - updatedAt
                                linkedClients:
                                  type: array
                                  items:
                                    type: object
                                    properties:
                                      id:
                                        type: string
                                        format: uuid
                                      relationshipType:
                                        enum:
                                          - legal_representative
                                          - controlling_beneficiary
                                        type: string
                                      client:
                                        allOf:
                                          - anyOf:
                                              - type: object
                                                properties:
                                                  type:
                                                    const: individual
                                                    description: Type
                                                  name:
                                                    type: string
                                                    minLength: 1
                                                    description: Name
                                                  nationalities:
                                                    description: Nationalities
                                                  externalId:
                                                    type: string
                                                    description: External ID
                                                  metadata:
                                                    type: object
                                                    propertyNames: {}
                                                    additionalProperties: {}
                                                    description: Metadata
                                                  birthDate:
                                                    type: string
                                                    format: date
                                                    description: Birth Date
                                                  middleName:
                                                    type: string
                                                    description: Middle Name
                                                  lastName:
                                                    description: Last Name
                                                  employment:
                                                    type: object
                                                    properties:
                                                      isEmployee: {}
                                                      employeeId: {}
                                                      position: {}
                                                      department: {}
                                                      startDate: {}
                                                    description: Employment
                                                  scopes:
                                                    type: array
                                                    minItems: 1
                                                    items:
                                                      anyOf:
                                                        - {}
                                                        - type: 'null'
                                                  scopeData:
                                                    type: object
                                                    properties:
                                                      MX: {}
                                                      US: {}
                                                required:
                                                  - type
                                                  - name
                                                  - scopes
                                              - type: object
                                                properties:
                                                  type:
                                                    const: company
                                                    description: Type
                                                  name:
                                                    type: string
                                                    minLength: 1
                                                    description: Name
                                                  nationalities:
                                                    description: Nationalities
                                                  externalId:
                                                    type: string
                                                    description: External ID
                                                  metadata:
                                                    type: object
                                                    propertyNames: {}
                                                    additionalProperties: {}
                                                    description: Metadata
                                                  incorporationDate:
                                                    type: string
                                                    format: date
                                                    description: Incorporation Date
                                                  commercialName:
                                                    type: string
                                                    description: Commercial Name
                                                  scopes:
                                                    type: array
                                                    minItems: 1
                                                    items:
                                                      anyOf:
                                                        - {}
                                                        - type: 'null'
                                                  scopeData:
                                                    type: object
                                                    properties:
                                                      MX: {}
                                                      US: {}
                                                required:
                                                  - type
                                                  - name
                                                  - scopes
                                              - type: object
                                                properties:
                                                  type:
                                                    const: trust
                                                    description: Type
                                                  name:
                                                    type: string
                                                    minLength: 1
                                                    description: Name
                                                  nationalities:
                                                    description: Nationalities
                                                  externalId:
                                                    type: string
                                                    description: External ID
                                                  metadata:
                                                    type: object
                                                    propertyNames: {}
                                                    additionalProperties: {}
                                                    description: Metadata
                                                  formationDate:
                                                    type: string
                                                    format: date
                                                    description: Formation Date
                                                  scopes:
                                                    type: array
                                                    minItems: 1
                                                    items:
                                                      anyOf:
                                                        - {}
                                                        - type: 'null'
                                                  scopeData:
                                                    type: object
                                                    properties:
                                                      MX: {}
                                                      US: {}
                                                required:
                                                  - type
                                                  - name
                                                  - scopes
                                          - type: object
                                            properties:
                                              id:
                                                type: string
                                                format: uuid
                                              createdAt:
                                                type: string
                                                format: date-time
                                              updatedAt:
                                                type: string
                                                format: date-time
                                            required:
                                              - id
                                              - createdAt
                                              - updatedAt
                                      metadata:
                                        type: object
                                        propertyNames:
                                          type: string
                                        additionalProperties: {}
                                      createdAt:
                                        type: string
                                        format: date-time
                                      updatedAt:
                                        type: string
                                        format: date-time
                                    required:
                                      - id
                                      - relationshipType
                                      - client
                                      - createdAt
                                      - updatedAt
                                riskAssessments:
                                  type: object
                                  propertyNames:
                                    type: string
                                  additionalProperties:
                                    type: array
                                    items:
                                      type: object
                                      properties:
                                        pillars:
                                          type: object
                                          propertyNames:
                                            type: string
                                          additionalProperties:
                                            type: object
                                            properties:
                                              score:
                                                type: number
                                              weight:
                                                type: number
                                            required:
                                              - score
                                              - weight
                                        overall:
                                          type: number
                                        calculatedAt:
                                          type: string
                                          format: date-time
                                        minScore:
                                          type: number
                                        maxScore:
                                          type: number
                                        roundingMode:
                                          enum:
                                            - ceil
                                            - floor
                                            - round
                                          type: string
                                        decimalPlaces:
                                          type: integer
                                          minimum: 0
                                          maximum: 2
                                        riskLevels:
                                          type: array
                                          items:
                                            type: object
                                            properties:
                                              maxValue:
                                                type: number
                                              label:
                                                type: string
                                                minLength: 1
                                            required:
                                              - maxValue
                                              - label
                                      required:
                                        - pillars
                                        - overall
                                        - calculatedAt
                                tags:
                                  type: array
                                  items:
                                    type: object
                                    properties:
                                      id:
                                        type: string
                                        format: uuid
                                      name:
                                        type: string
                                      color:
                                        anyOf:
                                          - type: string
                                          - type: 'null'
                                    required:
                                      - id
                                      - name
                                      - color
                              required:
                                - id
                                - createdAt
                                - updatedAt
                                - scopes
                                - isPrimary
                        - type: object
                          properties:
                            alertItemId:
                              type: string
                              format: uuid
                            alertItemValidationErrors:
                              type: array
                              items:
                                type: object
                                properties:
                                  path:
                                    type: string
                                  code:
                                    type: string
                                  message:
                                    type: string
                                  severity:
                                    enum:
                                      - error
                                      - warning
                                    type: string
                                  label:
                                    type: string
                                  resource:
                                    enum:
                                      - alert
                                      - alert-item
                                      - client
                                      - transaction
                                      - address
                                      - bank-account
                                      - contact-method
                                      - document
                                      - product
                                    type: string
                                  resourceId:
                                    type: string
                                  sdkField:
                                    type: string
                                  parentClientId:
                                    type: string
                                required:
                                  - path
                                  - code
                                  - message
                                  - severity
                                  - resource
                                  - resourceId
                            alertItemScopeData:
                              type: object
                              properties:
                                MX:
                                  type: object
                                  properties:
                                    actividadVulnerable:
                                      type: object
                                      properties:
                                        alertDescription:
                                          type: string
                                          description: Alert Description
                                        amendment:
                                          type: object
                                          properties:
                                            originalReference:
                                              type: string
                                              minLength: 1
                                              maxLength: 14
                                              description: Original Reference
                                            reason:
                                              type: string
                                              minLength: 1
                                              description: Reason
                                          required:
                                            - originalReference
                                            - reason
                                          description: Amendment
                                        ARI:
                                          type: object
                                          properties:
                                            alertType:
                                              enum:
                                                - '100'
                                                - '3001'
                                                - '3002'
                                                - '3003'
                                                - '3004'
                                                - '3005'
                                                - '3006'
                                                - '3007'
                                                - '3008'
                                                - '3009'
                                                - '3010'
                                                - '3011'
                                                - '3012'
                                                - '3013'
                                                - '3014'
                                                - '3015'
                                                - '3016'
                                                - '3017'
                                                - '3018'
                                                - '3019'
                                                - '3020'
                                                - '3021'
                                                - '3022'
                                                - '3023'
                                                - '3024'
                                                - '9999'
                                              type: string
                                              description: Alert Type
                                        AVI:
                                          type: object
                                          properties:
                                            alertType:
                                              enum:
                                                - '100'
                                                - '4101'
                                                - '4102'
                                                - '4103'
                                                - '4104'
                                                - '4105'
                                                - '4106'
                                                - '4107'
                                                - '4108'
                                                - '4109'
                                                - '4110'
                                                - '4111'
                                                - '4112'
                                                - '4113'
                                                - '4114'
                                                - '4115'
                                                - '4116'
                                                - '4117'
                                                - '4118'
                                                - '4119'
                                                - '4120'
                                                - '4121'
                                                - '4122'
                                                - '9999'
                                              type: string
                                              description: Alert Type
                                        INM:
                                          type: object
                                          properties:
                                            alertType:
                                              enum:
                                                - '100'
                                                - '3101'
                                                - '3102'
                                                - '3103'
                                                - '3104'
                                                - '3105'
                                                - '3106'
                                                - '3107'
                                                - '3108'
                                                - '3109'
                                                - '3110'
                                                - '3111'
                                                - '3112'
                                                - '3113'
                                                - '3114'
                                                - '3115'
                                                - '3116'
                                                - '3117'
                                                - '3118'
                                                - '3119'
                                                - '3120'
                                                - '9999'
                                              type: string
                                              description: Alert Type
                                        JYS:
                                          type: object
                                          properties:
                                            alertType:
                                              enum:
                                                - '100'
                                                - '2101'
                                                - '2102'
                                                - '2103'
                                                - '2104'
                                                - '2105'
                                                - '2106'
                                                - '2107'
                                                - '2108'
                                                - '2109'
                                                - '2110'
                                                - '2111'
                                                - '2112'
                                                - '2113'
                                                - '2114'
                                                - '2115'
                                                - '2116'
                                                - '2117'
                                                - '2118'
                                                - '2119'
                                                - '2120'
                                                - '2121'
                                                - '2122'
                                                - '2123'
                                                - '2124'
                                                - '2125'
                                                - '2126'
                                                - '2127'
                                                - '9999'
                                              type: string
                                              description: Alert Type
                                        MJR:
                                          type: object
                                          properties:
                                            alertType:
                                              enum:
                                                - '100'
                                                - '2901'
                                                - '2902'
                                                - '2903'
                                                - '2904'
                                                - '2905'
                                                - '2906'
                                                - '2907'
                                                - '2908'
                                                - '2909'
                                                - '2910'
                                                - '2911'
                                                - '2912'
                                                - '2913'
                                                - '2914'
                                                - '2915'
                                                - '2916'
                                                - '2917'
                                                - '2918'
                                                - '2919'
                                                - '2920'
                                                - '2921'
                                                - '2922'
                                                - '2923'
                                                - '2924'
                                                - '2925'
                                                - '9999'
                                              type: string
                                              description: Alert Type
                                        MPC:
                                          type: object
                                          properties:
                                            alertType:
                                              enum:
                                                - '100'
                                                - '2801'
                                                - '2802'
                                                - '2803'
                                                - '2804'
                                                - '2805'
                                                - '2806'
                                                - '2807'
                                                - '2808'
                                                - '2809'
                                                - '2810'
                                                - '2811'
                                                - '2812'
                                                - '2813'
                                                - '2814'
                                                - '9999'
                                              type: string
                                              description: Alert Type
                                        TSC:
                                          type: object
                                          properties:
                                            alertType:
                                              enum:
                                                - '100'
                                                - '2201'
                                                - '2202'
                                                - '2203'
                                                - '2204'
                                                - '2205'
                                                - '2206'
                                                - '2207'
                                                - '2208'
                                                - '2209'
                                                - '2210'
                                                - '2211'
                                                - '2212'
                                                - '2213'
                                                - '2214'
                                                - '2215'
                                                - '2216'
                                                - '9999'
                                              type: string
                                              description: Alert Type
                                        VEH:
                                          type: object
                                          properties:
                                            alertType:
                                              enum:
                                                - '100'
                                                - '2501'
                                                - '2502'
                                                - '2503'
                                                - '2504'
                                                - '2505'
                                                - '2506'
                                                - '2507'
                                                - '2508'
                                                - '2509'
                                                - '2510'
                                                - '2511'
                                                - '2512'
                                                - '2513'
                                                - '2514'
                                                - '2515'
                                                - '2516'
                                                - '2517'
                                                - '2518'
                                                - '2519'
                                                - '2520'
                                                - '2521'
                                                - '9999'
                                              type: string
                                              description: Alert Type
                                    cnbv:
                                      type: object
                                      properties:
                                        TRANSMISOR:
                                          type: object
                                          properties:
                                            fechaDeteccion:
                                              type: string
                                              format: date-time
                                              description: Detection Date
                                            descripcionOperacion:
                                              type: string
                                              description: Operation Description
                                            razones:
                                              type: string
                                              description: Reasons
                                US: {}
                            alertItemMetadata:
                              type: object
                              propertyNames:
                                type: string
                              additionalProperties: {}
                            alertItemCreatedAt:
                              type: string
                              format: date-time
                            linkedTransactionId:
                              type: string
                              format: uuid
                  pagination:
                    type: object
                    properties:
                      hasMore:
                        type: boolean
                      nextCursor:
                        type: string
                      totalCount:
                        type: integer
                        minimum: -9007199254740991
                        maximum: 9007199254740991
                    required:
                      - hasMore
                required:
                  - data
                  - pagination
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key
      description: API key authentication. Obtain your API key from the dashboard.
    environmentHeader:
      type: apiKey
      in: header
      name: X-Environment
      description: Target environment for the request. Must be "test" or "live".

````