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

# Consultar sinais da análise

> Sinais identificados em detalhe (evidências, detalhamento de score) mais contagens.



## OpenAPI

````yaml GET /analyses/{analysis_uuid}/signals
openapi: 3.1.0
info:
  description: Superfície pública da API para clientes autenticados por chave de API.
  title: NL Labs Gateway (Public API)
  version: 0.1.0
servers:
  - url: https://api.nlbs.ai
security: []
tags:
  - description: Busca de entidades canônicas.
    name: entities
  - description: Criação, leitura, grafo e dossiê de análises.
    name: analyses
  - description: Relatório regulatório (COAF/SUSEP).
    name: reports
  - description: Triagem de mídia adversa.
    name: adverse-media
  - description: Versões do manifesto regulatório.
    name: regulatory
  - description: Versões do catálogo de regras do motor de risco.
    name: rules
  - description: Endpoints e eventos de webhook.
    name: webhooks
  - description: >-
      Entrypoints HTTP de workflow: invocar um workflow e consultar sua
      execução.
    name: workflow-endpoints
paths:
  /analyses/{analysis_uuid}/signals:
    get:
      tags:
        - analyses
      summary: Consultar sinais da análise
      description: >-
        Sinais identificados em detalhe (evidências, detalhamento de score) mais
        contagens.
      operationId: get_analysis_signals
      parameters:
        - in: path
          name: analysis_uuid
          required: true
          schema:
            format: uuid
            title: Analysis Uuid
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AnalysisSignalsResponse'
          description: Successful Response
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Chave de API ausente, malformada, expirada ou inválida.
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: A chave de API autenticada não tem o escopo necessário.
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Análise não encontrada.
        '422':
          description: >-
            Corpo da requisição, parâmetro de rota, parâmetro de query ou regra
            de negócio inválidos.
components:
  schemas:
    AnalysisSignalsResponse:
      properties:
        counts:
          $ref: '#/components/schemas/SignalCounts'
        domain_occurrences:
          description: >-
            Status consolidado por base consultada (atualidade × sinais
            identificados). Uma base entra em 'bases consultadas sem
            ocorrências' quando has_occurrences é false. Vazio enquanto a
            análise está em execução, e para resultados persistidos antes deste
            campo existir.
          items:
            $ref: '#/components/schemas/DomainOccurrenceSummary'
          title: Domain Occurrences
          type: array
        signals:
          description: >-
            Sinais identificados (graph_paths excluído; use signal_graph_index
            de /graph).
          items:
            $ref: '#/components/schemas/PublicSignalResult'
          title: Signals
          type: array
      required:
        - signals
        - counts
      title: AnalysisSignalsResponse
      type: object
    ErrorResponse:
      properties:
        detail:
          description: Mensagem de erro pública e estável.
          examples:
            - Resource not found.
          title: Detail
          type: string
      required:
        - detail
      title: ErrorResponse
      type: object
    SignalCounts:
      properties:
        by_pillar:
          additionalProperties:
            $ref: '#/components/schemas/PillarSignalCount'
          title: By Pillar
          type: object
        score_sum:
          anyOf:
            - type: number
            - pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
              type: string
          title: Score Sum
        total:
          title: Total
          type: integer
      required:
        - total
        - score_sum
      title: SignalCounts
      type: object
    DomainOccurrenceSummary:
      additionalProperties: false
      properties:
        domain:
          minLength: 1
          title: Domain
          type: string
        has_occurrences:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Has Occurrences
        identified_signal_codes:
          items:
            type: string
          title: Identified Signal Codes
          type: array
        records_found:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Records Found
      required:
        - domain
      title: DomainOccurrenceSummary
      type: object
    PublicSignalResult:
      properties:
        adjusted_score:
          anyOf:
            - type: number
            - pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
              type: string
          title: Adjusted Score
        assessed_entity_id:
          exclusiveMinimum: 0
          title: Assessed Entity Id
          type: integer
        band_floor:
          anyOf:
            - $ref: '#/components/schemas/RiskLevel'
            - type: 'null'
        base_score:
          anyOf:
            - type: number
            - pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
              type: string
          title: Base Score
        code:
          title: Code
          type: string
        evidences:
          items:
            discriminator:
              mapping:
                administrative_condemnation:
                  $ref: '#/components/schemas/AdministrativeCondemnationEvidence'
                administrative_proceeding:
                  $ref: '#/components/schemas/AdministrativeProceedingEvidence'
                betting_operator:
                  $ref: '#/components/schemas/BettingOperatorEvidence'
                border_municipality:
                  $ref: '#/components/schemas/BorderMunicipalityEvidence'
                cadastral_cnae_mismatch:
                  $ref: '#/components/schemas/CadastralCnaeMismatchEvidence'
                cadastral_precariousness:
                  $ref: '#/components/schemas/CadastralPrecariousnessEvidence'
                cnae_mismatch:
                  $ref: '#/components/schemas/CnaeMismatchEvidence'
                control_cycle:
                  $ref: '#/components/schemas/ControlCycleEvidence'
                corporate_ownership_partners:
                  $ref: '#/components/schemas/CorporateOwnershipPartnersEvidence'
                corporate_participation_fanout:
                  $ref: '#/components/schemas/CorporateParticipationFanoutEvidence'
                criminal_affiliation:
                  $ref: '#/components/schemas/CriminalAffiliationEvidence'
                electoral_campaign_donation:
                  $ref: '#/components/schemas/ElectoralCampaignDonationEvidence'
                federal_active_debt:
                  $ref: '#/components/schemas/FederalActiveDebtEvidence'
                fund_party_network:
                  $ref: '#/components/schemas/FundPartyNetworkEvidence'
                isolated_controller_interposition:
                  $ref: '#/components/schemas/IsolatedControllerInterpositionEvidence'
                isolation_forest_explanation:
                  $ref: '#/components/schemas/IsolationForestAnomalyDriversEvidence'
                mlro_escalation:
                  $ref: '#/components/schemas/MlroEscalationEvidence'
                nonprofit_legal_nature:
                  $ref: '#/components/schemas/NonProfitLegalNatureEvidence'
                official_publication:
                  $ref: '#/components/schemas/OfficialPublicationEvidence'
                official_publication_control_intent:
                  $ref: '#/components/schemas/IntendedControlPublicationEvidence'
                organization_capital_surge:
                  $ref: '#/components/schemas/OrganizationCapitalSurgeEvidence'
                organization_registration:
                  $ref: '#/components/schemas/OrganizationRegistrationEvidence'
                organization_stability:
                  $ref: '#/components/schemas/OrganizationStabilityEvidence'
                other:
                  $ref: '#/components/schemas/GenericEvidence'
                p0_list_screening:
                  $ref: '#/components/schemas/P0ListScreeningEvidence'
                person_registration:
                  $ref: '#/components/schemas/PersonRegistrationEvidence'
                political_exposure:
                  $ref: '#/components/schemas/PoliticalExposureEvidence'
                process:
                  $ref: '#/components/schemas/ProcessEvidence'
                public_quarantine_private_activity:
                  $ref: '#/components/schemas/PublicQuarantinePrivateActivityEvidence'
                public_servant_private_management:
                  $ref: '#/components/schemas/PublicServantPrivateManagementEvidence'
                public_service_link:
                  $ref: '#/components/schemas/PublicServiceLinkEvidence'
                qsa_full_replacement:
                  $ref: '#/components/schemas/QsaFullReplacementEvidence'
                regulatory_enforcement:
                  $ref: '#/components/schemas/RegulatoryEnforcementEvidence'
                regulatory_registration:
                  $ref: '#/components/schemas/RegulatoryRegistrationEvidence'
                restriction:
                  $ref: '#/components/schemas/RestrictionEvidence'
                risk_composition:
                  $ref: '#/components/schemas/RiskCompositionEvidence'
                sanction:
                  $ref: '#/components/schemas/SanctionEvidence'
                sanctioned_fund_assignor:
                  $ref: '#/components/schemas/SanctionedFundAssignorEvidence'
                sensitive_activity_cnae:
                  $ref: '#/components/schemas/SensitiveActivityCnaeEvidence'
                serial_company_opening:
                  $ref: '#/components/schemas/SerialCompanyOpeningEvidence'
                simples_exclusion:
                  $ref: '#/components/schemas/SimplesExclusionEvidence'
                territorial_jurisdiction:
                  $ref: '#/components/schemas/TerritorialJurisdictionEvidence'
                thin_file_routing:
                  $ref: '#/components/schemas/ThinFileRoutingEvidence'
                transaction_groups:
                  $ref: '#/components/schemas/FinancialTransactionGroupsEvidence'
                ubo_resolution:
                  $ref: '#/components/schemas/UBOResolutionEvidence'
                unauthorized_reserved_institution:
                  $ref: '#/components/schemas/UnauthorizedReservedInstitutionEvidence'
                warrant:
                  $ref: '#/components/schemas/WarrantEvidence'
                watchlist_entry:
                  $ref: '#/components/schemas/WatchlistEntryEvidence'
              propertyName: type
            oneOf:
              - $ref: '#/components/schemas/AdministrativeCondemnationEvidence'
              - $ref: '#/components/schemas/AdministrativeProceedingEvidence'
              - $ref: '#/components/schemas/BettingOperatorEvidence'
              - $ref: '#/components/schemas/BorderMunicipalityEvidence'
              - $ref: '#/components/schemas/CadastralCnaeMismatchEvidence'
              - $ref: '#/components/schemas/CadastralPrecariousnessEvidence'
              - $ref: '#/components/schemas/CnaeMismatchEvidence'
              - $ref: '#/components/schemas/ControlCycleEvidence'
              - $ref: '#/components/schemas/CorporateOwnershipPartnersEvidence'
              - $ref: '#/components/schemas/CorporateParticipationFanoutEvidence'
              - $ref: '#/components/schemas/CriminalAffiliationEvidence'
              - $ref: '#/components/schemas/ElectoralCampaignDonationEvidence'
              - $ref: '#/components/schemas/FederalActiveDebtEvidence'
              - $ref: '#/components/schemas/FinancialTransactionGroupsEvidence'
              - $ref: '#/components/schemas/FundPartyNetworkEvidence'
              - $ref: '#/components/schemas/GenericEvidence'
              - $ref: '#/components/schemas/IntendedControlPublicationEvidence'
              - $ref: '#/components/schemas/IsolatedControllerInterpositionEvidence'
              - $ref: '#/components/schemas/IsolationForestAnomalyDriversEvidence'
              - $ref: '#/components/schemas/MlroEscalationEvidence'
              - $ref: '#/components/schemas/NonProfitLegalNatureEvidence'
              - $ref: '#/components/schemas/OfficialPublicationEvidence'
              - $ref: '#/components/schemas/OrganizationCapitalSurgeEvidence'
              - $ref: '#/components/schemas/OrganizationRegistrationEvidence'
              - $ref: '#/components/schemas/OrganizationStabilityEvidence'
              - $ref: '#/components/schemas/P0ListScreeningEvidence'
              - $ref: '#/components/schemas/PersonRegistrationEvidence'
              - $ref: '#/components/schemas/PoliticalExposureEvidence'
              - $ref: '#/components/schemas/ProcessEvidence'
              - $ref: '#/components/schemas/PublicQuarantinePrivateActivityEvidence'
              - $ref: '#/components/schemas/PublicServantPrivateManagementEvidence'
              - $ref: '#/components/schemas/PublicServiceLinkEvidence'
              - $ref: '#/components/schemas/QsaFullReplacementEvidence'
              - $ref: '#/components/schemas/RegulatoryEnforcementEvidence'
              - $ref: '#/components/schemas/RegulatoryRegistrationEvidence'
              - $ref: '#/components/schemas/RestrictionEvidence'
              - $ref: '#/components/schemas/RiskCompositionEvidence'
              - $ref: '#/components/schemas/SanctionEvidence'
              - $ref: '#/components/schemas/SanctionedFundAssignorEvidence'
              - $ref: '#/components/schemas/SensitiveActivityCnaeEvidence'
              - $ref: '#/components/schemas/SerialCompanyOpeningEvidence'
              - $ref: '#/components/schemas/SimplesExclusionEvidence'
              - $ref: '#/components/schemas/TerritorialJurisdictionEvidence'
              - $ref: '#/components/schemas/ThinFileRoutingEvidence'
              - $ref: '#/components/schemas/UBOResolutionEvidence'
              - $ref: '#/components/schemas/UnauthorizedReservedInstitutionEvidence'
              - $ref: '#/components/schemas/WarrantEvidence'
              - $ref: '#/components/schemas/WatchlistEntryEvidence'
          title: Evidences
          type: array
        identified:
          title: Identified
          type: boolean
        kind:
          $ref: '#/components/schemas/SignalKind'
          default: observable
        limitations:
          items:
            $ref: '#/components/schemas/DataRequirement'
          title: Limitations
          type: array
        name:
          title: Name
          type: string
        observed_entity_ids:
          items:
            type: integer
          title: Observed Entity Ids
          type: array
        pillar:
          anyOf:
            - $ref: '#/components/schemas/PillarCode'
            - type: 'null'
        root_entity_id:
          exclusiveMinimum: 0
          title: Root Entity Id
          type: integer
        severity:
          $ref: '#/components/schemas/SignalSeverity'
        version:
          title: Version
          type: string
      required:
        - code
        - name
        - version
        - root_entity_id
        - assessed_entity_id
        - identified
        - severity
        - pillar
        - base_score
        - adjusted_score
      title: PublicSignalResult
      type: object
    PillarSignalCount:
      properties:
        count:
          title: Count
          type: integer
        score_sum:
          anyOf:
            - type: number
            - pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
              type: string
          title: Score Sum
      required:
        - count
        - score_sum
      title: PillarSignalCount
      type: object
    RiskLevel:
      enum:
        - low
        - medium
        - high
        - critical
      title: RiskLevel
      type: string
    AdministrativeCondemnationEvidence:
      additionalProperties: false
      properties:
        content:
          $ref: '#/components/schemas/AdministrativeCondemnationEvidenceContent'
        description:
          default: >-
            Decisões oficiais que nomeiam a entidade avaliada como condenada ou
            penalizada
          title: Description
          type: string
        key:
          default: administrative_condemnation_decisions
          title: Key
          type: string
        label:
          default: Condenações administrativas
          title: Label
          type: string
        metadata:
          additionalProperties: true
          title: Metadata
          type: object
        type:
          const: administrative_condemnation
          default: administrative_condemnation
          title: Type
          type: string
      required:
        - content
      title: AdministrativeCondemnationEvidence
      type: object
    AdministrativeProceedingEvidence:
      additionalProperties: false
      properties:
        content:
          $ref: '#/components/schemas/AdministrativeProceedingEvidenceContent'
        description:
          default: Processos administrativos sancionadores da CVM vinculados à entidade
          title: Description
          type: string
        key:
          title: Key
          type: string
        label:
          default: Processos administrativos sancionadores
          title: Label
          type: string
        metadata:
          additionalProperties: true
          title: Metadata
          type: object
        type:
          const: administrative_proceeding
          default: administrative_proceeding
          title: Type
          type: string
      required:
        - key
        - content
      title: AdministrativeProceedingEvidence
      type: object
    BettingOperatorEvidence:
      additionalProperties: false
      properties:
        content:
          $ref: '#/components/schemas/BettingOperatorEvidenceContent'
        description:
          default: >-
            Entidade com CNAE 9200-3/99 ou termo bet/aposta no nome, ou vínculo
            societário com operadora de apostas de quota fixa
          title: Description
          type: string
        key:
          default: betting_operator
          title: Key
          type: string
        label:
          default: Operadora de apostas de quota fixa (bet)
          title: Label
          type: string
        metadata:
          additionalProperties: true
          title: Metadata
          type: object
        type:
          const: betting_operator
          default: betting_operator
          title: Type
          type: string
      required:
        - content
      title: BettingOperatorEvidence
      type: object
    BorderMunicipalityEvidence:
      additionalProperties: false
      properties:
        content:
          $ref: '#/components/schemas/BorderMunicipalityEvidenceContent'
        description:
          default: >-
            Endereços da entidade avaliada ou da sua rede em municípios de faixa
            de fronteira ou cidades-gêmeas, conforme a lista de referência do
            IBGE
          title: Description
          type: string
        key:
          default: border_municipality
          title: Key
          type: string
        label:
          default: Município de faixa de fronteira
          title: Label
          type: string
        metadata:
          additionalProperties: true
          title: Metadata
          type: object
        type:
          const: border_municipality
          default: border_municipality
          title: Type
          type: string
      required:
        - content
      title: BorderMunicipalityEvidence
      type: object
    CadastralCnaeMismatchEvidence:
      additionalProperties: false
      properties:
        content:
          $ref: '#/components/schemas/CadastralCnaeMismatchEvidenceContent'
        description:
          default: >-
            Pessoa jurídica cujo CNAE declarado contradiz o próprio cadastro —
            atividade-fim na razão social não refletida no CNAE principal, ou
            CNAE de estrutura complexa declarado para endereço de sala comercial
            com capital abaixo do piso
          title: Description
          type: string
        key:
          default: cadastral_cnae_mismatch
          title: Key
          type: string
        label:
          default: Incompatibilidade de CNAE cadastral
          title: Label
          type: string
        metadata:
          additionalProperties: true
          title: Metadata
          type: object
        type:
          const: cadastral_cnae_mismatch
          default: cadastral_cnae_mismatch
          title: Type
          type: string
      required:
        - content
      title: CadastralCnaeMismatchEvidence
      type: object
    CadastralPrecariousnessEvidence:
      additionalProperties: false
      properties:
        content:
          $ref: '#/components/schemas/CadastralPrecariousnessEvidenceContent'
        description:
          default: >-
            Pessoa jurídica cujo próprio registro na RFB apresenta precariedade
            ou inconsistência de contato/identificação (dois ou mais sinais
            fracos combinados)
          title: Description
          type: string
        key:
          default: cadastral_precariousness
          title: Key
          type: string
        label:
          default: Precariedade cadastral
          title: Label
          type: string
        metadata:
          additionalProperties: true
          title: Metadata
          type: object
        type:
          const: cadastral_precariousness
          default: cadastral_precariousness
          title: Type
          type: string
      required:
        - content
      title: CadastralPrecariousnessEvidence
      type: object
    CnaeMismatchEvidence:
      additionalProperties: false
      properties:
        content:
          $ref: '#/components/schemas/CnaeMismatchEvidenceContent'
        description:
          default: >-
            Holding (CNAE 642x) que frui incentivo fiscal produtivo
            regional/setorial incompatível com sua atividade
          title: Description
          type: string
        key:
          default: cnae_mismatch
          title: Key
          type: string
        label:
          default: Incompatibilidade de CNAE
          title: Label
          type: string
        metadata:
          additionalProperties: true
          title: Metadata
          type: object
        type:
          const: cnae_mismatch
          default: cnae_mismatch
          title: Type
          type: string
      required:
        - content
      title: CnaeMismatchEvidence
      type: object
    ControlCycleEvidence:
      additionalProperties: false
      properties:
        content:
          $ref: '#/components/schemas/ControlCycleEvidenceContent'
        description:
          default: >-
            Ciclos fechados de controle societário detectados na cadeia
            societária do QSA
          title: Description
          type: string
        key:
          default: control_cycles
          title: Key
          type: string
        label:
          default: Ciclos de controle societário
          title: Label
          type: string
        metadata:
          additionalProperties: true
          title: Metadata
          type: object
        type:
          const: control_cycle
          default: control_cycle
          title: Type
          type: string
      required:
        - content
      title: ControlCycleEvidence
      type: object
    CorporateOwnershipPartnersEvidence:
      additionalProperties: false
      properties:
        content:
          $ref: '#/components/schemas/CorporateOwnershipPartnersEvidenceContent'
        description:
          default: Sócios envolvidos nas verificações de participação societária
          title: Description
          type: string
        key:
          default: corporate_ownership_partners
          title: Key
          type: string
        label:
          default: Sócios de participação societária
          title: Label
          type: string
        metadata:
          additionalProperties: true
          title: Metadata
          type: object
        type:
          const: corporate_ownership_partners
          default: corporate_ownership_partners
          title: Type
          type: string
      required:
        - content
      title: CorporateOwnershipPartnersEvidence
      type: object
    CorporateParticipationFanoutEvidence:
      additionalProperties: false
      properties:
        content:
          $ref: '#/components/schemas/CorporateParticipationFanoutEvidenceContent'
        description:
          default: >-
            Participações simultâneas de uma pessoa física no QSA de pessoas
            jurídicas ativas
          title: Description
          type: string
        key:
          default: corporate_participation_fanout
          title: Key
          type: string
        label:
          default: Dispersão de participações societárias
          title: Label
          type: string
        metadata:
          additionalProperties: true
          title: Metadata
          type: object
        type:
          const: corporate_participation_fanout
          default: corporate_participation_fanout
          title: Type
          type: string
      required:
        - content
      title: CorporateParticipationFanoutEvidence
      type: object
    CriminalAffiliationEvidence:
      additionalProperties: false
      properties:
        content:
          $ref: '#/components/schemas/CriminalAffiliationEvidenceContent'
        description:
          default: >-
            Atribuições afirmadas de vínculo da entidade avaliada a organização
            criminosa
          title: Description
          type: string
        key:
          default: criminal_affiliation_matches
          title: Key
          type: string
        label:
          default: Vínculo com organização criminosa
          title: Label
          type: string
        metadata:
          additionalProperties: true
          title: Metadata
          type: object
        type:
          const: criminal_affiliation
          default: criminal_affiliation
          title: Type
          type: string
      required:
        - content
      title: CriminalAffiliationEvidence
      type: object
    ElectoralCampaignDonationEvidence:
      additionalProperties: false
      properties:
        content:
          $ref: '#/components/schemas/ElectoralCampaignDonationEvidenceContent'
        description:
          default: >-
            Doações diretas da contraparte a candidatos eleitos a prefeito,
            governador ou presidente
          title: Description
          type: string
        key:
          default: executive_campaign_donation
          title: Key
          type: string
        label:
          default: Doação direta a campanha de eleito do Executivo
          title: Label
          type: string
        metadata:
          additionalProperties: true
          title: Metadata
          type: object
        type:
          const: electoral_campaign_donation
          default: electoral_campaign_donation
          title: Type
          type: string
      required:
        - content
      title: ElectoralCampaignDonationEvidence
      type: object
    FederalActiveDebtEvidence:
      additionalProperties: false
      properties:
        content:
          $ref: '#/components/schemas/FederalActiveDebtEvidenceContent'
        description:
          default: >-
            Inscrições da lista pública de devedores da PGFN, com materialidade
            apurada só sobre dívida exigível não-garantida
          title: Description
          type: string
        key:
          default: federal_active_debt
          title: Key
          type: string
        label:
          default: Dívida ativa da União
          title: Label
          type: string
        metadata:
          additionalProperties: true
          title: Metadata
          type: object
        type:
          const: federal_active_debt
          default: federal_active_debt
          title: Type
          type: string
      required:
        - content
      title: FederalActiveDebtEvidence
      type: object
    FundPartyNetworkEvidence:
      additionalProperties: false
      properties:
        content:
          $ref: '#/components/schemas/FundPartyNetworkEvidenceContent'
        description:
          default: >-
            Administrador, gestor, custodiante, auditor ou controlador de FIDC
            ligados à entidade avaliada — prestação de serviço, não participação
            societária
          title: Description
          type: string
        key:
          default: fund_party_network
          title: Key
          type: string
        label:
          default: Prestadores de serviço de fundo
          title: Label
          type: string
        metadata:
          additionalProperties: true
          title: Metadata
          type: object
        type:
          const: fund_party_network
          default: fund_party_network
          title: Type
          type: string
      required:
        - content
      title: FundPartyNetworkEvidence
      type: object
    IsolatedControllerInterpositionEvidence:
      additionalProperties: false
      properties:
        content:
          $ref: '#/components/schemas/IsolatedControllerInterpositionEvidenceContent'
        description:
          default: >-
            Pessoa jurídica cujo sócio controlador ou beneficiário final (PF)
            não possui outros vínculos econômicos relevantes no grafo — figura
            apenas nesta cadeia societária
          title: Description
          type: string
        key:
          default: isolated_controller_interposition
          title: Key
          type: string
        label:
          default: Controlador com baixa vinculação econômica no grafo
          title: Label
          type: string
        metadata:
          additionalProperties: true
          title: Metadata
          type: object
        type:
          const: isolated_controller_interposition
          default: isolated_controller_interposition
          title: Type
          type: string
      required:
        - content
      title: IsolatedControllerInterpositionEvidence
      type: object
    IsolationForestAnomalyDriversEvidence:
      additionalProperties: false
      properties:
        content:
          $ref: '#/components/schemas/IsolationForestAnomalyDriversContent'
        description:
          default: Pontos que mais contribuíram para a detecção da anomalia
          title: Description
          type: string
        key:
          default: anomaly_drivers
          title: Key
          type: string
        label:
          default: Fatores da anomalia
          title: Label
          type: string
        metadata:
          additionalProperties: true
          title: Metadata
          type: object
        type:
          const: isolation_forest_explanation
          default: isolation_forest_explanation
          title: Type
          type: string
      required:
        - content
      title: IsolationForestAnomalyDriversEvidence
      type: object
    MlroEscalationEvidence:
      additionalProperties: false
      properties:
        content:
          $ref: '#/components/schemas/MlroEscalationEvidenceContent'
        description:
          default: >-
            Combinação de sinais identificados que bloqueia a aprovação
            automática/pelo analista até que a revisão do responsável pelo
            compliance seja registrada. Apenas gatilho de fluxo, sem alteração
            de score.
          title: Description
          type: string
        key:
          default: mlro_escalation
          title: Key
          type: string
        label:
          default: Escalonamento ao responsável pelo compliance
          title: Label
          type: string
        metadata:
          additionalProperties: true
          title: Metadata
          type: object
        type:
          const: mlro_escalation
          default: mlro_escalation
          title: Type
          type: string
      required:
        - content
      title: MlroEscalationEvidence
      type: object
    NonProfitLegalNatureEvidence:
      additionalProperties: false
      properties:
        content:
          $ref: '#/components/schemas/NonProfitLegalNatureEvidenceContent'
        description:
          default: >-
            Pessoa jurídica cuja natureza jurídica (RFB) está no grupo 3xx —
            associação, fundação, OSC ou OSCIP — vetor de abuso conhecido para
            financiamento ao terrorismo sob a Recomendação R.8 do GAFI
          title: Description
          type: string
        key:
          default: nonprofit_legal_nature
          title: Key
          type: string
        label:
          default: Natureza jurídica sem fins lucrativos
          title: Label
          type: string
        metadata:
          additionalProperties: true
          title: Metadata
          type: object
        type:
          const: nonprofit_legal_nature
          default: nonprofit_legal_nature
          title: Type
          type: string
      required:
        - content
      title: NonProfitLegalNatureEvidence
      type: object
    OfficialPublicationEvidence:
      additionalProperties: false
      properties:
        content:
          $ref: '#/components/schemas/OfficialPublicationEvidenceContent'
        description:
          default: Publicações oficiais vinculadas à entidade avaliada
          title: Description
          type: string
        key:
          default: dou_inidoneidade_matches
          title: Key
          type: string
        label:
          default: Publicações oficiais
          title: Label
          type: string
        metadata:
          additionalProperties: true
          title: Metadata
          type: object
        type:
          const: official_publication
          default: official_publication
          title: Type
          type: string
      required:
        - content
      title: OfficialPublicationEvidence
      type: object
    IntendedControlPublicationEvidence:
      additionalProperties: false
      properties:
        content:
          $ref: '#/components/schemas/IntendedControlPublicationEvidenceContent'
        description:
          default: >-
            Declarações de propósito no DOU para pretendida aquisição ou
            controle
          title: Description
          type: string
        key:
          default: intended_control_publications
          title: Key
          type: string
        label:
          default: Publicações de intenção de controle
          title: Label
          type: string
        metadata:
          additionalProperties: true
          title: Metadata
          type: object
        type:
          const: official_publication_control_intent
          default: official_publication_control_intent
          title: Type
          type: string
      required:
        - content
      title: IntendedControlPublicationEvidence
      type: object
    OrganizationCapitalSurgeEvidence:
      additionalProperties: false
      properties:
        content:
          $ref: '#/components/schemas/OrganizationCapitalSurgeEvidenceContent'
        description:
          default: >-
            Elevação abrupta e materialmente relevante do capital social da
            organização avaliada
          title: Description
          type: string
        key:
          default: organization_capital_surge
          title: Key
          type: string
        label:
          default: Aumento de capital social
          title: Label
          type: string
        metadata:
          additionalProperties: true
          title: Metadata
          type: object
        type:
          const: organization_capital_surge
          default: organization_capital_surge
          title: Type
          type: string
      required:
        - content
      title: OrganizationCapitalSurgeEvidence
      type: object
    OrganizationRegistrationEvidence:
      additionalProperties: false
      properties:
        content:
          $ref: '#/components/schemas/OrganizationRegistrationEvidenceContent'
        description:
          default: Fatos do registro cadastral da organização avaliada
          title: Description
          type: string
        key:
          default: organization_registration
          title: Key
          type: string
        label:
          default: Registro da organização
          title: Label
          type: string
        metadata:
          additionalProperties: true
          title: Metadata
          type: object
        type:
          const: organization_registration
          default: organization_registration
          title: Type
          type: string
      required:
        - content
      title: OrganizationRegistrationEvidence
      type: object
    OrganizationStabilityEvidence:
      additionalProperties: false
      properties:
        content:
          $ref: '#/components/schemas/OrganizationStabilityEvidenceContent'
        description:
          default: Maturidade cadastral e estabilidade do QSA da organização avaliada
          title: Description
          type: string
        key:
          default: organization_stability
          title: Key
          type: string
        label:
          default: Estabilidade da organização
          title: Label
          type: string
        metadata:
          additionalProperties: true
          title: Metadata
          type: object
        type:
          const: organization_stability
          default: organization_stability
          title: Type
          type: string
      required:
        - content
      title: OrganizationStabilityEvidence
      type: object
    GenericEvidence:
      additionalProperties: false
      properties:
        content:
          title: Content
        description:
          title: Description
          type: string
        key:
          title: Key
          type: string
        label:
          title: Label
          type: string
        metadata:
          additionalProperties: true
          title: Metadata
          type: object
        type:
          const: other
          default: other
          title: Type
          type: string
      required:
        - key
        - label
        - description
        - content
      title: GenericEvidence
      type: object
    P0ListScreeningEvidence:
      additionalProperties: false
      properties:
        content:
          $ref: '#/components/schemas/P0ListScreeningEvidenceContent'
        description:
          default: Resultado da triagem nas listas de sanções prioritárias P0
          title: Description
          type: string
        key:
          default: p0_list_screening
          title: Key
          type: string
        label:
          default: Triagem em listas de sanções P0
          title: Label
          type: string
        metadata:
          additionalProperties: true
          title: Metadata
          type: object
        type:
          const: p0_list_screening
          default: p0_list_screening
          title: Type
          type: string
      required:
        - content
      title: P0ListScreeningEvidence
      type: object
    PersonRegistrationEvidence:
      additionalProperties: false
      properties:
        content:
          $ref: '#/components/schemas/PersonRegistrationEvidenceContent'
        description:
          default: Fatos da situação cadastral do CPF da pessoa física avaliada
          title: Description
          type: string
        key:
          default: person_registration
          title: Key
          type: string
        label:
          default: Registro da pessoa física
          title: Label
          type: string
        metadata:
          additionalProperties: true
          title: Metadata
          type: object
        type:
          const: person_registration
          default: person_registration
          title: Type
          type: string
      required:
        - content
      title: PersonRegistrationEvidence
      type: object
    PoliticalExposureEvidence:
      additionalProperties: false
      properties:
        content:
          $ref: '#/components/schemas/PoliticalExposureEvidenceContent'
        description:
          default: Perfis PEP diretos ativos vinculados à pessoa avaliada
          title: Description
          type: string
        key:
          title: Key
          type: string
        label:
          default: Perfis PEP diretos ativos
          title: Label
          type: string
        metadata:
          additionalProperties: true
          title: Metadata
          type: object
        type:
          const: political_exposure
          default: political_exposure
          title: Type
          type: string
      required:
        - key
        - content
      title: PoliticalExposureEvidence
      type: object
    ProcessEvidence:
      additionalProperties: false
      properties:
        content:
          $ref: '#/components/schemas/ProcessEvidenceContent'
        description:
          default: Processos criminais com o sujeito no polo passivo
          title: Description
          type: string
        key:
          default: criminal_processes
          title: Key
          type: string
        label:
          default: Processos criminais
          title: Label
          type: string
        metadata:
          additionalProperties: true
          title: Metadata
          type: object
        type:
          const: process
          default: process
          title: Type
          type: string
      required:
        - content
      title: ProcessEvidence
      type: object
    PublicQuarantinePrivateActivityEvidence:
      additionalProperties: false
      properties:
        content:
          $ref: '#/components/schemas/PublicQuarantinePrivateActivityEvidenceContent'
        description:
          default: >-
            Ingresso em empresa privada dentro de seis meses após deixar um
            cargo público elegível
          title: Description
          type: string
        key:
          default: public_quarantine_private_activity
          title: Key
          type: string
        label:
          default: Atividade privada durante quarentena de cargo público
          title: Label
          type: string
        metadata:
          additionalProperties: true
          title: Metadata
          type: object
        type:
          const: public_quarantine_private_activity
          default: public_quarantine_private_activity
          title: Type
          type: string
      required:
        - content
      title: PublicQuarantinePrivateActivityEvidence
      type: object
    PublicServantPrivateManagementEvidence:
      additionalProperties: false
      properties:
        content:
          $ref: '#/components/schemas/PublicServantPrivateManagementEvidenceContent'
        description:
          default: Servidor público federal administrando uma empresa privada ativa
          title: Description
          type: string
        key:
          default: public_servant_private_management
          title: Key
          type: string
        label:
          default: Servidor público na administração privada
          title: Label
          type: string
        metadata:
          additionalProperties: true
          title: Metadata
          type: object
        type:
          const: public_servant_private_management
          default: public_servant_private_management
          title: Type
          type: string
      required:
        - content
      title: PublicServantPrivateManagementEvidence
      type: object
    PublicServiceLinkEvidence:
      additionalProperties: false
      properties:
        content:
          $ref: '#/components/schemas/PublicServiceLinkEvidenceContent'
        description:
          default: Atos de pessoal público não punitivos vinculados à pessoa avaliada
          title: Description
          type: string
        key:
          default: public_service_links
          title: Key
          type: string
        label:
          default: Vínculos com serviço público
          title: Label
          type: string
        metadata:
          additionalProperties: true
          title: Metadata
          type: object
        type:
          const: public_service_link
          default: public_service_link
          title: Type
          type: string
      required:
        - content
      title: PublicServiceLinkEvidence
      type: object
    QsaFullReplacementEvidence:
      additionalProperties: false
      properties:
        content:
          $ref: '#/components/schemas/QsaFullReplacementEvidenceContent'
        description:
          default: >-
            Pessoa jurídica cujo QSA visível foi totalmente substituído após a
            constituição (aquisição de empresa de fachada/de prateleira, com
            composição societária original irrecuperável)
          title: Description
          type: string
        key:
          default: qsa_full_replacement
          title: Key
          type: string
        label:
          default: Substituição total do QSA
          title: Label
          type: string
        metadata:
          additionalProperties: true
          title: Metadata
          type: object
        type:
          const: qsa_full_replacement
          default: qsa_full_replacement
          title: Type
          type: string
      required:
        - content
      title: QsaFullReplacementEvidence
      type: object
    RegulatoryEnforcementEvidence:
      additionalProperties: false
      properties:
        content:
          $ref: '#/components/schemas/RegulatoryEnforcementEvidenceContent'
        description:
          default: >-
            Artigos do DOU que nomeiam a entidade avaliada em enforcement
            regulatório
          title: Description
          type: string
        key:
          default: regulatory_enforcement_publications
          title: Key
          type: string
        label:
          default: Publicações de enforcement regulatório
          title: Label
          type: string
        metadata:
          additionalProperties: true
          title: Metadata
          type: object
        type:
          const: regulatory_enforcement
          default: regulatory_enforcement
          title: Type
          type: string
      required:
        - content
      title: RegulatoryEnforcementEvidence
      type: object
    RegulatoryRegistrationEvidence:
      additionalProperties: false
      properties:
        content:
          $ref: '#/components/schemas/RegulatoryRegistrationEvidenceContent'
        description:
          default: >-
            Situação do registro da entidade avaliada perante o órgão regulador
            do seu mercado (SUSEP e afins) — autorização para operar, não
            situação cadastral da RFB
          title: Description
          type: string
        key:
          default: regulatory_registration
          title: Key
          type: string
        label:
          default: Registro em órgão regulador
          title: Label
          type: string
        metadata:
          additionalProperties: true
          title: Metadata
          type: object
        type:
          const: regulatory_registration
          default: regulatory_registration
          title: Type
          type: string
      required:
        - content
      title: RegulatoryRegistrationEvidence
      type: object
    RestrictionEvidence:
      additionalProperties: false
      properties:
        content:
          $ref: '#/components/schemas/RestrictionEvidenceContent'
        description:
          default: >-
            Restrições administrativas ativas atribuídas à entidade avaliada ou
            a um sócio
          title: Description
          type: string
        key:
          title: Key
          type: string
        label:
          default: Restrições ativas
          title: Label
          type: string
        metadata:
          additionalProperties: true
          title: Metadata
          type: object
        type:
          const: restriction
          default: restriction
          title: Type
          type: string
      required:
        - key
        - content
      title: RestrictionEvidence
      type: object
    RiskCompositionEvidence:
      additionalProperties: false
      properties:
        content:
          $ref: '#/components/schemas/RiskCompositionEvidenceContent'
        description:
          default: Acúmulo difuso de risco em múltiplos pilares.
          title: Description
          type: string
        key:
          default: risk_composition
          title: Key
          type: string
        label:
          default: Composição de risco
          title: Label
          type: string
        metadata:
          additionalProperties: true
          title: Metadata
          type: object
        type:
          const: risk_composition
          default: risk_composition
          title: Type
          type: string
      required:
        - content
      title: RiskCompositionEvidence
      type: object
    SanctionEvidence:
      additionalProperties: false
      properties:
        content:
          $ref: '#/components/schemas/SanctionEvidenceContent'
        description:
          default: >-
            Sanções administrativas ativas atribuídas à entidade avaliada ou a
            um sócio
          title: Description
          type: string
        key:
          title: Key
          type: string
        label:
          default: Sanções ativas
          title: Label
          type: string
        metadata:
          additionalProperties: true
          title: Metadata
          type: object
        type:
          const: sanction
          default: sanction
          title: Type
          type: string
      required:
        - key
        - content
      title: SanctionEvidence
      type: object
    SanctionedFundAssignorEvidence:
      additionalProperties: false
      properties:
        content:
          $ref: '#/components/schemas/SanctionedFundAssignorEvidenceContent'
        description:
          default: >-
            Cedentes do FIDC avaliado atingidos por sanção, com o percentual de
            concentração publicado que modula a severidade
          title: Description
          type: string
        key:
          default: sanctioned_fund_assignor
          title: Key
          type: string
        label:
          default: Cedente sancionado do fundo
          title: Label
          type: string
        metadata:
          additionalProperties: true
          title: Metadata
          type: object
        type:
          const: sanctioned_fund_assignor
          default: sanctioned_fund_assignor
          title: Type
          type: string
      required:
        - content
      title: SanctionedFundAssignorEvidence
      type: object
    SensitiveActivityCnaeEvidence:
      additionalProperties: false
      properties:
        content:
          $ref: '#/components/schemas/SensitiveActivityCnaeEvidenceContent'
        description:
          default: >-
            Entidade cujo CNAE principal ou secundário pertence à lista curada
            de atividades sensíveis a PLD (setores obrigados da Lei 9.613/1998
            art. 9º mais tipologias intensivas em espécie)
          title: Description
          type: string
        key:
          default: sensitive_activity_cnae
          title: Key
          type: string
        label:
          default: Exposição a CNAE de atividade sensível
          title: Label
          type: string
        metadata:
          additionalProperties: true
          title: Metadata
          type: object
        type:
          const: sensitive_activity_cnae
          default: sensitive_activity_cnae
          title: Type
          type: string
      required:
        - content
      title: SensitiveActivityCnaeEvidence
      type: object
    SerialCompanyOpeningEvidence:
      additionalProperties: false
      properties:
        content:
          $ref: '#/components/schemas/SerialCompanyOpeningEvidenceContent'
        description:
          default: >-
            Pessoa física abrindo várias empresas ativas em janela curta, em
            divisões de CNAE não relacionadas — padrão de abertura em série
          title: Description
          type: string
        key:
          default: serial_company_opening
          title: Key
          type: string
        label:
          default: Abertura de empresas em série
          title: Label
          type: string
        metadata:
          additionalProperties: true
          title: Metadata
          type: object
        type:
          const: serial_company_opening
          default: serial_company_opening
          title: Type
          type: string
      required:
        - content
      title: SerialCompanyOpeningEvidence
      type: object
    SimplesExclusionEvidence:
      additionalProperties: false
      properties:
        content:
          $ref: '#/components/schemas/SimplesExclusionEvidenceContent'
        description:
          default: >-
            Pessoa jurídica excluída do Simples Nacional com efeitos em 31/12
            (proxy fiscal determinística com causa inferida)
          title: Description
          type: string
        key:
          default: simples_exclusion
          title: Key
          type: string
        label:
          default: Exclusão do Simples Nacional
          title: Label
          type: string
        metadata:
          additionalProperties: true
          title: Metadata
          type: object
        type:
          const: simples_exclusion
          default: simples_exclusion
          title: Type
          type: string
      required:
        - content
      title: SimplesExclusionEvidence
      type: object
    TerritorialJurisdictionEvidence:
      additionalProperties: false
      properties:
        content:
          $ref: '#/components/schemas/TerritorialJurisdictionEvidenceContent'
        description:
          default: >-
            Jurisdição de sede ou domicílio sob um programa de sanções
            territoriais vigente
          title: Description
          type: string
        key:
          title: Key
          type: string
        label:
          default: Exposição a jurisdição territorial
          title: Label
          type: string
        metadata:
          additionalProperties: true
          title: Metadata
          type: object
        type:
          const: territorial_jurisdiction
          default: territorial_jurisdiction
          title: Type
          type: string
      required:
        - key
        - content
      title: TerritorialJurisdictionEvidence
      type: object
    ThinFileRoutingEvidence:
      additionalProperties: false
      properties:
        content:
          $ref: '#/components/schemas/ThinFileRoutingEvidenceContent'
        description:
          default: >-
            Entidade (PF ou PJ) com cadastro insuficiente encaminhada para
            EDD/revisão humana — ausência de base para atestar risco ou
            idoneidade, não evidência de ausência de risco. Apenas
            encaminhamento, sem score.
          title: Description
          type: string
        key:
          default: thin_file_routing
          title: Key
          type: string
        label:
          default: Encaminhamento por cadastro insuficiente
          title: Label
          type: string
        metadata:
          additionalProperties: true
          title: Metadata
          type: object
        type:
          const: thin_file_routing
          default: thin_file_routing
          title: Type
          type: string
      required:
        - content
      title: ThinFileRoutingEvidence
      type: object
    FinancialTransactionGroupsEvidence:
      additionalProperties: false
      properties:
        content:
          items:
            $ref: '#/components/schemas/FinancialTransactionEvidenceGroup'
          title: Content
          type: array
        description:
          default: Transações financeiras agrupadas pela lógica de detecção
          title: Description
          type: string
        key:
          default: involved_transactions
          title: Key
          type: string
        label:
          default: Transações envolvidas
          title: Label
          type: string
        metadata:
          additionalProperties: true
          title: Metadata
          type: object
        type:
          const: transaction_groups
          default: transaction_groups
          title: Type
          type: string
      required:
        - content
      title: FinancialTransactionGroupsEvidence
      type: object
    UBOResolutionEvidence:
      additionalProperties: false
      properties:
        content:
          $ref: '#/components/schemas/UBOResolutionEvidenceContent'
        description:
          default: Resolução da cadeia de beneficiário final da organização avaliada
          title: Description
          type: string
        key:
          default: ubo_resolution
          title: Key
          type: string
        label:
          default: Resolução do beneficiário final (UBO)
          title: Label
          type: string
        metadata:
          additionalProperties: true
          title: Metadata
          type: object
        type:
          const: ubo_resolution
          default: ubo_resolution
          title: Type
          type: string
      required:
        - content
      title: UBOResolutionEvidence
      type: object
    UnauthorizedReservedInstitutionEvidence:
      additionalProperties: false
      properties:
        content:
          $ref: '#/components/schemas/UnauthorizedReservedInstitutionEvidenceContent'
        description:
          default: >-
            Pessoa jurídica que se apresenta como instituição autorizada pelo
            BACEN — termo reservado no nome ou CNAE reservado — sem constar no
            Cadastro de Entidades Supervisionadas
          title: Description
          type: string
        key:
          default: unauthorized_reserved_institution
          title: Key
          type: string
        label:
          default: Instituição com denominação ou CNAE reservados sem registro no BACEN
          title: Label
          type: string
        metadata:
          additionalProperties: true
          title: Metadata
          type: object
        type:
          const: unauthorized_reserved_institution
          default: unauthorized_reserved_institution
          title: Type
          type: string
      required:
        - content
      title: UnauthorizedReservedInstitutionEvidence
      type: object
    WarrantEvidence:
      additionalProperties: false
      properties:
        content:
          $ref: '#/components/schemas/WarrantEvidenceContent'
        description:
          default: Mandados ativos contra a entidade avaliada ou uma parte controladora
          title: Description
          type: string
        key:
          default: warrants
          title: Key
          type: string
        label:
          default: Mandados
          title: Label
          type: string
        metadata:
          additionalProperties: true
          title: Metadata
          type: object
        type:
          const: warrant
          default: warrant
          title: Type
          type: string
      required:
        - content
      title: WarrantEvidence
      type: object
    WatchlistEntryEvidence:
      additionalProperties: false
      properties:
        content:
          $ref: '#/components/schemas/WatchlistEntryEvidenceContent'
        description:
          default: Registros ativos em lista de sanções vinculados à entidade avaliada
          title: Description
          type: string
        key:
          title: Key
          type: string
        label:
          default: Registros ativos em lista de vigilância
          title: Label
          type: string
        metadata:
          additionalProperties: true
          title: Metadata
          type: object
        type:
          const: watchlist_entry
          default: watchlist_entry
          title: Type
          type: string
      required:
        - key
        - content
      title: WatchlistEntryEvidence
      type: object
    SignalKind:
      enum:
        - observable
        - meta
      title: SignalKind
      type: string
    DataRequirement:
      properties:
        fields:
          items:
            type: string
          title: Fields
          type: array
        justification:
          default: ''
          title: Justification
          type: string
      title: DataRequirement
      type: object
    PillarCode:
      enum:
        - sanc
        - estru
        - jud
        - pep
        - juris
      title: PillarCode
      type: string
    SignalSeverity:
      enum:
        - clean
        - enrichment
        - low
        - medium
        - medium_high
        - high
        - very_high
        - critical
      title: SignalSeverity
      type: string
    AdministrativeCondemnationEvidenceContent:
      additionalProperties: false
      properties:
        decisions:
          items:
            $ref: '#/components/schemas/AdministrativeCondemnationEvidenceRecord'
          title: Decisions
          type: array
        triggering_count:
          title: Triggering Count
          type: integer
      required:
        - triggering_count
      title: AdministrativeCondemnationEvidenceContent
      type: object
    AdministrativeProceedingEvidenceContent:
      additionalProperties: false
      properties:
        proceedings:
          items:
            $ref: '#/components/schemas/AdministrativeProceedingEvidenceRecord'
          title: Proceedings
          type: array
        triggering_count:
          title: Triggering Count
          type: integer
      required:
        - triggering_count
      title: AdministrativeProceedingEvidenceContent
      type: object
    BettingOperatorEvidenceContent:
      additionalProperties: false
      properties:
        display_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Display Name
        entity_id:
          exclusiveMinimum: 0
          title: Entity Id
          type: integer
        matched_cnae_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Matched Cnae Code
        matched_name_terms:
          items:
            type: string
          title: Matched Name Terms
          type: array
        organization_cnpj:
          anyOf:
            - type: string
            - type: 'null'
          title: Organization Cnpj
        records:
          items:
            $ref: '#/components/schemas/BettingOperatorEvidenceRecord'
          title: Records
          type: array
        triggering_count:
          minimum: 0
          title: Triggering Count
          type: integer
      required:
        - triggering_count
        - entity_id
      title: BettingOperatorEvidenceContent
      type: object
    BorderMunicipalityEvidenceContent:
      additionalProperties: false
      properties:
        municipalities:
          items:
            $ref: '#/components/schemas/BorderMunicipalityEvidenceRecord'
          title: Municipalities
          type: array
        triggering_count:
          title: Triggering Count
          type: integer
      required:
        - triggering_count
      title: BorderMunicipalityEvidenceContent
      type: object
    CadastralCnaeMismatchEvidenceContent:
      additionalProperties: false
      properties:
        organizations:
          items:
            $ref: '#/components/schemas/CadastralCnaeMismatchEvidenceRecord'
          title: Organizations
          type: array
        triggering_count:
          title: Triggering Count
          type: integer
      required:
        - triggering_count
      title: CadastralCnaeMismatchEvidenceContent
      type: object
    CadastralPrecariousnessEvidenceContent:
      additionalProperties: false
      properties:
        organizations:
          items:
            $ref: '#/components/schemas/CadastralPrecariousnessEvidenceRecord'
          title: Organizations
          type: array
        triggering_count:
          title: Triggering Count
          type: integer
      required:
        - triggering_count
      title: CadastralPrecariousnessEvidenceContent
      type: object
    CnaeMismatchEvidenceContent:
      additionalProperties: false
      properties:
        organizations:
          items:
            $ref: '#/components/schemas/CnaeMismatchEvidenceRecord'
          title: Organizations
          type: array
        triggering_count:
          title: Triggering Count
          type: integer
      required:
        - triggering_count
      title: CnaeMismatchEvidenceContent
      type: object
    ControlCycleEvidenceContent:
      additionalProperties: false
      properties:
        cycles:
          items:
            $ref: '#/components/schemas/ControlCycleRecord'
          title: Cycles
          type: array
        triggering_count:
          title: Triggering Count
          type: integer
      required:
        - triggering_count
      title: ControlCycleEvidenceContent
      type: object
    CorporateOwnershipPartnersEvidenceContent:
      additionalProperties: false
      properties:
        partners:
          items:
            $ref: '#/components/schemas/CorporateOwnershipPartnerEvidenceRecord'
          title: Partners
          type: array
        triggering_count:
          title: Triggering Count
          type: integer
      required:
        - triggering_count
        - partners
      title: CorporateOwnershipPartnersEvidenceContent
      type: object
    CorporateParticipationFanoutEvidenceContent:
      additionalProperties: false
      properties:
        persons:
          items:
            $ref: '#/components/schemas/CorporateParticipationFanoutPersonRecord'
          title: Persons
          type: array
        threshold:
          title: Threshold
          type: integer
        triggering_count:
          title: Triggering Count
          type: integer
        weak_substance_floor_applied:
          default: false
          title: Weak Substance Floor Applied
          type: boolean
      required:
        - triggering_count
        - threshold
      title: CorporateParticipationFanoutEvidenceContent
      type: object
    CriminalAffiliationEvidenceContent:
      additionalProperties: false
      properties:
        assessments:
          items:
            $ref: '#/components/schemas/CriminalAffiliationEvidenceRecord'
          title: Assessments
          type: array
        triggering_count:
          title: Triggering Count
          type: integer
      required:
        - triggering_count
      title: CriminalAffiliationEvidenceContent
      type: object
    ElectoralCampaignDonationEvidenceContent:
      additionalProperties: false
      properties:
        display_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Display Name
        donations:
          items:
            $ref: '#/components/schemas/ElectoralCampaignDonationRecord'
          title: Donations
          type: array
        entity_id:
          title: Entity Id
          type: integer
        triggering_count:
          title: Triggering Count
          type: integer
      required:
        - triggering_count
        - entity_id
      title: ElectoralCampaignDonationEvidenceContent
      type: object
    FederalActiveDebtEvidenceContent:
      additionalProperties: false
      properties:
        contumacious:
          default: false
          title: Contumacious
          type: boolean
        display_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Display Name
        entity_id:
          title: Entity Id
          type: integer
        exigible_total:
          anyOf:
            - type: number
            - pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
              type: string
          default: '0'
          title: Exigible Total
        inscriptions:
          items:
            $ref: '#/components/schemas/FederalActiveDebtInscriptionRecord'
          title: Inscriptions
          type: array
        installment_total:
          anyOf:
            - type: number
            - pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
              type: string
          default: '0'
          title: Installment Total
        materiality_level:
          default: 0
          title: Materiality Level
          type: integer
        organization_cnpj:
          anyOf:
            - type: string
            - type: 'null'
          title: Organization Cnpj
        previdenciaria_dominant:
          default: false
          title: Previdenciaria Dominant
          type: boolean
        share_capital:
          anyOf:
            - type: number
            - pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
              type: string
            - type: 'null'
          title: Share Capital
        triggering_count:
          title: Triggering Count
          type: integer
        zero_weight_total:
          anyOf:
            - type: number
            - pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
              type: string
          default: '0'
          title: Zero Weight Total
      required:
        - triggering_count
        - entity_id
      title: FederalActiveDebtEvidenceContent
      type: object
    FundPartyNetworkEvidenceContent:
      additionalProperties: false
      properties:
        parties:
          items:
            $ref: '#/components/schemas/FundPartyNetworkEvidenceRecord'
          title: Parties
          type: array
        triggering_count:
          title: Triggering Count
          type: integer
      required:
        - triggering_count
      title: FundPartyNetworkEvidenceContent
      type: object
    IsolatedControllerInterpositionEvidenceContent:
      additionalProperties: false
      properties:
        assessed_display_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Assessed Display Name
        assessed_entity_id:
          exclusiveMinimum: 0
          title: Assessed Entity Id
          type: integer
        assessed_organization_cnpj:
          anyOf:
            - type: string
            - type: 'null'
          title: Assessed Organization Cnpj
        controllers:
          items:
            $ref: '#/components/schemas/IsolatedControllerEvidenceRecord'
          title: Controllers
          type: array
        external_ties_threshold:
          minimum: 0
          title: External Ties Threshold
          type: integer
        triggering_count:
          minimum: 0
          title: Triggering Count
          type: integer
      required:
        - triggering_count
        - assessed_entity_id
        - external_ties_threshold
      title: IsolatedControllerInterpositionEvidenceContent
      type: object
    IsolationForestAnomalyDriversContent:
      additionalProperties: false
      properties:
        persons:
          items:
            $ref: '#/components/schemas/IsolationForestAnomalyDriverPersonRecord'
          title: Persons
          type: array
        summary:
          title: Summary
          type: string
      required:
        - summary
      title: IsolationForestAnomalyDriversContent
      type: object
    MlroEscalationEvidenceContent:
      additionalProperties: false
      properties:
        rationale:
          anyOf:
            - type: string
            - type: 'null'
          title: Rationale
        triggers:
          items:
            $ref: '#/components/schemas/MlroEscalationTriggerRecord'
          title: Triggers
          type: array
      title: MlroEscalationEvidenceContent
      type: object
    NonProfitLegalNatureEvidenceContent:
      additionalProperties: false
      properties:
        display_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Display Name
        entity_id:
          exclusiveMinimum: 0
          title: Entity Id
          type: integer
        legal_nature_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Legal Nature Code
        legal_nature_description:
          anyOf:
            - type: string
            - type: 'null'
          title: Legal Nature Description
        organization_cnpj:
          anyOf:
            - type: string
            - type: 'null'
          title: Organization Cnpj
        triggering_count:
          minimum: 0
          title: Triggering Count
          type: integer
      required:
        - triggering_count
        - entity_id
      title: NonProfitLegalNatureEvidenceContent
      type: object
    OfficialPublicationEvidenceContent:
      additionalProperties: false
      properties:
        publications:
          items:
            $ref: '#/components/schemas/OfficialPublicationEvidenceRecord'
          title: Publications
          type: array
        triggering_count:
          title: Triggering Count
          type: integer
      required:
        - triggering_count
      title: OfficialPublicationEvidenceContent
      type: object
    IntendedControlPublicationEvidenceContent:
      additionalProperties: false
      properties:
        publications:
          items:
            $ref: '#/components/schemas/IntendedControlPublicationEvidenceRecord'
          title: Publications
          type: array
        triggering_count:
          title: Triggering Count
          type: integer
      required:
        - triggering_count
      title: IntendedControlPublicationEvidenceContent
      type: object
    OrganizationCapitalSurgeEvidenceContent:
      additionalProperties: false
      properties:
        absolute_increment:
          anyOf:
            - type: number
            - pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
              type: string
            - type: 'null'
          title: Absolute Increment
        baseline_share_capital:
          anyOf:
            - type: number
            - pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
              type: string
            - type: 'null'
          title: Baseline Share Capital
        capital_records:
          items:
            $ref: '#/components/schemas/OrganizationCapitalRecord'
          title: Capital Records
          type: array
        consolidated_movement_count:
          default: 0
          title: Consolidated Movement Count
          type: integer
        currency:
          anyOf:
            - type: string
            - type: 'null'
          title: Currency
        display_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Display Name
        final_share_capital:
          anyOf:
            - type: number
            - pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
              type: string
            - type: 'null'
          title: Final Share Capital
        increase_percentage:
          anyOf:
            - type: number
            - pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
              type: string
            - type: 'null'
          title: Increase Percentage
        materiality_floor:
          anyOf:
            - type: number
            - pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
              type: string
            - type: 'null'
          title: Materiality Floor
        organization_cnpj:
          anyOf:
            - type: string
            - type: 'null'
          title: Organization Cnpj
        organization_entity_id:
          anyOf:
            - type: integer
            - type: 'null'
          title: Organization Entity Id
        percentage_threshold:
          anyOf:
            - type: number
            - pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
              type: string
            - type: 'null'
          title: Percentage Threshold
        triggering_count:
          title: Triggering Count
          type: integer
        window_days:
          anyOf:
            - type: integer
            - type: 'null'
          title: Window Days
        window_days_threshold:
          anyOf:
            - type: integer
            - type: 'null'
          title: Window Days Threshold
        window_end_date:
          anyOf:
            - format: date
              type: string
            - type: 'null'
          title: Window End Date
        window_start_date:
          anyOf:
            - format: date
              type: string
            - type: 'null'
          title: Window Start Date
      required:
        - triggering_count
      title: OrganizationCapitalSurgeEvidenceContent
      type: object
    OrganizationRegistrationEvidenceContent:
      additionalProperties: false
      properties:
        aggregation_floor_applied:
          default: false
          title: Aggregation Floor Applied
          type: boolean
        ex_officio_window_count:
          anyOf:
            - type: integer
            - type: 'null'
          title: Ex Officio Window Count
        organizations:
          items:
            $ref: '#/components/schemas/OrganizationRegistrationEvidenceRecord'
          title: Organizations
          type: array
        triggering_count:
          title: Triggering Count
          type: integer
      required:
        - triggering_count
      title: OrganizationRegistrationEvidenceContent
      type: object
    OrganizationStabilityEvidenceContent:
      additionalProperties: false
      properties:
        organizations:
          items:
            $ref: '#/components/schemas/OrganizationStabilityEvidenceRecord'
          title: Organizations
          type: array
        triggering_count:
          title: Triggering Count
          type: integer
      required:
        - triggering_count
      title: OrganizationStabilityEvidenceContent
      type: object
    P0ListScreeningEvidenceContent:
      additionalProperties: false
      properties:
        consulted_sources:
          items:
            $ref: '#/components/schemas/ConsultedSourceRecord'
          title: Consulted Sources
          type: array
        official_publications:
          items:
            $ref: '#/components/schemas/OfficialPublicationEvidenceRecord'
          title: Official Publications
          type: array
        sanctions:
          items:
            $ref: '#/components/schemas/SanctionEvidenceRecord'
          title: Sanctions
          type: array
        triggering_count:
          title: Triggering Count
          type: integer
        watchlist_entries:
          items:
            $ref: '#/components/schemas/WatchlistEntryEvidenceRecord'
          title: Watchlist Entries
          type: array
      required:
        - triggering_count
      title: P0ListScreeningEvidenceContent
      type: object
    PersonRegistrationEvidenceContent:
      additionalProperties: false
      properties:
        persons:
          items:
            $ref: '#/components/schemas/PersonRegistrationEvidenceRecord'
          title: Persons
          type: array
        triggering_count:
          title: Triggering Count
          type: integer
      required:
        - triggering_count
      title: PersonRegistrationEvidenceContent
      type: object
    PoliticalExposureEvidenceContent:
      additionalProperties: false
      properties:
        profiles:
          items:
            $ref: '#/components/schemas/PoliticalExposureEvidenceRecord'
          title: Profiles
          type: array
        triggering_count:
          title: Triggering Count
          type: integer
      required:
        - triggering_count
      title: PoliticalExposureEvidenceContent
      type: object
    ProcessEvidenceContent:
      additionalProperties: false
      properties:
        consulted_sources:
          items:
            $ref: '#/components/schemas/ConsultedSourceRecord'
          title: Consulted Sources
          type: array
        processes:
          items:
            $ref: '#/components/schemas/ProcessEvidenceRecord'
          title: Processes
          type: array
        triggering_count:
          title: Triggering Count
          type: integer
      required:
        - triggering_count
      title: ProcessEvidenceContent
      type: object
    PublicQuarantinePrivateActivityEvidenceContent:
      additionalProperties: false
      properties:
        links:
          items:
            $ref: '#/components/schemas/PublicQuarantinePrivateActivityEvidenceRecord'
          title: Links
          type: array
        triggering_count:
          title: Triggering Count
          type: integer
      required:
        - triggering_count
      title: PublicQuarantinePrivateActivityEvidenceContent
      type: object
    PublicServantPrivateManagementEvidenceContent:
      additionalProperties: false
      properties:
        links:
          items:
            $ref: '#/components/schemas/PublicServantPrivateManagementEvidenceRecord'
          title: Links
          type: array
        triggering_count:
          title: Triggering Count
          type: integer
      required:
        - triggering_count
      title: PublicServantPrivateManagementEvidenceContent
      type: object
    PublicServiceLinkEvidenceContent:
      additionalProperties: false
      properties:
        discarded_candidates:
          items:
            $ref: '#/components/schemas/PublicServiceLinkDiscardedCandidate'
          title: Discarded Candidates
          type: array
        links:
          items:
            $ref: '#/components/schemas/PublicServiceLinkEvidenceRecord'
          title: Links
          type: array
        triggering_count:
          title: Triggering Count
          type: integer
      required:
        - triggering_count
      title: PublicServiceLinkEvidenceContent
      type: object
    QsaFullReplacementEvidenceContent:
      additionalProperties: false
      properties:
        organizations:
          items:
            $ref: '#/components/schemas/QsaFullReplacementEvidenceRecord'
          title: Organizations
          type: array
        triggering_count:
          title: Triggering Count
          type: integer
      required:
        - triggering_count
      title: QsaFullReplacementEvidenceContent
      type: object
    RegulatoryEnforcementEvidenceContent:
      additionalProperties: false
      properties:
        publications:
          items:
            $ref: '#/components/schemas/RegulatoryEnforcementEvidenceRecord'
          title: Publications
          type: array
        suppressed_count:
          default: 0
          title: Suppressed Count
          type: integer
        triggering_count:
          title: Triggering Count
          type: integer
      required:
        - triggering_count
      title: RegulatoryEnforcementEvidenceContent
      type: object
    RegulatoryRegistrationEvidenceContent:
      additionalProperties: false
      properties:
        registrations:
          items:
            $ref: '#/components/schemas/RegulatoryRegistrationEvidenceRecord'
          title: Registrations
          type: array
        triggering_count:
          title: Triggering Count
          type: integer
      required:
        - triggering_count
      title: RegulatoryRegistrationEvidenceContent
      type: object
    RestrictionEvidenceContent:
      additionalProperties: false
      properties:
        restrictions:
          items:
            $ref: '#/components/schemas/RestrictionEvidenceRecord'
          title: Restrictions
          type: array
        triggering_count:
          title: Triggering Count
          type: integer
      required:
        - triggering_count
      title: RestrictionEvidenceContent
      type: object
    RiskCompositionEvidenceContent:
      additionalProperties: false
      properties:
        contributing_signal_codes:
          items:
            type: string
          title: Contributing Signal Codes
          type: array
        minimum_pillars:
          title: Minimum Pillars
          type: integer
        qualifying_pillars:
          items:
            type: string
          title: Qualifying Pillars
          type: array
        threshold:
          anyOf:
            - type: number
            - pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
              type: string
          title: Threshold
      required:
        - threshold
        - minimum_pillars
        - qualifying_pillars
      title: RiskCompositionEvidenceContent
      type: object
    SanctionEvidenceContent:
      additionalProperties: false
      properties:
        sanctions:
          items:
            $ref: '#/components/schemas/SanctionEvidenceRecord'
          title: Sanctions
          type: array
        triggering_count:
          title: Triggering Count
          type: integer
      required:
        - triggering_count
      title: SanctionEvidenceContent
      type: object
    SanctionedFundAssignorEvidenceContent:
      additionalProperties: false
      properties:
        assignors:
          items:
            $ref: '#/components/schemas/SanctionedFundAssignorEvidenceRecord'
          title: Assignors
          type: array
        triggering_count:
          title: Triggering Count
          type: integer
      required:
        - triggering_count
      title: SanctionedFundAssignorEvidenceContent
      type: object
    SensitiveActivityCnaeEvidenceContent:
      additionalProperties: false
      properties:
        capital_qualifier:
          anyOf:
            - $ref: '#/components/schemas/SensitiveActivityCapitalQualifier'
            - type: 'null'
        display_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Display Name
        entity_id:
          exclusiveMinimum: 0
          title: Entity Id
          type: integer
        matched_cnaes:
          items:
            $ref: '#/components/schemas/SensitiveActivityCnaeEvidenceRecord'
          title: Matched Cnaes
          type: array
        organization_cnpj:
          anyOf:
            - type: string
            - type: 'null'
          title: Organization Cnpj
        triggering_count:
          minimum: 0
          title: Triggering Count
          type: integer
      required:
        - triggering_count
        - entity_id
      title: SensitiveActivityCnaeEvidenceContent
      type: object
    SerialCompanyOpeningEvidenceContent:
      additionalProperties: false
      properties:
        active_organization_count:
          default: 0
          title: Active Organization Count
          type: integer
        cluster_size:
          default: 0
          title: Cluster Size
          type: integer
        distinct_division_count:
          default: 0
          title: Distinct Division Count
          type: integer
        fanout_exclusion_threshold:
          anyOf:
            - type: integer
            - type: 'null'
          title: Fanout Exclusion Threshold
        minimum_company_count:
          title: Minimum Company Count
          type: integer
        minimum_division_count:
          title: Minimum Division Count
          type: integer
        organizations:
          items:
            $ref: '#/components/schemas/SerialCompanyOpeningEvidenceRecord'
          title: Organizations
          type: array
        person_display_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Person Display Name
        person_entity_id:
          title: Person Entity Id
          type: integer
        recency_months:
          title: Recency Months
          type: integer
        serial_opening_anomaly_score:
          anyOf:
            - type: number
            - pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
              type: string
            - type: 'null'
          title: Serial Opening Anomaly Score
        serial_opening_threshold_source:
          anyOf:
            - type: string
            - type: 'null'
          title: Serial Opening Threshold Source
        suppressed_by_fanout:
          default: false
          title: Suppressed By Fanout
          type: boolean
        triggering_count:
          title: Triggering Count
          type: integer
        window_end_date:
          anyOf:
            - format: date
              type: string
            - type: 'null'
          title: Window End Date
        window_months:
          title: Window Months
          type: integer
        window_start_date:
          anyOf:
            - format: date
              type: string
            - type: 'null'
          title: Window Start Date
      required:
        - triggering_count
        - person_entity_id
        - window_months
        - recency_months
        - minimum_company_count
        - minimum_division_count
      title: SerialCompanyOpeningEvidenceContent
      type: object
    SimplesExclusionEvidenceContent:
      additionalProperties: false
      properties:
        organizations:
          items:
            $ref: '#/components/schemas/SimplesExclusionEvidenceRecord'
          title: Organizations
          type: array
        triggering_count:
          title: Triggering Count
          type: integer
      required:
        - triggering_count
      title: SimplesExclusionEvidenceContent
      type: object
    TerritorialJurisdictionEvidenceContent:
      additionalProperties: false
      properties:
        matches:
          items:
            $ref: '#/components/schemas/TerritorialJurisdictionMatchRecord'
          title: Matches
          type: array
        resolved_country_token:
          anyOf:
            - type: string
            - type: 'null'
          title: Resolved Country Token
        triggering_count:
          title: Triggering Count
          type: integer
      required:
        - triggering_count
      title: TerritorialJurisdictionEvidenceContent
      type: object
    ThinFileRoutingEvidenceContent:
      additionalProperties: false
      properties:
        rationale:
          anyOf:
            - type: string
            - type: 'null'
          title: Rationale
        records:
          items:
            $ref: '#/components/schemas/ThinFileRoutingEvidenceRecord'
          title: Records
          type: array
        triggering_count:
          title: Triggering Count
          type: integer
      required:
        - triggering_count
      title: ThinFileRoutingEvidenceContent
      type: object
    FinancialTransactionEvidenceGroup:
      additionalProperties: false
      properties:
        attributes:
          additionalProperties: true
          title: Attributes
          type: object
        description:
          title: Description
          type: string
        key:
          title: Key
          type: string
        label:
          title: Label
          type: string
        transactions:
          items:
            $ref: '#/components/schemas/FinancialTransaction'
          title: Transactions
          type: array
      required:
        - key
        - label
        - description
        - transactions
      title: FinancialTransactionEvidenceGroup
      type: object
    UBOResolutionEvidenceContent:
      additionalProperties: false
      properties:
        beneficial_owners:
          items:
            $ref: '#/components/schemas/UBOResolutionEvidenceRecord'
          title: Beneficial Owners
          type: array
        fully_resolved:
          title: Fully Resolved
          type: boolean
        max_chain_depth:
          anyOf:
            - type: integer
            - type: 'null'
          title: Max Chain Depth
        opaque_entity_ids:
          items:
            type: integer
          title: Opaque Entity Ids
          type: array
        opaque_organizations:
          items:
            $ref: '#/components/schemas/EvidenceEntityReference'
          title: Opaque Organizations
          type: array
        triggering_count:
          title: Triggering Count
          type: integer
      required:
        - triggering_count
        - fully_resolved
      title: UBOResolutionEvidenceContent
      type: object
    UnauthorizedReservedInstitutionEvidenceContent:
      additionalProperties: false
      properties:
        display_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Display Name
        entity_id:
          exclusiveMinimum: 0
          title: Entity Id
          type: integer
        matched_cnae_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Matched Cnae Code
        matched_name_terms:
          items:
            type: string
          title: Matched Name Terms
          type: array
        organization_cnpj:
          anyOf:
            - type: string
            - type: 'null'
          title: Organization Cnpj
        records:
          items:
            $ref: '#/components/schemas/UnauthorizedReservedInstitutionEvidenceRecord'
          title: Records
          type: array
        triggering_count:
          minimum: 0
          title: Triggering Count
          type: integer
      required:
        - triggering_count
        - entity_id
      title: UnauthorizedReservedInstitutionEvidenceContent
      type: object
    WarrantEvidenceContent:
      additionalProperties: false
      properties:
        triggering_count:
          title: Triggering Count
          type: integer
        warrants:
          items:
            $ref: '#/components/schemas/WarrantEvidenceRecord'
          title: Warrants
          type: array
      required:
        - triggering_count
      title: WarrantEvidenceContent
      type: object
    WatchlistEntryEvidenceContent:
      additionalProperties: false
      properties:
        entries:
          items:
            $ref: '#/components/schemas/WatchlistEntryEvidenceRecord'
          title: Entries
          type: array
        triggering_count:
          title: Triggering Count
          type: integer
      required:
        - triggering_count
      title: WatchlistEntryEvidenceContent
      type: object
    AdministrativeCondemnationEvidenceRecord:
      additionalProperties: false
      properties:
        context_excerpt:
          anyOf:
            - type: string
            - type: 'null'
          title: Context Excerpt
        document_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Document Url
        entity_cnpj:
          anyOf:
            - type: string
            - type: 'null'
          title: Entity Cnpj
        entity_display_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Entity Display Name
        entity_id:
          title: Entity Id
          type: integer
        entity_name_in_text:
          anyOf:
            - type: string
            - type: 'null'
          title: Entity Name In Text
        matched_keyword:
          title: Matched Keyword
          type: string
        mention_role:
          anyOf:
            - type: string
            - type: 'null'
          title: Mention Role
        publication_id:
          title: Publication Id
          type: integer
        publication_type:
          $ref: '#/components/schemas/OfficialPublicationType'
        published_at:
          anyOf:
            - format: date-time
              type: string
            - type: 'null'
          title: Published At
        source_code:
          anyOf:
            - $ref: '#/components/schemas/SourceCode'
            - type: 'null'
        source_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Source Name
        title:
          anyOf:
            - type: string
            - type: 'null'
          title: Title
      required:
        - publication_id
        - entity_id
        - publication_type
        - matched_keyword
      title: AdministrativeCondemnationEvidenceRecord
      type: object
    AdministrativeProceedingEvidenceRecord:
      additionalProperties: false
      properties:
        adjudicating_body:
          anyOf:
            - type: string
            - type: 'null'
          title: Adjudicating Body
        closed_at:
          anyOf:
            - format: date
              type: string
            - type: 'null'
          title: Closed At
        decision_date:
          anyOf:
            - format: date
              type: string
            - type: 'null'
          title: Decision Date
        entity_display_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Entity Display Name
        entity_id:
          title: Entity Id
          type: integer
        has_settlement_agreement:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Has Settlement Agreement
        match_type:
          default: doc-confirmed
          title: Match Type
          type: string
        opened_at:
          anyOf:
            - format: date
              type: string
            - type: 'null'
          title: Opened At
        proceeding_id:
          title: Proceeding Id
          type: integer
        proceeding_number:
          anyOf:
            - type: string
            - type: 'null'
          title: Proceeding Number
        proceeding_outcome:
          anyOf:
            - $ref: '#/components/schemas/ProceedingOutcome'
            - type: 'null'
        proceeding_status:
          anyOf:
            - $ref: '#/components/schemas/ProceedingStatus'
            - type: 'null'
        proceeding_type:
          anyOf:
            - $ref: '#/components/schemas/ProceedingType'
            - type: 'null'
        source_code:
          anyOf:
            - $ref: '#/components/schemas/SourceCode'
            - type: 'null'
        source_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Source Name
        title:
          anyOf:
            - type: string
            - type: 'null'
          title: Title
      required:
        - proceeding_id
        - entity_id
      title: AdministrativeProceedingEvidenceRecord
      type: object
    BettingOperatorEvidenceRecord:
      additionalProperties: false
      properties:
        authorization_rung:
          anyOf:
            - type: string
            - type: 'null'
          title: Authorization Rung
        display_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Display Name
        entity_id:
          exclusiveMinimum: 0
          title: Entity Id
          type: integer
        matched_cnae_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Matched Cnae Code
        matched_name_terms:
          items:
            type: string
          title: Matched Name Terms
          type: array
        organization_cnpj:
          anyOf:
            - type: string
            - type: 'null'
          title: Organization Cnpj
        share_capital:
          anyOf:
            - type: number
            - pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
              type: string
            - type: 'null'
          title: Share Capital
        spa_sigap_register_state:
          anyOf:
            - type: string
            - type: 'null'
          title: Spa Sigap Register State
      required:
        - entity_id
      title: BettingOperatorEvidenceRecord
      type: object
    BorderMunicipalityEvidenceRecord:
      additionalProperties: false
      properties:
        address_city:
          anyOf:
            - type: string
            - type: 'null'
          title: Address City
        address_id:
          anyOf:
            - type: integer
            - type: 'null'
          title: Address Id
        address_state:
          anyOf:
            - type: string
            - type: 'null'
          title: Address State
        border_zone_class:
          anyOf:
            - $ref: '#/components/schemas/MunicipalityBorderZoneClass'
            - type: 'null'
        entity:
          anyOf:
            - $ref: '#/components/schemas/EvidenceEntityReference'
            - type: 'null'
        entity_id:
          title: Entity Id
          type: integer
        municipality_ibge_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Municipality Ibge Code
        municipality_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Municipality Name
      required:
        - entity_id
      title: BorderMunicipalityEvidenceRecord
      type: object
    CadastralCnaeMismatchEvidenceRecord:
      additionalProperties: false
      properties:
        activity_fim_present_in_secondary:
          default: false
          title: Activity Fim Present In Secondary
          type: boolean
        address_complement:
          anyOf:
            - type: string
            - type: 'null'
          title: Address Complement
        capital_floor:
          anyOf:
            - type: number
            - pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
              type: string
            - type: 'null'
          title: Capital Floor
        complex_structure_cnae_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Complex Structure Cnae Code
        currency:
          anyOf:
            - type: string
            - type: 'null'
          title: Currency
        display_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Display Name
        main_cnae_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Main Cnae Code
        main_cnae_description:
          anyOf:
            - type: string
            - type: 'null'
          title: Main Cnae Description
        name_activity_expected_families:
          items:
            type: string
          title: Name Activity Expected Families
          type: array
        name_activity_terms:
          items:
            type: string
          title: Name Activity Terms
          type: array
        organization_cnpj:
          anyOf:
            - type: string
            - type: 'null'
          title: Organization Cnpj
        organization_entity_id:
          title: Organization Entity Id
          type: integer
        secondary_cnae_codes:
          items:
            type: string
          title: Secondary Cnae Codes
          type: array
        share_capital:
          anyOf:
            - type: number
            - pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
              type: string
            - type: 'null'
          title: Share Capital
        triggered_variants:
          items:
            $ref: '#/components/schemas/CadastralCnaeMismatchVariant'
          title: Triggered Variants
          type: array
      required:
        - organization_entity_id
      title: CadastralCnaeMismatchEvidenceRecord
      type: object
    CadastralPrecariousnessEvidenceRecord:
      additionalProperties: false
      properties:
        ddd_uf_suppressed_by_group:
          default: false
          title: Ddd Uf Suppressed By Group
          type: boolean
        display_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Display Name
        has_any_phone:
          default: false
          title: Has Any Phone
          type: boolean
        observed_phone_ddds:
          items:
            type: string
          title: Observed Phone Ddds
          type: array
        organization_cnpj:
          anyOf:
            - type: string
            - type: 'null'
          title: Organization Cnpj
        organization_entity_id:
          title: Organization Entity Id
          type: integer
        sede_uf:
          anyOf:
            - type: string
            - type: 'null'
          title: Sede Uf
        signal_count:
          default: 0
          title: Signal Count
          type: integer
        trade_name_present:
          default: false
          title: Trade Name Present
          type: boolean
        triggered_signals:
          items:
            $ref: '#/components/schemas/CadastralPrecariousnessSignal'
          title: Triggered Signals
          type: array
      required:
        - organization_entity_id
      title: CadastralPrecariousnessEvidenceRecord
      type: object
    CnaeMismatchEvidenceRecord:
      additionalProperties: false
      properties:
        cnae_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Cnae Code
        cnae_description:
          anyOf:
            - type: string
            - type: 'null'
          title: Cnae Description
        display_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Display Name
        granting_authority:
          anyOf:
            - type: string
            - type: 'null'
          title: Granting Authority
        incentive_amount:
          anyOf:
            - type: number
            - pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
              type: string
            - type: 'null'
          title: Incentive Amount
        incentive_currency:
          anyOf:
            - type: string
            - type: 'null'
          title: Incentive Currency
        incentive_nature:
          anyOf:
            - type: string
            - type: 'null'
          title: Incentive Nature
        incentive_program_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Incentive Program Code
        incentive_program_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Incentive Program Name
        is_holding_cnae:
          default: false
          title: Is Holding Cnae
          type: boolean
        organization_cnpj:
          anyOf:
            - type: string
            - type: 'null'
          title: Organization Cnpj
        organization_entity_id:
          title: Organization Entity Id
          type: integer
        reference_period:
          anyOf:
            - type: string
            - type: 'null'
          title: Reference Period
      required:
        - organization_entity_id
      title: CnaeMismatchEvidenceRecord
      type: object
    ControlCycleRecord:
      additionalProperties: false
      properties:
        edges:
          items:
            $ref: '#/components/schemas/ControlCycleEdgeRecord'
          title: Edges
          type: array
        length:
          title: Length
          type: integer
        member_display_names:
          items:
            anyOf:
              - type: string
              - type: 'null'
          title: Member Display Names
          type: array
        member_entity_ids:
          items:
            type: integer
          title: Member Entity Ids
          type: array
      required:
        - member_entity_ids
        - edges
        - length
      title: ControlCycleRecord
      type: object
    CorporateOwnershipPartnerEvidenceRecord:
      additionalProperties: false
      properties:
        age:
          anyOf:
            - type: integer
            - type: 'null'
          title: Age
        birth_date:
          anyOf:
            - format: date
              type: string
            - type: 'null'
          title: Birth Date
        death_date:
          anyOf:
            - format: date
              type: string
            - type: 'null'
          title: Death Date
        display_name:
          title: Display Name
          type: string
        is_deceased:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Is Deceased
        owner_entity_id:
          title: Owner Entity Id
          type: integer
        related_organizations:
          items:
            $ref: '#/components/schemas/CorporateOwnershipOrganizationEvidenceRecord'
          title: Related Organizations
          type: array
        trigger_reasons:
          items:
            $ref: '#/components/schemas/CorporateOwnershipPartnerTriggerReason'
          title: Trigger Reasons
          type: array
      required:
        - owner_entity_id
        - display_name
        - trigger_reasons
      title: CorporateOwnershipPartnerEvidenceRecord
      type: object
    CorporateParticipationFanoutPersonRecord:
      additionalProperties: false
      properties:
        active_link_organization_count:
          title: Active Link Organization Count
          type: integer
        active_organization_count:
          title: Active Organization Count
          type: integer
        display_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Display Name
        fanout_anomaly_score:
          anyOf:
            - type: number
            - pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
              type: string
            - type: 'null'
          title: Fanout Anomaly Score
        fanout_explanation:
          anyOf:
            - $ref: '#/components/schemas/IsolationForestExplanationRecord'
            - type: 'null'
        fanout_threshold_source:
          anyOf:
            - type: string
            - type: 'null'
          title: Fanout Threshold Source
        low_capital_share:
          anyOf:
            - type: number
            - pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
              type: string
            - type: 'null'
          title: Low Capital Share
        max_creations_in_quarter:
          anyOf:
            - type: integer
            - type: 'null'
          title: Max Creations In Quarter
        median_share_capital:
          anyOf:
            - type: number
            - pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
              type: string
            - type: 'null'
          title: Median Share Capital
        meets_threshold:
          default: false
          title: Meets Threshold
          type: boolean
        participations:
          items:
            $ref: '#/components/schemas/CorporateParticipationEvidenceRecord'
          title: Participations
          type: array
        person_entity_id:
          title: Person Entity Id
          type: integer
        top_creation_quarter:
          anyOf:
            - type: string
            - type: 'null'
          title: Top Creation Quarter
        top_postal_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Top Postal Code
        top_postal_code_share:
          anyOf:
            - type: number
            - pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
              type: string
            - type: 'null'
          title: Top Postal Code Share
        unknown_status_organization_count:
          default: 0
          title: Unknown Status Organization Count
          type: integer
        weak_substance:
          default: false
          title: Weak Substance
          type: boolean
      required:
        - person_entity_id
        - active_organization_count
        - active_link_organization_count
      title: CorporateParticipationFanoutPersonRecord
      type: object
    CriminalAffiliationEvidenceRecord:
      additionalProperties: false
      properties:
        affiliation_role:
          anyOf:
            - $ref: '#/components/schemas/CriminalAffiliationRole'
            - type: 'null'
        assessed_at:
          anyOf:
            - format: date-time
              type: string
            - type: 'null'
          title: Assessed At
        assessment_id:
          title: Assessment Id
          type: integer
        assessment_level:
          anyOf:
            - $ref: '#/components/schemas/CriminalAffiliationAssessmentLevel'
            - type: 'null'
        assessment_tier:
          $ref: '#/components/schemas/CriminalAffiliationAssessmentTier'
        case_status:
          anyOf:
            - $ref: '#/components/schemas/LegalCaseStatus'
            - type: 'null'
        entity_display_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Entity Display Name
        entity_id:
          title: Entity Id
          type: integer
        evidence_count:
          anyOf:
            - type: integer
            - type: 'null'
          title: Evidence Count
        evidence_hash:
          anyOf:
            - type: string
            - type: 'null'
          title: Evidence Hash
        legal_case_id:
          title: Legal Case Id
          type: integer
        name_in_source:
          anyOf:
            - type: string
            - type: 'null'
          title: Name In Source
        organization_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Organization Name
        procedural_role:
          anyOf:
            - $ref: '#/components/schemas/LegalCaseEntityRole'
            - type: 'null'
        review_due_date:
          anyOf:
            - format: date
              type: string
            - type: 'null'
          title: Review Due Date
        source_code:
          anyOf:
            - $ref: '#/components/schemas/SourceCode'
            - type: 'null'
        source_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Source Name
      required:
        - assessment_id
        - entity_id
        - legal_case_id
        - assessment_tier
      title: CriminalAffiliationEvidenceRecord
      type: object
    ElectoralCampaignDonationRecord:
      additionalProperties: false
      properties:
        amount:
          anyOf:
            - type: number
            - pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
              type: string
            - type: 'null'
          title: Amount
        amount_reliable:
          default: true
          title: Amount Reliable
          type: boolean
        candidacy_result_label:
          anyOf:
            - type: string
            - type: 'null'
          title: Candidacy Result Label
        candidacy_result_status:
          anyOf:
            - $ref: '#/components/schemas/CandidacyResultStatus'
            - type: 'null'
        candidate_display_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Candidate Display Name
        candidate_entity_id:
          anyOf:
            - type: integer
            - type: 'null'
          title: Candidate Entity Id
        candidate_government_branch:
          anyOf:
            - $ref: '#/components/schemas/GovernmentBranch'
            - type: 'null'
        candidate_office_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Candidate Office Name
        donation_id:
          title: Donation Id
          type: integer
        election_year:
          anyOf:
            - type: integer
            - type: 'null'
          title: Election Year
        event_date:
          anyOf:
            - format: date
              type: string
            - type: 'null'
          title: Event Date
        event_type:
          anyOf:
            - $ref: '#/components/schemas/ElectoralFinancialEventType'
            - type: 'null'
        receipt_number:
          anyOf:
            - type: string
            - type: 'null'
          title: Receipt Number
        resource_origin:
          anyOf:
            - $ref: '#/components/schemas/ResourceOrigin'
            - type: 'null'
        resource_origin_label:
          anyOf:
            - type: string
            - type: 'null'
          title: Resource Origin Label
      required:
        - donation_id
      title: ElectoralCampaignDonationRecord
      type: object
    FederalActiveDebtInscriptionRecord:
      additionalProperties: false
      properties:
        inscricao_date:
          anyOf:
            - format: date
              type: string
            - type: 'null'
          title: Inscricao Date
        natureza_code:
          anyOf:
            - type: integer
            - type: 'null'
          title: Natureza Code
        numero_inscricao:
          anyOf:
            - type: string
            - type: 'null'
          title: Numero Inscricao
        situacao_inscricao:
          anyOf:
            - type: string
            - type: 'null'
          title: Situacao Inscricao
        valor_consolidado:
          anyOf:
            - type: number
            - pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
              type: string
          title: Valor Consolidado
        weight:
          title: Weight
          type: string
      required:
        - valor_consolidado
        - weight
      title: FederalActiveDebtInscriptionRecord
      type: object
    FundPartyNetworkEvidenceRecord:
      additionalProperties: false
      properties:
        end_date:
          anyOf:
            - format: date
              type: string
            - type: 'null'
          title: End Date
        entity_id:
          title: Entity Id
          type: integer
        fund:
          anyOf:
            - $ref: '#/components/schemas/EvidenceEntityReference'
            - type: 'null'
        fund_entity_id:
          anyOf:
            - type: integer
            - type: 'null'
          title: Fund Entity Id
        is_active:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Is Active
        party:
          anyOf:
            - $ref: '#/components/schemas/EvidenceEntityReference'
            - type: 'null'
        relationship_subtype:
          anyOf:
            - type: string
            - type: 'null'
          title: Relationship Subtype
        start_date:
          anyOf:
            - format: date
              type: string
            - type: 'null'
          title: Start Date
      required:
        - entity_id
      title: FundPartyNetworkEvidenceRecord
      type: object
    IsolatedControllerEvidenceRecord:
      additionalProperties: false
      properties:
        active_organization_count:
          minimum: 0
          title: Active Organization Count
          type: integer
        assessable:
          default: true
          title: Assessable
          type: boolean
        display_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Display Name
        external_active_organization_count:
          minimum: 0
          title: External Active Organization Count
          type: integer
        is_direct_partner:
          default: false
          title: Is Direct Partner
          type: boolean
        is_ubo:
          default: false
          title: Is Ubo
          type: boolean
        meets_isolation:
          default: false
          title: Meets Isolation
          type: boolean
        person_entity_id:
          exclusiveMinimum: 0
          title: Person Entity Id
          type: integer
      required:
        - person_entity_id
        - active_organization_count
        - external_active_organization_count
      title: IsolatedControllerEvidenceRecord
      type: object
    IsolationForestAnomalyDriverPersonRecord:
      additionalProperties: false
      properties:
        display_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Display Name
        explanation:
          $ref: '#/components/schemas/IsolationForestExplanationRecord'
        person_entity_id:
          title: Person Entity Id
          type: integer
        summary:
          title: Summary
          type: string
      required:
        - person_entity_id
        - summary
        - explanation
      title: IsolationForestAnomalyDriverPersonRecord
      type: object
    MlroEscalationTriggerRecord:
      additionalProperties: false
      properties:
        contributing_signal_codes:
          items:
            type: string
          title: Contributing Signal Codes
          type: array
        trigger:
          $ref: '#/components/schemas/MlroEscalationTrigger'
      required:
        - trigger
      title: MlroEscalationTriggerRecord
      type: object
    OfficialPublicationEvidenceRecord:
      additionalProperties: false
      properties:
        art_type:
          anyOf:
            - type: string
            - type: 'null'
          title: Art Type
        context_excerpt:
          anyOf:
            - type: string
            - type: 'null'
          title: Context Excerpt
        document_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Document Url
        entity_name_in_text:
          anyOf:
            - type: string
            - type: 'null'
          title: Entity Name In Text
        mention_role:
          anyOf:
            - type: string
            - type: 'null'
          title: Mention Role
        publication_id:
          title: Publication Id
          type: integer
        publication_status:
          anyOf:
            - $ref: '#/components/schemas/OfficialPublicationStatus'
            - type: 'null'
        publication_type:
          anyOf:
            - $ref: '#/components/schemas/OfficialPublicationType'
            - type: 'null'
        published_at:
          anyOf:
            - format: date-time
              type: string
            - type: 'null'
          title: Published At
        source_code:
          anyOf:
            - $ref: '#/components/schemas/SourceCode'
            - type: 'null'
        source_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Source Name
        title:
          anyOf:
            - type: string
            - type: 'null'
          title: Title
      required:
        - publication_id
      title: OfficialPublicationEvidenceRecord
      type: object
    IntendedControlPublicationEvidenceRecord:
      additionalProperties: false
      properties:
        assessed_entity_context_excerpt:
          anyOf:
            - type: string
            - type: 'null'
          title: Assessed Entity Context Excerpt
        assessed_entity_id:
          anyOf:
            - type: integer
            - type: 'null'
          title: Assessed Entity Id
        assessed_entity_name_in_text:
          anyOf:
            - type: string
            - type: 'null'
          title: Assessed Entity Name In Text
        assessed_entity_role:
          anyOf:
            - type: string
            - type: 'null'
          title: Assessed Entity Role
        declaration_date:
          anyOf:
            - format: date-time
              type: string
            - type: 'null'
          title: Declaration Date
        official_publication_id:
          title: Official Publication Id
          type: integer
        participants:
          items:
            $ref: '#/components/schemas/IntendedControlPublicationParticipantRecord'
          title: Participants
          type: array
        publication_reference:
          anyOf:
            - type: string
            - type: 'null'
          title: Publication Reference
        publication_type:
          anyOf:
            - type: string
            - type: 'null'
          title: Publication Type
        source_external_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Source External Id
        source_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Source Url
        target_institutions:
          items:
            $ref: '#/components/schemas/IntendedControlPublicationParticipantRecord'
          title: Target Institutions
          type: array
        title:
          anyOf:
            - type: string
            - type: 'null'
          title: Title
      required:
        - official_publication_id
      title: IntendedControlPublicationEvidenceRecord
      type: object
    OrganizationCapitalRecord:
      additionalProperties: false
      properties:
        capital_history_id:
          title: Capital History Id
          type: integer
        currency:
          title: Currency
          type: string
        is_current:
          default: true
          title: Is Current
          type: boolean
        is_window_boundary:
          default: false
          title: Is Window Boundary
          type: boolean
        organization_entity_id:
          title: Organization Entity Id
          type: integer
        share_capital:
          anyOf:
            - type: number
            - pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
              type: string
          title: Share Capital
        valid_from:
          format: date
          title: Valid From
          type: string
        valid_to:
          anyOf:
            - format: date
              type: string
            - type: 'null'
          title: Valid To
      required:
        - capital_history_id
        - organization_entity_id
        - share_capital
        - currency
        - valid_from
      title: OrganizationCapitalRecord
      type: object
    OrganizationRegistrationEvidenceRecord:
      additionalProperties: false
      properties:
        capital_anomaly_score:
          anyOf:
            - type: number
            - pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
              type: string
            - type: 'null'
          title: Capital Anomaly Score
        capital_threshold_source:
          anyOf:
            - type: string
            - type: 'null'
          title: Capital Threshold Source
        closure_reason_category:
          anyOf:
            - type: string
            - type: 'null'
          title: Closure Reason Category
        company_age_days:
          anyOf:
            - type: integer
            - type: 'null'
          title: Company Age Days
        currency:
          anyOf:
            - type: string
            - type: 'null'
          title: Currency
        display_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Display Name
        early_closure:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Early Closure
        incorporation_date:
          anyOf:
            - format: date
              type: string
            - type: 'null'
          title: Incorporation Date
        linked_partner_entity_ids:
          items:
            type: integer
          title: Linked Partner Entity Ids
          type: array
        linked_partners:
          items:
            $ref: '#/components/schemas/EvidenceEntityReference'
          title: Linked Partners
          type: array
        main_cnae_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Main Cnae Code
        matched_cnae_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Matched Cnae Code
        matched_cnae_is_primary:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Matched Cnae Is Primary
        organization_cnpj:
          anyOf:
            - type: string
            - type: 'null'
          title: Organization Cnpj
        organization_entity_id:
          title: Organization Entity Id
          type: integer
        organization_size:
          anyOf:
            - $ref: '#/components/schemas/OrganizationSize'
            - type: 'null'
        registration_status:
          anyOf:
            - $ref: '#/components/schemas/RegistrationStatus'
            - type: 'null'
        registration_status_date:
          anyOf:
            - format: date
              type: string
            - type: 'null'
          title: Registration Status Date
        registration_status_reason:
          anyOf:
            - type: string
            - type: 'null'
          title: Registration Status Reason
        registration_status_reason_code:
          anyOf:
            - type: integer
            - type: 'null'
          title: Registration Status Reason Code
        share_capital:
          anyOf:
            - type: number
            - pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
              type: string
            - type: 'null'
          title: Share Capital
        within_aggregation_window:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Within Aggregation Window
      required:
        - organization_entity_id
      title: OrganizationRegistrationEvidenceRecord
      type: object
    OrganizationStabilityEvidenceRecord:
      additionalProperties: false
      properties:
        company_age_days:
          anyOf:
            - type: integer
            - type: 'null'
          title: Company Age Days
        days_since_last_qsa_change:
          anyOf:
            - type: integer
            - type: 'null'
          title: Days Since Last Qsa Change
        display_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Display Name
        incorporation_date:
          anyOf:
            - format: date
              type: string
            - type: 'null'
          title: Incorporation Date
        is_headquarters:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Is Headquarters
        last_qsa_change_date:
          anyOf:
            - format: date
              type: string
            - type: 'null'
          title: Last Qsa Change Date
        maturity_threshold_date:
          anyOf:
            - format: date
              type: string
            - type: 'null'
          title: Maturity Threshold Date
        organization_cnpj:
          anyOf:
            - type: string
            - type: 'null'
          title: Organization Cnpj
        organization_entity_id:
          title: Organization Entity Id
          type: integer
        qsa_changes_considered:
          default: 0
          title: Qsa Changes Considered
          type: integer
        qsa_history_covered_since:
          anyOf:
            - format: date
              type: string
            - type: 'null'
          title: Qsa History Covered Since
        qsa_history_window_covered:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Qsa History Window Covered
        qsa_window_start_date:
          anyOf:
            - format: date
              type: string
            - type: 'null'
          title: Qsa Window Start Date
      required:
        - organization_entity_id
      title: OrganizationStabilityEvidenceRecord
      type: object
    ConsultedSourceRecord:
      additionalProperties: false
      properties:
        records_found:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Records Found
        source_code:
          anyOf:
            - $ref: '#/components/schemas/SourceCode'
            - type: 'null'
        source_collected_at:
          anyOf:
            - format: date-time
              type: string
            - type: 'null'
          title: Source Collected At
        source_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Source Name
      title: ConsultedSourceRecord
      type: object
    SanctionEvidenceRecord:
      additionalProperties: false
      properties:
        amount:
          anyOf:
            - type: number
            - pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
              type: string
            - type: 'null'
          title: Amount
        authority_jurisdiction:
          anyOf:
            - $ref: '#/components/schemas/SanctionJurisdiction'
            - type: 'null'
        authority_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Authority Name
        authority_state:
          anyOf:
            - type: string
            - type: 'null'
          title: Authority State
        authority_type:
          anyOf:
            - $ref: '#/components/schemas/SanctionAuthorityType'
            - type: 'null'
        currency:
          anyOf:
            - type: string
            - type: 'null'
          title: Currency
        decision_date:
          anyOf:
            - format: date
              type: string
            - type: 'null'
          title: Decision Date
        description:
          anyOf:
            - type: string
            - type: 'null'
          title: Description
        effective_from:
          anyOf:
            - format: date
              type: string
            - type: 'null'
          title: Effective From
        effective_until:
          anyOf:
            - format: date
              type: string
            - type: 'null'
          title: Effective Until
        entity_cnpj:
          anyOf:
            - type: string
            - type: 'null'
          title: Entity Cnpj
        entity_display_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Entity Display Name
        entity_id:
          title: Entity Id
          type: integer
        entity_role:
          anyOf:
            - $ref: '#/components/schemas/SanctionedEntityRole'
            - type: 'null'
        publication_date:
          anyOf:
            - format: date
              type: string
            - type: 'null'
          title: Publication Date
        sanction_category:
          anyOf:
            - $ref: '#/components/schemas/SanctionCategory'
            - type: 'null'
        sanction_id:
          title: Sanction Id
          type: integer
        sanction_status:
          $ref: '#/components/schemas/SanctionStatus'
        sanction_type:
          anyOf:
            - $ref: '#/components/schemas/SanctionType'
            - type: 'null'
        source_code:
          anyOf:
            - $ref: '#/components/schemas/SourceCode'
            - type: 'null'
        source_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Source Name
        title:
          anyOf:
            - type: string
            - type: 'null'
          title: Title
      required:
        - sanction_id
        - entity_id
        - sanction_status
      title: SanctionEvidenceRecord
      type: object
    WatchlistEntryEvidenceRecord:
      additionalProperties: false
      properties:
        entity_cnpj:
          anyOf:
            - type: string
            - type: 'null'
          title: Entity Cnpj
        entity_display_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Entity Display Name
        entity_id:
          title: Entity Id
          type: integer
        entry_status:
          $ref: '#/components/schemas/WatchlistEntryStatus'
        entry_type:
          anyOf:
            - $ref: '#/components/schemas/WatchlistEntryType'
            - type: 'null'
        listed_at:
          anyOf:
            - format: date
              type: string
            - type: 'null'
          title: Listed At
        name_in_source:
          anyOf:
            - type: string
            - type: 'null'
          title: Name In Source
        program_code:
          anyOf:
            - $ref: '#/components/schemas/WatchlistProgramCode'
            - type: 'null'
        program_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Program Name
        removed_at:
          anyOf:
            - format: date
              type: string
            - type: 'null'
          title: Removed At
        risk_level:
          anyOf:
            - $ref: '#/components/schemas/WatchlistRiskLevel'
            - type: 'null'
        source_code:
          anyOf:
            - $ref: '#/components/schemas/SourceCode'
            - type: 'null'
        source_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Source Name
        status_history:
          items:
            $ref: '#/components/schemas/WatchlistStatusChangeRecord'
          title: Status History
          type: array
        watchlist_entry_id:
          title: Watchlist Entry Id
          type: integer
      required:
        - watchlist_entry_id
        - entity_id
        - entry_status
      title: WatchlistEntryEvidenceRecord
      type: object
    PersonRegistrationEvidenceRecord:
      additionalProperties: false
      properties:
        cpf_registration_status:
          anyOf:
            - $ref: '#/components/schemas/CpfRegistrationStatus'
            - type: 'null'
        cpf_registration_status_date:
          anyOf:
            - format: date
              type: string
            - type: 'null'
          title: Cpf Registration Status Date
        display_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Display Name
        person_cpf:
          anyOf:
            - type: string
            - type: 'null'
          title: Person Cpf
        person_entity_id:
          title: Person Entity Id
          type: integer
      required:
        - person_entity_id
      title: PersonRegistrationEvidenceRecord
      type: object
    PoliticalExposureEvidenceRecord:
      additionalProperties: false
      properties:
        display_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Display Name
        end_date:
          anyOf:
            - format: date
              type: string
            - type: 'null'
          title: End Date
        entity_id:
          title: Entity Id
          type: integer
        institution_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Institution Name
        pep_degree:
          anyOf:
            - type: integer
            - type: 'null'
          title: Pep Degree
        pep_status:
          anyOf:
            - $ref: '#/components/schemas/PepStatus'
            - type: 'null'
        pep_type:
          anyOf:
            - $ref: '#/components/schemas/PepType'
            - type: 'null'
        political_profile_id:
          title: Political Profile Id
          type: integer
        position_title:
          anyOf:
            - type: string
            - type: 'null'
          title: Position Title
        profile_type:
          anyOf:
            - $ref: '#/components/schemas/PoliticalProfileType'
            - type: 'null'
        source_code:
          anyOf:
            - $ref: '#/components/schemas/SourceCode'
            - type: 'null'
        source_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Source Name
        start_date:
          anyOf:
            - format: date
              type: string
            - type: 'null'
          title: Start Date
      required:
        - political_profile_id
        - entity_id
      title: PoliticalExposureEvidenceRecord
      type: object
    ProcessEvidenceRecord:
      additionalProperties: false
      properties:
        case_number:
          anyOf:
            - type: string
            - type: 'null'
          title: Case Number
        case_secrecy_level:
          anyOf:
            - $ref: '#/components/schemas/LegalCaseSecrecyLevel'
            - type: 'null'
        case_status:
          anyOf:
            - $ref: '#/components/schemas/LegalCaseStatus'
            - type: 'null'
        case_type:
          anyOf:
            - $ref: '#/components/schemas/LegalCaseType'
            - type: 'null'
        case_value:
          anyOf:
            - type: number
            - pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
              type: string
            - type: 'null'
          title: Case Value
        closing_date:
          anyOf:
            - format: date
              type: string
            - type: 'null'
          title: Closing Date
        closing_reason:
          anyOf:
            - $ref: '#/components/schemas/LegalCaseClosingReason'
            - type: 'null'
        court:
          anyOf:
            - $ref: '#/components/schemas/CourtEvidenceRecord'
            - type: 'null'
        court_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Court Name
        currency:
          anyOf:
            - type: string
            - type: 'null'
          title: Currency
        current_grau:
          anyOf:
            - $ref: '#/components/schemas/LegalCaseCurrentGrau'
            - type: 'null'
        decision_is_final:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Decision Is Final
        decision_outcome:
          anyOf:
            - $ref: '#/components/schemas/LegalDecisionOutcome'
            - type: 'null'
        filing_date:
          anyOf:
            - format: date
              type: string
            - type: 'null'
          title: Filing Date
        final_judgment_date:
          anyOf:
            - format: date
              type: string
            - type: 'null'
          title: Final Judgment Date
        legal_case_id:
          title: Legal Case Id
          type: integer
        matched_classes:
          items:
            $ref: '#/components/schemas/ProcessClassRecord'
          title: Matched Classes
          type: array
        matched_subjects:
          items:
            $ref: '#/components/schemas/ProcessSubjectRecord'
          title: Matched Subjects
          type: array
        party_cnpj:
          anyOf:
            - type: string
            - type: 'null'
          title: Party Cnpj
        party_display_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Party Display Name
        party_entity_id:
          anyOf:
            - type: integer
            - type: 'null'
          title: Party Entity Id
        role:
          $ref: '#/components/schemas/LegalCaseEntityRole'
      required:
        - legal_case_id
        - role
      title: ProcessEvidenceRecord
      type: object
    PublicQuarantinePrivateActivityEvidenceRecord:
      additionalProperties: false
      properties:
        context_excerpt:
          anyOf:
            - type: string
            - type: 'null'
          title: Context Excerpt
        date_precision:
          $ref: '#/components/schemas/PublicServiceLinkDatePrecision'
          default: day
        document_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Document Url
        matched_position_criterion:
          title: Matched Position Criterion
          type: string
        matched_termination_keyword:
          title: Matched Termination Keyword
          type: string
        mention_role:
          anyOf:
            - type: string
            - type: 'null'
          title: Mention Role
        mention_role_raw:
          anyOf:
            - type: string
            - type: 'null'
          title: Mention Role Raw
        organization_cnpj:
          anyOf:
            - type: string
            - type: 'null'
          title: Organization Cnpj
        organization_display_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Organization Display Name
        organization_entity_id:
          title: Organization Entity Id
          type: integer
        ownership_id:
          title: Ownership Id
          type: integer
        ownership_role:
          anyOf:
            - type: string
            - type: 'null'
          title: Ownership Role
        ownership_type:
          anyOf:
            - type: string
            - type: 'null'
          title: Ownership Type
        person_display_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Person Display Name
        person_entity_id:
          title: Person Entity Id
          type: integer
        position_level:
          anyOf:
            - type: string
            - type: 'null'
          title: Position Level
        position_title:
          anyOf:
            - type: string
            - type: 'null'
          title: Position Title
        private_activity_start_date:
          format: date
          title: Private Activity Start Date
          type: string
        public_body_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Public Body Name
        public_service_end_date:
          format: date
          title: Public Service End Date
          type: string
        publication_id:
          title: Publication Id
          type: integer
        publication_reference:
          anyOf:
            - type: string
            - type: 'null'
          title: Publication Reference
        quarantine_window_end_date:
          format: date
          title: Quarantine Window End Date
          type: string
        source_code:
          anyOf:
            - $ref: '#/components/schemas/SourceCode'
            - type: 'null'
        source_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Source Name
      required:
        - person_entity_id
        - organization_entity_id
        - ownership_id
        - private_activity_start_date
        - public_service_end_date
        - quarantine_window_end_date
        - publication_id
        - matched_termination_keyword
        - matched_position_criterion
      title: PublicQuarantinePrivateActivityEvidenceRecord
      type: object
    PublicServantPrivateManagementEvidenceRecord:
      additionalProperties: false
      properties:
        organization_category:
          anyOf:
            - type: string
            - type: 'null'
          title: Organization Category
        organization_cnpj:
          anyOf:
            - type: string
            - type: 'null'
          title: Organization Cnpj
        organization_display_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Organization Display Name
        organization_entity_id:
          title: Organization Entity Id
          type: integer
        organization_registration_status:
          anyOf:
            - $ref: '#/components/schemas/RegistrationStatus'
            - type: 'null'
        ownership_id:
          anyOf:
            - type: integer
            - type: 'null'
          title: Ownership Id
        ownership_role:
          anyOf:
            - type: string
            - type: 'null'
          title: Ownership Role
        ownership_start_date:
          anyOf:
            - format: date
              type: string
            - type: 'null'
          title: Ownership Start Date
        ownership_type:
          anyOf:
            - type: string
            - type: 'null'
          title: Ownership Type
        person_display_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Person Display Name
        person_entity_id:
          title: Person Entity Id
          type: integer
        public_office_id:
          anyOf:
            - type: integer
            - type: 'null'
          title: Public Office Id
        public_office_institution_entity_id:
          anyOf:
            - type: integer
            - type: 'null'
          title: Public Office Institution Entity Id
        public_office_institution_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Public Office Institution Name
        public_office_jurisdiction_level:
          anyOf:
            - type: string
            - type: 'null'
          title: Public Office Jurisdiction Level
        public_office_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Public Office Name
        public_office_source_code:
          anyOf:
            - $ref: '#/components/schemas/SourceCode'
            - type: 'null'
        public_office_source_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Public Office Source Name
        public_office_type:
          anyOf:
            - type: string
            - type: 'null'
          title: Public Office Type
      required:
        - person_entity_id
        - organization_entity_id
      title: PublicServantPrivateManagementEvidenceRecord
      type: object
    PublicServiceLinkDiscardedCandidate:
      additionalProperties: false
      properties:
        context_excerpt:
          anyOf:
            - type: string
            - type: 'null'
          title: Context Excerpt
        entity_name_in_text:
          anyOf:
            - type: string
            - type: 'null'
          title: Entity Name In Text
        person_display_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Person Display Name
        person_entity_id:
          title: Person Entity Id
          type: integer
        publication_id:
          title: Publication Id
          type: integer
        reason:
          $ref: '#/components/schemas/PublicServiceLinkDiscardReason'
      required:
        - publication_id
        - person_entity_id
        - reason
      title: PublicServiceLinkDiscardedCandidate
      type: object
    PublicServiceLinkEvidenceRecord:
      additionalProperties: false
      properties:
        act_type_in_source:
          anyOf:
            - type: string
            - type: 'null'
          title: Act Type In Source
        closes_link:
          default: false
          title: Closes Link
          type: boolean
        context_excerpt:
          anyOf:
            - type: string
            - type: 'null'
          title: Context Excerpt
        date_precision:
          $ref: '#/components/schemas/PublicServiceLinkDatePrecision'
          default: day
        document_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Document Url
        effective_date:
          anyOf:
            - format: date
              type: string
            - type: 'null'
          title: Effective Date
        end_date:
          anyOf:
            - format: date-time
              type: string
            - type: 'null'
          title: End Date
        entity_name_in_text:
          anyOf:
            - type: string
            - type: 'null'
          title: Entity Name In Text
        event_type:
          $ref: '#/components/schemas/PublicServiceLinkEventType'
        matched_keyword:
          anyOf:
            - type: string
            - type: 'null'
          title: Matched Keyword
        mention_role:
          anyOf:
            - type: string
            - type: 'null'
          title: Mention Role
        opens_link:
          default: false
          title: Opens Link
          type: boolean
        organization_entity_id:
          anyOf:
            - type: integer
            - type: 'null'
          title: Organization Entity Id
        person_display_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Person Display Name
        person_entity_id:
          title: Person Entity Id
          type: integer
        personnel_act_id:
          anyOf:
            - type: integer
            - type: 'null'
          title: Personnel Act Id
        position_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Position Code
        position_level:
          anyOf:
            - type: string
            - type: 'null'
          title: Position Level
        position_title:
          anyOf:
            - type: string
            - type: 'null'
          title: Position Title
        public_body_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Public Body Name
        publication_date:
          anyOf:
            - format: date
              type: string
            - type: 'null'
          title: Publication Date
        publication_id:
          anyOf:
            - type: integer
            - type: 'null'
          title: Publication Id
        publication_reference:
          anyOf:
            - type: string
            - type: 'null'
          title: Publication Reference
        publication_type:
          anyOf:
            - $ref: '#/components/schemas/OfficialPublicationType'
            - type: 'null'
        published_at:
          anyOf:
            - format: date-time
              type: string
            - type: 'null'
          title: Published At
        source_code:
          anyOf:
            - $ref: '#/components/schemas/SourceCode'
            - type: 'null'
        source_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Source Name
        start_date:
          anyOf:
            - format: date-time
              type: string
            - type: 'null'
          title: Start Date
        title:
          anyOf:
            - type: string
            - type: 'null'
          title: Title
      required:
        - person_entity_id
        - event_type
      title: PublicServiceLinkEvidenceRecord
      type: object
    QsaFullReplacementEvidenceRecord:
      additionalProperties: false
      properties:
        active_qsa_link_count:
          default: 0
          title: Active Qsa Link Count
          type: integer
        constitution_to_qsa_gap_days:
          anyOf:
            - type: integer
            - type: 'null'
          title: Constitution To Qsa Gap Days
        days_since_replacement:
          anyOf:
            - type: integer
            - type: 'null'
          title: Days Since Replacement
        display_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Display Name
        earliest_active_qsa_entry_date:
          anyOf:
            - format: date
              type: string
            - type: 'null'
          title: Earliest Active Qsa Entry Date
        gap_threshold_date:
          anyOf:
            - format: date
              type: string
            - type: 'null'
          title: Gap Threshold Date
        incorporation_date:
          anyOf:
            - format: date
              type: string
            - type: 'null'
          title: Incorporation Date
        organization_cnpj:
          anyOf:
            - type: string
            - type: 'null'
          title: Organization Cnpj
        organization_entity_id:
          title: Organization Entity Id
          type: integer
        sunset_threshold_date:
          anyOf:
            - format: date
              type: string
            - type: 'null'
          title: Sunset Threshold Date
      required:
        - organization_entity_id
      title: QsaFullReplacementEvidenceRecord
      type: object
    RegulatoryEnforcementEvidenceRecord:
      additionalProperties: false
      properties:
        context_excerpt:
          anyOf:
            - type: string
            - type: 'null'
          title: Context Excerpt
        document_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Document Url
        entity_cnpj:
          anyOf:
            - type: string
            - type: 'null'
          title: Entity Cnpj
        entity_display_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Entity Display Name
        entity_id:
          title: Entity Id
          type: integer
        entity_name_in_text:
          anyOf:
            - type: string
            - type: 'null'
          title: Entity Name In Text
        matched_keyword:
          title: Matched Keyword
          type: string
        mention_role:
          anyOf:
            - type: string
            - type: 'null'
          title: Mention Role
        publication_id:
          title: Publication Id
          type: integer
        publication_reference:
          anyOf:
            - type: string
            - type: 'null'
          title: Publication Reference
        publication_type:
          $ref: '#/components/schemas/OfficialPublicationType'
        published_at:
          anyOf:
            - format: date-time
              type: string
            - type: 'null'
          title: Published At
        source_code:
          anyOf:
            - $ref: '#/components/schemas/SourceCode'
            - type: 'null'
        source_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Source Name
        title:
          anyOf:
            - type: string
            - type: 'null'
          title: Title
      required:
        - publication_id
        - entity_id
        - publication_type
        - matched_keyword
      title: RegulatoryEnforcementEvidenceRecord
      type: object
    RegulatoryRegistrationEvidenceRecord:
      additionalProperties: false
      properties:
        end_date:
          anyOf:
            - format: date
              type: string
            - type: 'null'
          title: End Date
        entity_cnpj:
          anyOf:
            - type: string
            - type: 'null'
          title: Entity Cnpj
        entity_display_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Entity Display Name
        entity_id:
          title: Entity Id
          type: integer
        registration_id:
          title: Registration Id
          type: integer
        registration_number:
          anyOf:
            - type: string
            - type: 'null'
          title: Registration Number
        registration_status:
          anyOf:
            - $ref: '#/components/schemas/RegulatoryRegistrationStatus'
            - type: 'null'
        registration_status_label:
          anyOf:
            - type: string
            - type: 'null'
          title: Registration Status Label
        registration_type:
          anyOf:
            - type: string
            - type: 'null'
          title: Registration Type
        regulator_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Regulator Code
        regulator_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Regulator Name
        source_code:
          anyOf:
            - $ref: '#/components/schemas/SourceCode'
            - type: 'null'
        source_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Source Name
        start_date:
          anyOf:
            - format: date
              type: string
            - type: 'null'
          title: Start Date
      required:
        - registration_id
        - entity_id
      title: RegulatoryRegistrationEvidenceRecord
      type: object
    RestrictionEvidenceRecord:
      additionalProperties: false
      properties:
        end_date:
          anyOf:
            - format: date
              type: string
            - type: 'null'
          title: End Date
        entity_cnpj:
          anyOf:
            - type: string
            - type: 'null'
          title: Entity Cnpj
        entity_display_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Entity Display Name
        entity_id:
          title: Entity Id
          type: integer
        restriction_id:
          title: Restriction Id
          type: integer
        restriction_scope:
          anyOf:
            - $ref: '#/components/schemas/RestrictionScope'
            - type: 'null'
        restriction_status:
          anyOf:
            - $ref: '#/components/schemas/RestrictionStatus'
            - type: 'null'
        restriction_type:
          anyOf:
            - $ref: '#/components/schemas/RestrictionType'
            - type: 'null'
        source_code:
          anyOf:
            - $ref: '#/components/schemas/SourceCode'
            - type: 'null'
        source_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Source Name
        start_date:
          anyOf:
            - format: date
              type: string
            - type: 'null'
          title: Start Date
        title:
          anyOf:
            - type: string
            - type: 'null'
          title: Title
      required:
        - restriction_id
        - entity_id
      title: RestrictionEvidenceRecord
      type: object
    SanctionedFundAssignorEvidenceRecord:
      additionalProperties: false
      properties:
        assignor:
          anyOf:
            - $ref: '#/components/schemas/EvidenceEntityReference'
            - type: 'null'
        assignor_document:
          anyOf:
            - type: string
            - type: 'null'
          title: Assignor Document
        assignor_entity_id:
          anyOf:
            - type: integer
            - type: 'null'
          title: Assignor Entity Id
        concentration_percentage:
          anyOf:
            - type: number
            - pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
              type: string
            - type: 'null'
          title: Concentration Percentage
        fund:
          anyOf:
            - $ref: '#/components/schemas/EvidenceEntityReference'
            - type: 'null'
        fund_assignor_id:
          title: Fund Assignor Id
          type: integer
        fund_entity_id:
          title: Fund Entity Id
          type: integer
        reference_date:
          anyOf:
            - format: date
              type: string
            - type: 'null'
          title: Reference Date
        risk_retention_bucket:
          anyOf:
            - $ref: '#/components/schemas/FundRiskRetentionBucket'
            - type: 'null'
        sanction_category:
          anyOf:
            - $ref: '#/components/schemas/SanctionCategory'
            - type: 'null'
        sanction_decision_date:
          anyOf:
            - format: date
              type: string
            - type: 'null'
          title: Sanction Decision Date
        sanction_id:
          anyOf:
            - type: integer
            - type: 'null'
          title: Sanction Id
        sanction_source_code:
          anyOf:
            - $ref: '#/components/schemas/SourceCode'
            - type: 'null'
        sanction_source_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Sanction Source Name
        sanction_status:
          anyOf:
            - $ref: '#/components/schemas/SanctionStatus'
            - type: 'null'
        sanction_title:
          anyOf:
            - type: string
            - type: 'null'
          title: Sanction Title
        sanction_type:
          anyOf:
            - $ref: '#/components/schemas/SanctionType'
            - type: 'null'
      required:
        - fund_assignor_id
        - fund_entity_id
      title: SanctionedFundAssignorEvidenceRecord
      type: object
    SensitiveActivityCapitalQualifier:
      additionalProperties: false
      properties:
        applies:
          default: false
          title: Applies
          type: boolean
        capital_floor:
          anyOf:
            - type: number
            - pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
              type: string
            - type: 'null'
          title: Capital Floor
        company_age_months:
          anyOf:
            - minimum: 0
              type: integer
            - type: 'null'
          title: Company Age Months
        legs:
          items:
            $ref: '#/components/schemas/SubcapitalizationQualifierLeg'
          title: Legs
          type: array
        max_age_months:
          anyOf:
            - minimum: 1
              type: integer
            - type: 'null'
          title: Max Age Months
        share_capital:
          anyOf:
            - type: number
            - pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
              type: string
            - type: 'null'
          title: Share Capital
      title: SensitiveActivityCapitalQualifier
      type: object
    SensitiveActivityCnaeEvidenceRecord:
      additionalProperties: false
      properties:
        cnae_code:
          title: Cnae Code
          type: string
        is_primary:
          title: Is Primary
          type: boolean
        sector_label:
          title: Sector Label
          type: string
      required:
        - cnae_code
        - is_primary
        - sector_label
      title: SensitiveActivityCnaeEvidenceRecord
      type: object
    SerialCompanyOpeningEvidenceRecord:
      additionalProperties: false
      properties:
        cnae_division:
          anyOf:
            - type: string
            - type: 'null'
          title: Cnae Division
        display_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Display Name
        in_cluster:
          default: false
          title: In Cluster
          type: boolean
        incorporation_date:
          anyOf:
            - format: date
              type: string
            - type: 'null'
          title: Incorporation Date
        main_cnae_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Main Cnae Code
        organization_cnpj:
          anyOf:
            - type: string
            - type: 'null'
          title: Organization Cnpj
        organization_entity_id:
          title: Organization Entity Id
          type: integer
        ownership_id:
          anyOf:
            - type: integer
            - type: 'null'
          title: Ownership Id
        ownership_role:
          anyOf:
            - type: string
            - type: 'null'
          title: Ownership Role
        ownership_type:
          anyOf:
            - type: string
            - type: 'null'
          title: Ownership Type
        registration_status:
          anyOf:
            - $ref: '#/components/schemas/RegistrationStatus'
            - type: 'null'
      required:
        - organization_entity_id
      title: SerialCompanyOpeningEvidenceRecord
      type: object
    SimplesExclusionEvidenceRecord:
      additionalProperties: false
      properties:
        display_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Display Name
        inferred_cause:
          $ref: '#/components/schemas/SimplesExclusionInferredCause'
          default: undetermined
        inferred_cause_detail:
          anyOf:
            - type: string
            - type: 'null'
          title: Inferred Cause Detail
        lookback_threshold_date:
          anyOf:
            - format: date
              type: string
            - type: 'null'
          title: Lookback Threshold Date
        months_in_regime:
          anyOf:
            - type: integer
            - type: 'null'
          title: Months In Regime
        organization_cnpj:
          anyOf:
            - type: string
            - type: 'null'
          title: Organization Cnpj
        organization_entity_id:
          title: Organization Entity Id
          type: integer
        partner_pj_cnpj:
          anyOf:
            - type: string
            - type: 'null'
          title: Partner Pj Cnpj
        partner_pj_display_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Partner Pj Display Name
        partner_pj_entity_id:
          anyOf:
            - type: integer
            - type: 'null'
          title: Partner Pj Entity Id
        partner_pj_entry_date:
          anyOf:
            - format: date
              type: string
            - type: 'null'
          title: Partner Pj Entry Date
        simples_exclusion_date:
          anyOf:
            - format: date
              type: string
            - type: 'null'
          title: Simples Exclusion Date
        simples_option_current:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Simples Option Current
        simples_start_date:
          anyOf:
            - format: date
              type: string
            - type: 'null'
          title: Simples Start Date
      required:
        - organization_entity_id
      title: SimplesExclusionEvidenceRecord
      type: object
    TerritorialJurisdictionMatchRecord:
      additionalProperties: false
      properties:
        address_id:
          anyOf:
            - type: integer
            - type: 'null'
          title: Address Id
        address_type:
          anyOf:
            - type: string
            - type: 'null'
          title: Address Type
        country_raw:
          anyOf:
            - type: string
            - type: 'null'
          title: Country Raw
        jurisdiction_code:
          title: Jurisdiction Code
          type: string
        jurisdiction_label:
          title: Jurisdiction Label
          type: string
        jurisdiction_risk_id:
          exclusiveMinimum: 0
          title: Jurisdiction Risk Id
          type: integer
        matched_country_token:
          title: Matched Country Token
          type: string
        observed_cnpj:
          anyOf:
            - type: string
            - type: 'null'
          title: Observed Cnpj
        observed_display_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Observed Display Name
        observed_entity_id:
          anyOf:
            - type: integer
            - type: 'null'
          title: Observed Entity Id
        resolution_references:
          items:
            type: string
          title: Resolution References
          type: array
        sanctions_framework:
          title: Sanctions Framework
          type: string
        valid_from:
          anyOf:
            - format: date
              type: string
            - type: 'null'
          title: Valid From
        valid_to:
          anyOf:
            - format: date
              type: string
            - type: 'null'
          title: Valid To
      required:
        - jurisdiction_risk_id
        - jurisdiction_code
        - jurisdiction_label
        - sanctions_framework
        - matched_country_token
      title: TerritorialJurisdictionMatchRecord
      type: object
    ThinFileRoutingEvidenceRecord:
      additionalProperties: false
      properties:
        company_age_months:
          anyOf:
            - type: integer
            - type: 'null'
          title: Company Age Months
        display_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Display Name
        entity_id:
          title: Entity Id
          type: integer
        has_any_phone:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Has Any Phone
        has_economic_ties:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Has Economic Ties
        has_public_history:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Has Public History
        is_organization:
          default: false
          title: Is Organization
          type: boolean
        organization_cnpj:
          anyOf:
            - type: string
            - type: 'null'
          title: Organization Cnpj
        routes_to_review:
          default: true
          title: Routes To Review
          type: boolean
        share_capital:
          anyOf:
            - type: number
            - pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
              type: string
            - type: 'null'
          title: Share Capital
        triggered_conditions:
          items:
            $ref: '#/components/schemas/ThinFileCondition'
          title: Triggered Conditions
          type: array
      required:
        - entity_id
      title: ThinFileRoutingEvidenceRecord
      type: object
    FinancialTransaction:
      additionalProperties: false
      properties:
        amount:
          anyOf:
            - type: number
            - pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
              type: string
          title: Amount
        channel:
          anyOf:
            - $ref: '#/components/schemas/FinancialTransactionChannel'
            - type: 'null'
        currency:
          title: Currency
          type: string
        description:
          anyOf:
            - type: string
            - type: 'null'
          title: Description
        destination_account_id:
          anyOf:
            - type: integer
            - type: 'null'
          title: Destination Account Id
        destination_entity_id:
          anyOf:
            - type: integer
            - type: 'null'
          title: Destination Entity Id
        id:
          title: Id
          type: integer
        is_reversal:
          default: false
          title: Is Reversal
          type: boolean
        is_synthetic:
          default: false
          title: Is Synthetic
          type: boolean
        origin_account_id:
          anyOf:
            - type: integer
            - type: 'null'
          title: Origin Account Id
        origin_entity_id:
          anyOf:
            - type: integer
            - type: 'null'
          title: Origin Entity Id
        payment_method:
          anyOf:
            - $ref: '#/components/schemas/PaymentMethod'
            - type: 'null'
        posted_at:
          anyOf:
            - format: date-time
              type: string
            - type: 'null'
          title: Posted At
        reference_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Reference Code
        settled_at:
          anyOf:
            - format: date-time
              type: string
            - type: 'null'
          title: Settled At
        transaction_date:
          format: date-time
          title: Transaction Date
          type: string
        transaction_direction:
          anyOf:
            - $ref: '#/components/schemas/FinancialTransactionDirection'
            - type: 'null'
        transaction_status:
          anyOf:
            - $ref: '#/components/schemas/FinancialTransactionStatus'
            - type: 'null'
        transaction_type:
          $ref: '#/components/schemas/FinancialTransactionType'
      required:
        - id
        - transaction_type
        - amount
        - currency
        - transaction_date
      title: FinancialTransaction
      type: object
    UBOResolutionEvidenceRecord:
      additionalProperties: false
      properties:
        beneficial_owner_entity_id:
          title: Beneficial Owner Entity Id
          type: integer
        beneficial_ownership_type:
          $ref: '#/components/schemas/BeneficialOwnershipType'
        control_chain_depth:
          anyOf:
            - type: integer
            - type: 'null'
          title: Control Chain Depth
        display_name:
          title: Display Name
          type: string
        is_direct:
          default: false
          title: Is Direct
          type: boolean
        ownership_percentage:
          anyOf:
            - type: number
            - pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
              type: string
            - type: 'null'
          title: Ownership Percentage
      required:
        - beneficial_owner_entity_id
        - display_name
        - beneficial_ownership_type
      title: UBOResolutionEvidenceRecord
      type: object
    EvidenceEntityReference:
      additionalProperties: false
      properties:
        cnpj:
          anyOf:
            - type: string
            - type: 'null'
          title: Cnpj
        display_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Display Name
        entity_id:
          title: Entity Id
          type: integer
      required:
        - entity_id
      title: EvidenceEntityReference
      type: object
    UnauthorizedReservedInstitutionEvidenceRecord:
      additionalProperties: false
      properties:
        bcb_register_state:
          anyOf:
            - type: string
            - type: 'null'
          title: Bcb Register State
        display_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Display Name
        entity_id:
          exclusiveMinimum: 0
          title: Entity Id
          type: integer
        matched_cnae_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Matched Cnae Code
        matched_name_terms:
          items:
            type: string
          title: Matched Name Terms
          type: array
        organization_cnpj:
          anyOf:
            - type: string
            - type: 'null'
          title: Organization Cnpj
        share_capital:
          anyOf:
            - type: number
            - pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
              type: string
            - type: 'null'
          title: Share Capital
      required:
        - entity_id
      title: UnauthorizedReservedInstitutionEvidenceRecord
      type: object
    WarrantEvidenceRecord:
      additionalProperties: false
      properties:
        description:
          anyOf:
            - type: string
            - type: 'null'
          title: Description
        expires_at:
          anyOf:
            - format: date-time
              type: string
            - type: 'null'
          title: Expires At
        issued_at:
          anyOf:
            - format: date-time
              type: string
            - type: 'null'
          title: Issued At
        legal_case_id:
          anyOf:
            - type: integer
            - type: 'null'
          title: Legal Case Id
        target_display_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Target Display Name
        target_entity_id:
          title: Target Entity Id
          type: integer
        target_role:
          enum:
            - self
            - controller
          title: Target Role
          type: string
        warrant_id:
          title: Warrant Id
          type: integer
        warrant_number:
          anyOf:
            - type: string
            - type: 'null'
          title: Warrant Number
        warrant_status:
          $ref: '#/components/schemas/WarrantStatus'
        warrant_type:
          $ref: '#/components/schemas/WarrantType'
      required:
        - warrant_id
        - target_entity_id
        - target_role
        - warrant_type
        - warrant_status
      title: WarrantEvidenceRecord
      type: object
    OfficialPublicationType:
      enum:
        - official_gazette
        - declaration_of_purpose
        - press_release
        - news_release
        - public_notice
        - regulatory_notice
        - court_publication
        - administrative_act
        - official_report
        - official_document
        - article
        - other
      title: OfficialPublicationType
      type: string
    SourceCode:
      enum:
        - cgu_ceis
        - cgu_cnep
        - cgu_cepim
        - cgu_leniencia
        - cgu_ceaf
        - dou
        - datajud
        - pdpj
        - ofac_sdn
        - onu_csnu
        - gafi
        - rfb
        - ph3a
        - bigdatacorp
        - opensanctions_br_tcu_disqualified
        - pmsp_empresas_apenadas
        - portal_transparencia_novo_bolsa_familia
        - portal_transparencia_servidores
        - transferegov_siconv
        - tse_candidates
        - ibama_embargos
        - cvm_pas
        - mte_lista_suja
        - unknown
      title: SourceCode
      type: string
    ProceedingOutcome:
      enum:
        - acquittal
        - warning
        - archived
        - reclassification
        - disqualification
        - fine
        - suspension
        - settlement
        - other
      title: ProceedingOutcome
      type: string
    ProceedingStatus:
      enum:
        - open
        - closed
        - suspended
        - archived
        - under_appeal
      title: ProceedingStatus
      type: string
    ProceedingType:
      enum:
        - administrative_sanctioning_process
        - disciplinary_process
        - accountability_process
        - regulatory_process
        - investigation
        - inquiry
        - inspection
        - leniency_agreement
        - other
      title: ProceedingType
      type: string
    MunicipalityBorderZoneClass:
      enum:
        - twin_city
        - seat_in_border_strip
        - partially_in_border_strip
      title: MunicipalityBorderZoneClass
      type: string
    CadastralCnaeMismatchVariant:
      enum:
        - name_activity
        - complex_structure
      title: CadastralCnaeMismatchVariant
      type: string
    CadastralPrecariousnessSignal:
      enum:
        - ddd_uf_mismatch
        - malformed_phone
        - empty_trade_name_no_phone
      title: CadastralPrecariousnessSignal
      type: string
    ControlCycleEdgeRecord:
      additionalProperties: false
      properties:
        owned_cnpj:
          anyOf:
            - type: string
            - type: 'null'
          title: Owned Cnpj
        owned_display_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Owned Display Name
        owned_entity_id:
          title: Owned Entity Id
          type: integer
        owner_cnpj:
          anyOf:
            - type: string
            - type: 'null'
          title: Owner Cnpj
        owner_display_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Owner Display Name
        owner_entity_id:
          title: Owner Entity Id
          type: integer
        ownership_id:
          anyOf:
            - type: integer
            - type: 'null'
          title: Ownership Id
        ownership_percentage:
          anyOf:
            - type: number
            - pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
              type: string
            - type: 'null'
          title: Ownership Percentage
        ownership_role:
          anyOf:
            - type: string
            - type: 'null'
          title: Ownership Role
        ownership_type:
          anyOf:
            - type: string
            - type: 'null'
          title: Ownership Type
        projection_key:
          title: Projection Key
          type: string
      required:
        - owner_entity_id
        - owned_entity_id
        - projection_key
      title: ControlCycleEdgeRecord
      type: object
    CorporateOwnershipOrganizationEvidenceRecord:
      additionalProperties: false
      properties:
        display_name:
          title: Display Name
          type: string
        legal_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Legal Name
        normalized_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Normalized Name
        organization_cnpj:
          anyOf:
            - type: string
            - type: 'null'
          title: Organization Cnpj
        organization_entity_id:
          title: Organization Entity Id
          type: integer
        ownership_percentage:
          anyOf:
            - type: number
            - pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
              type: string
            - type: 'null'
          title: Ownership Percentage
        ownership_type:
          title: Ownership Type
          type: string
      required:
        - organization_entity_id
        - display_name
        - ownership_type
      title: CorporateOwnershipOrganizationEvidenceRecord
      type: object
    CorporateOwnershipPartnerTriggerReason:
      enum:
        - age
        - death
      title: CorporateOwnershipPartnerTriggerReason
      type: string
    IsolationForestExplanationRecord:
      additionalProperties: false
      properties:
        attributions:
          items:
            $ref: '#/components/schemas/IsolationForestFeatureAttribution'
          title: Attributions
          type: array
        dominant_feature:
          title: Dominant Feature
          type: string
        dominant_label:
          title: Dominant Label
          type: string
        expected_value:
          anyOf:
            - type: number
            - pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
              type: string
          title: Expected Value
        method:
          default: shap_tree
          title: Method
          type: string
        summary:
          title: Summary
          type: string
      required:
        - expected_value
        - dominant_feature
        - dominant_label
        - summary
      title: IsolationForestExplanationRecord
      type: object
    CorporateParticipationEvidenceRecord:
      additionalProperties: false
      properties:
        counted:
          default: false
          title: Counted
          type: boolean
        display_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Display Name
        incorporation_date:
          anyOf:
            - format: date
              type: string
            - type: 'null'
          title: Incorporation Date
        link_is_active:
          default: true
          title: Link Is Active
          type: boolean
        organization_cnpj:
          anyOf:
            - type: string
            - type: 'null'
          title: Organization Cnpj
        organization_entity_id:
          title: Organization Entity Id
          type: integer
        ownership_id:
          anyOf:
            - type: integer
            - type: 'null'
          title: Ownership Id
        ownership_percentage:
          anyOf:
            - type: number
            - pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
              type: string
            - type: 'null'
          title: Ownership Percentage
        ownership_role:
          anyOf:
            - type: string
            - type: 'null'
          title: Ownership Role
        ownership_type:
          anyOf:
            - type: string
            - type: 'null'
          title: Ownership Type
        participation_edge:
          default: true
          title: Participation Edge
          type: boolean
        postal_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Postal Code
        registration_status:
          anyOf:
            - $ref: '#/components/schemas/RegistrationStatus'
            - type: 'null'
        share_capital:
          anyOf:
            - type: number
            - pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
              type: string
            - type: 'null'
          title: Share Capital
      required:
        - organization_entity_id
      title: CorporateParticipationEvidenceRecord
      type: object
    CriminalAffiliationRole:
      enum:
        - leadership
        - financier
        - collaborator
        - member
        - undefined
      title: CriminalAffiliationRole
      type: string
    CriminalAffiliationAssessmentLevel:
      enum:
        - N1
        - N2
        - N3
        - N4
        - N5
        - N6
        - N7
        - N8
      title: CriminalAffiliationAssessmentLevel
      type: string
    CriminalAffiliationAssessmentTier:
      enum:
        - T1
        - T2
        - T3
      title: CriminalAffiliationAssessmentTier
      type: string
    LegalCaseStatus:
      enum:
        - active
        - closed
        - suspended
        - archived
        - pending
        - under_appeal
        - dismissed
      title: LegalCaseStatus
      type: string
    LegalCaseEntityRole:
      enum:
        - plaintiff
        - defendant
        - claimant
        - respondent
        - appellant
        - appellee
        - victim
        - investigated
        - defendant_criminal
        - convicted
        - witness
        - lawyer
        - prosecutor
        - judge
        - court
        - public_agency
        - interested_party
        - third_party
        - expert
        - other
      title: LegalCaseEntityRole
      type: string
    CandidacyResultStatus:
      enum:
        - elected
        - not_elected
        - alternate
        - second_round
        - annulled
      title: CandidacyResultStatus
      type: string
    GovernmentBranch:
      enum:
        - executive
        - legislative
        - judiciary
        - administrative
        - electoral
        - party
        - international
        - other
      title: GovernmentBranch
      type: string
    ElectoralFinancialEventType:
      enum:
        - donation
        - campaign_revenue
        - campaign_expense
        - supplier_payment
        - party_transfer
        - self_funding
        - refund
        - return
        - other
      title: ElectoralFinancialEventType
      type: string
    ResourceOrigin:
      enum:
        - individual
        - company
        - party_fund
        - electoral_fund
        - self_funding
        - crowdfunding
        - other
      title: ResourceOrigin
      type: string
    MlroEscalationTrigger:
      enum:
        - any_critical_signal
        - rj021_with_rs013s
        - re050_active
        - re007_with_high_risk_pillar
      title: MlroEscalationTrigger
      type: string
    OfficialPublicationStatus:
      enum:
        - published
        - updated
        - corrected
        - removed
        - archived
      title: OfficialPublicationStatus
      type: string
    IntendedControlPublicationParticipantRecord:
      additionalProperties: false
      properties:
        cnpj:
          anyOf:
            - type: string
            - type: 'null'
          title: Cnpj
        context_excerpt:
          anyOf:
            - type: string
            - type: 'null'
          title: Context Excerpt
        display_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Display Name
        entity_id:
          title: Entity Id
          type: integer
        entity_name_in_text:
          anyOf:
            - type: string
            - type: 'null'
          title: Entity Name In Text
        mention_role:
          anyOf:
            - type: string
            - type: 'null'
          title: Mention Role
      required:
        - entity_id
      title: IntendedControlPublicationParticipantRecord
      type: object
    OrganizationSize:
      enum:
        - mei
        - micro
        - small
        - medium
        - large
        - not_applicable
      title: OrganizationSize
      type: string
    RegistrationStatus:
      enum:
        - active
        - inactive
        - suspended
        - cancelled
        - dissolved
        - inapt
        - 'null'
      title: RegistrationStatus
      type: string
    SanctionJurisdiction:
      enum:
        - federal
        - state
        - municipal
        - district
        - international
        - foreign
      title: SanctionJurisdiction
      type: string
    SanctionAuthorityType:
      enum:
        - control_agency
        - public_administration_body
        - legislative_body
        - court
        - court_of_accounts
        - central_bank
        - securities_regulator
        - competition_authority
        - environmental_agency
        - labor_authority
        - consumer_protection
        - law_enforcement
        - prosecutor_office
        - international_body
        - other
      title: SanctionAuthorityType
      type: string
    SanctionedEntityRole:
      enum:
        - sanctioned
        - responsible
        - legal_representative
        - related_entity
        - beneficiary
        - other
      title: SanctionedEntityRole
      type: string
    SanctionCategory:
      enum:
        - administrative
        - regulatory
        - disciplinary
        - audit
        - environmental
        - public_procurement
        - financial_system
        - securities_market
        - labor
        - international
        - other
      title: SanctionCategory
      type: string
    SanctionStatus:
      enum:
        - active
        - inactive
        - expired
        - revoked
        - suspended
        - cancelled
        - under_appeal
      title: SanctionStatus
      type: string
    SanctionType:
      enum:
        - fine
        - suspension
        - debarment
        - disqualification
        - warning
        - prohibition
        - embargo
        - asset_freeze
        - license_revocation
        - disciplinary_penalty
        - slave_labor_registration
        - other
      title: SanctionType
      type: string
    WatchlistEntryStatus:
      enum:
        - active
        - inactive
        - removed
        - updated
      title: WatchlistEntryStatus
      type: string
    WatchlistEntryType:
      enum:
        - person
        - organization
        - vessel
        - aircraft
        - asset
        - jurisdiction
      title: WatchlistEntryType
      type: string
    WatchlistProgramCode:
      enum:
        - ofac_sdn
        - onu_csnu
        - interpol_yellow
        - interpol_red
        - eu_sancoes
        - uk_sancoes
        - interpol_un
        - unknown
      title: WatchlistProgramCode
      type: string
    WatchlistRiskLevel:
      enum:
        - low
        - medium
        - high
        - critical
      title: WatchlistRiskLevel
      type: string
    WatchlistStatusChangeRecord:
      additionalProperties: false
      properties:
        entry_status:
          anyOf:
            - $ref: '#/components/schemas/WatchlistEntryStatus'
            - type: 'null'
        event_date:
          anyOf:
            - format: date
              type: string
            - type: 'null'
          title: Event Date
        event_type:
          anyOf:
            - $ref: '#/components/schemas/WatchlistStatusHistoryEventType'
            - type: 'null'
      title: WatchlistStatusChangeRecord
      type: object
    CpfRegistrationStatus:
      enum:
        - regular
        - pending_regularization
        - suspended
        - cancelled
        - deceased_holder
        - 'null'
      title: CpfRegistrationStatus
      type: string
    PepStatus:
      enum:
        - active
        - former
        - inactive
      title: PepStatus
      type: string
    PepType:
      enum:
        - elected_official
        - senior_public_official
        - judiciary
        - military
        - political_party_leader
        - state_owned_company_executive
        - international_organization_official
        - related_person
        - close_associate
        - other
      title: PepType
      type: string
    PoliticalProfileType:
      enum:
        - pep
        - candidate
        - elected_official
        - public_official
        - party_leader
        - campaign_related
        - related_person
        - close_associate
        - other
      title: PoliticalProfileType
      type: string
    LegalCaseSecrecyLevel:
      enum:
        - public
        - restricted
        - sealed
        - secret
      title: LegalCaseSecrecyLevel
      type: string
    LegalCaseType:
      enum:
        - judicial
        - criminal
        - civil
        - labor
        - tax
        - electoral
        - administrative_judicial
        - constitutional
        - bankruptcy
        - enforcement
        - appeal
        - investigation
      title: LegalCaseType
      type: string
    LegalCaseClosingReason:
      enum:
        - merit
        - prescription
        - agreement
        - settlement
        - withdrawal
        - dismissal
        - other
      title: LegalCaseClosingReason
      type: string
    CourtEvidenceRecord:
      additionalProperties: false
      properties:
        city:
          anyOf:
            - type: string
            - type: 'null'
          title: City
        court_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Court Code
        court_name:
          title: Court Name
          type: string
        court_type:
          anyOf:
            - $ref: '#/components/schemas/CourtType'
            - type: 'null'
        jurisdiction_level:
          anyOf:
            - $ref: '#/components/schemas/JurisdictionLevel'
            - type: 'null'
        justice_branch:
          anyOf:
            - $ref: '#/components/schemas/JusticeBranch'
            - type: 'null'
        state:
          anyOf:
            - type: string
            - type: 'null'
          title: State
      required:
        - court_name
      title: CourtEvidenceRecord
      type: object
    LegalCaseCurrentGrau:
      enum:
        - G1
        - G2
        - JE
        - SUP
      title: LegalCaseCurrentGrau
      type: string
    LegalDecisionOutcome:
      enum:
        - granted
        - denied
        - partially_granted
        - convicted
        - acquitted
        - dismissed
        - settled
        - archived
      title: LegalDecisionOutcome
      type: string
    ProcessClassRecord:
      additionalProperties: false
      properties:
        class_code:
          title: Class Code
          type: string
        class_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Class Name
        class_type:
          $ref: '#/components/schemas/LegalCaseClassType'
      required:
        - class_code
        - class_type
      title: ProcessClassRecord
      type: object
    ProcessSubjectRecord:
      additionalProperties: false
      properties:
        subject_code:
          title: Subject Code
          type: string
        subject_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Subject Name
        subject_type:
          $ref: '#/components/schemas/LegalCaseSubjectType'
      required:
        - subject_code
        - subject_type
      title: ProcessSubjectRecord
      type: object
    PublicServiceLinkDatePrecision:
      enum:
        - day
        - month
      title: PublicServiceLinkDatePrecision
      type: string
    PublicServiceLinkDiscardReason:
      enum:
        - homonym_ambiguous
      title: PublicServiceLinkDiscardReason
      type: string
    PublicServiceLinkEventType:
      enum:
        - appointment
        - dismissal
        - retirement
        - designation
        - exoneration
        - dispensation
        - retirement_reversal
        - leave
        - promotion
        - transfer
      title: PublicServiceLinkEventType
      type: string
    RegulatoryRegistrationStatus:
      enum:
        - active
        - suspended
        - cancelled
      title: RegulatoryRegistrationStatus
      type: string
    RestrictionScope:
      enum:
        - federal
        - state
        - municipal
        - district
        - national
        - international
        - sectoral
        - institutional
        - specific_contract
        - other
      title: RestrictionScope
      type: string
    RestrictionStatus:
      enum:
        - active
        - inactive
        - expired
        - revoked
        - suspended
        - cancelled
      title: RestrictionStatus
      type: string
    RestrictionType:
      enum:
        - public_procurement_ban
        - incentive_transfer_ban
        - contracting_suspension
        - disqualification
        - market_activity_ban
        - license_suspension
        - license_revocation
        - asset_freeze
        - environmental_embargo
        - labor_restriction
        - consumer_protection_restriction
        - other
      title: RestrictionType
      type: string
    FundRiskRetentionBucket:
      enum:
        - with_risk_retention
        - without_risk_retention
      title: FundRiskRetentionBucket
      type: string
    SubcapitalizationQualifierLeg:
      enum:
        - low_absolute_capital
        - young_entity
      title: SubcapitalizationQualifierLeg
      type: string
    SimplesExclusionInferredCause:
      enum:
        - partner_pj
        - debt
        - undetermined
      title: SimplesExclusionInferredCause
      type: string
    ThinFileCondition:
      enum:
        - pj_under_min_age
        - pj_low_capital
        - pj_individual_or_mei
        - pj_no_phone
        - pf_no_economic_ties
        - pf_no_public_history
      title: ThinFileCondition
      type: string
    FinancialTransactionChannel:
      enum:
        - branch
        - atm
        - internet_banking
        - mobile_app
        - api
        - pos
        - correspondent
        - internal_system
      title: FinancialTransactionChannel
      type: string
    PaymentMethod:
      enum:
        - pix
        - ted
        - doc
        - boleto
        - cash
        - card
        - bank_transfer
        - crypto
        - internal
        - other
      title: PaymentMethod
      type: string
    FinancialTransactionDirection:
      enum:
        - inflow
        - outflow
        - internal
      title: FinancialTransactionDirection
      type: string
    FinancialTransactionStatus:
      enum:
        - pending
        - posted
        - settled
        - cancelled
        - reversed
        - failed
      title: FinancialTransactionStatus
      type: string
    FinancialTransactionType:
      enum:
        - transfer
        - payment
        - deposit
        - withdrawal
        - fee
        - interest
        - refund
        - chargeback
        - credit
        - debit
        - investment
        - loan_disbursement
        - loan_repayment
        - other
      title: FinancialTransactionType
      type: string
    BeneficialOwnershipType:
      enum:
        - declared_ubo
        - inferred_ubo
        - legal_controller
        - economic_controller
        - ultimate_parent
        - nominee_suspected
        - other
      title: BeneficialOwnershipType
      type: string
    WarrantStatus:
      enum:
        - active
        - executed
        - expired
        - revoked
        - cancelled
        - suspended
      title: WarrantStatus
      type: string
    WarrantType:
      enum:
        - arrest
        - search_and_seizure
        - bench_warrant
        - detention
        - capture
        - asset_freeze
        - seizure
        - protective_measure
        - other
      title: WarrantType
      type: string
    IsolationForestFeatureAttribution:
      additionalProperties: false
      properties:
        category:
          anyOf:
            - type: string
            - type: 'null'
          title: Category
        feature:
          title: Feature
          type: string
        feature_value:
          anyOf:
            - type: number
            - pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
              type: string
            - type: 'null'
          title: Feature Value
        label:
          title: Label
          type: string
        shap_value:
          anyOf:
            - type: number
            - pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
              type: string
          title: Shap Value
        share:
          anyOf:
            - type: number
            - pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
              type: string
          title: Share
      required:
        - feature
        - label
        - shap_value
        - share
      title: IsolationForestFeatureAttribution
      type: object
    WatchlistStatusHistoryEventType:
      enum:
        - listed
        - updated
        - removed
        - reactivated
        - corrected
        - status_changed
        - program_changed
        - risk_level_changed
        - other
      title: WatchlistStatusHistoryEventType
      type: string
    CourtType:
      enum:
        - court
        - tribunal
        - chamber
        - panel
        - section
        - judicial_unit
        - prosecutor_office
        - police_unit
        - administrative_body
        - other
      title: CourtType
      type: string
    JurisdictionLevel:
      enum:
        - federal
        - state
        - municipal
        - district
        - national
        - regional
        - superior
        - supreme
        - electoral
        - labor
        - military
      title: JurisdictionLevel
      type: string
    JusticeBranch:
      enum:
        - common
        - federal
        - state
        - labor
        - electoral
        - military
        - superior
        - constitutional
        - administrative
      title: JusticeBranch
      type: string
    LegalCaseClassType:
      enum:
        - cnj_class
        - court_class
        - procedural_class
        - custom_class
        - other
      title: LegalCaseClassType
      type: string
    LegalCaseSubjectType:
      enum:
        - cnj_subject
        - court_subject
        - custom_subject
        - inferred_subject
        - other
      title: LegalCaseSubjectType
      type: string

````