# Poll Record Validation Job Polls the status of a record validation job. The job is finished when the status is either or . If the job is finished, the result can be fetched using the endpoint. Endpoint: GET /v2/recordvalidationjobs/{id} Version: 3 Security: apiKey ## Path parameters: - `id` (string, required) ID of the validation report. Example: "ef450653-a3bc-4476-83d3-d67397d475a0" ## Response 200 fields (application/json): - `storageId` (string, required) Unique identifier of the Storage. Example: "72d6900fce6b326088f5d9d91049e3e6" - `customKnowledgeGraph` (string, required) Identifier for the custom knowledge graph that should be used for validation. Example: "kg_1_m_1" - `dataMapperDefinitionId` (string) Mapping ID that should be used for the mapping. Overrules a mapping of the knowledge graph (if exists). To run validation against CDL Rules, data mapping definition by given ID must exist and user executing validation needs to have permission to access it. Example: "ef48bc9f-7fa1-4c4e-8c0d-d1cc3301cc20" - `profile` (string) Profile which is used during validation. Default value is STANDARD. Enum: "QUICK", "STANDARD" - `ruleStatuses` (array) Filter for rule status. Enum: "RELEASED", "DRAFT", "HYPERCARE" - `featuresOn` (array) Activate features. Enum: "SHOW_LOOKUP_RESULTS", "SHOW_DEBUG_INFO", "LAB_BETA", "ENRICH_LEGAL_FORM", "ENRICH_CATEGORIES", "USE_SPARQL_VALIDATOR", "QUALIFICATION_SILENT_MODE", "EXTERNAL_SOURCES_OFF", "SHOW_BUSINESSPARTNER", "MED_REG_VALIDATION" - `ruleCategoriesOn` (array) Categories use for selecting active business rules. - `ruleCategoriesOn.url` (string) URL of the rule category. Example: "https://meta.cdq.com/Identifier_checkdigit" - `ruleCategoriesOn.name` (string) Name of the rule category. Example: "Identifier checkdigit" - `ignoredRules` (array) Urls of cdl rules ignored during validation process. Example: ["https://meta.cdq.com/Identifier_unknown_(European_value_added_tax_identifier_(The_Netherlands))"] - `activatedRules` (array) Urls of cdl rules that are active during validation process. Example: ["https://meta.cdq.com/Identifier_unknown_(European_value_added_tax_identifier_(The_Netherlands))"] - `dataSourcesOn` (array) If data sources are disabled by feature toggle you can enable some of them passing their prefixes here. - `dataSourcesOn.prefix` (string) Identifies external Data Source. Example: "VIES" - `dataSourcesOff` (array) Rules with data sources passed here are not used in validation process. - `updatedFrom` (string) Makes the job validate entries which were modified after given date described in ISO-8601 format. Example: "2025-09-01T14:16:48Z" - `dataSourceIds` (array) If set, only the records that belong to the data sources identified by these IDs are processed. By default, all records of the storage (means from all data sources) are processed (considering other filters). Example: ["648824a691d8d2503d65103e"] - `countryShortNames` (array) If set, only the records that belong to the countries identified by these short names are processed. By default, all records of the storage (means from all countries) are processed (considering other filters). Example: ["CH"] - `id` (string) Unique identifier of a job. Example: "35f23c03-1c22-45fe-9484-3ffe769325de" - `status` (string) Current status of the job. Enum: "ARCHIVED", "UNKNOWN", "CREATED", "PERSISTED", "SCHEDULED", "WAITING", "COULDNT_START", "RUNNING", "FINISHED", "DIED", "FAILED" - `createdAt` (string) Date of creation (ISO 8601-compliant). Example: "2025-09-01T14:16:48Z" - `finishedAt` (string) Date of finish (ISO 8601-compliant). Example: "2025-09-01T14:16:48Z" - `user` (string) ID of (human) user or API key. Example: "742429-234242-4343-232323" - `progress` (integer) Progress (%) of the job. Example: "77" - `result` (object) Contains information about created record during Validation Process. - `result.dataDefects` (array) List of Data Defects found in the record. - `result.dataDefects.validationSource` (object) Source of the validation. - `result.dataDefects.validationSource.type` (object) Type of the validation source. - `result.dataDefects.validationSource.type.technicalKey` (string) Technical key of the validation source type. Example: "VALIDATION_GRAPH" - `result.dataDefects.validationSource.type.description` (string) Description of the validation source type. Example: "Default CDL Model" - `result.dataDefects.validationSource.value` (string) Value of the validation source. Example: "CDL" - `result.dataDefects.businessRule` (object) Represents a Business Rule. - `result.dataDefects.businessRule.name` (string) Represents business rule name. Example: "Identifier unknown (European value added tax identifier (The Netherlands))" - `result.dataDefects.businessRule.url` (string) Represents Data Quality Rule url. Example: "https://meta.cdq.com/Identifier_unknown_(European_value_added_tax_identifier_(The_Netherlands))" - `result.dataDefects.businessRule.ruleStatus` (string) Status of the business rule. Example: "RELEASED" - `result.dataDefects.businessRule.violationMessage` (string) Violation message that is returned with detected data defect. Example: "Business Partner identifier is mandatory." - `result.dataDefects.businessRule.violationLevel` (string) Indicates the criticality of the applied rule. If a data defect was found then user will get , or level. Otherwise, it will be NO_DEFECT. Enum: "NO_DEFECT", "INFO", "WARNING", "ERROR" - `result.dataDefects.executionContextProperties` (array) List of Execution Context Properties. - `result.dataDefects.executionContextProperties.type` (string) Type of the context’s attribute Example: "businessPartner.identifiers.value" - `result.dataDefects.executionContextProperties.value` (string) Value of the context execution attribute Example: "STREET" - `result.dataDefects.categories` (array) List of categories the rule belongs to. - `result.decisions` (array) List of Decisions made by the automation rules. - `result.decisions.properties` (array) Properties which have been involved in the decision-making process. - `result.decisions.properties.content` (string) The current content of the property of the provided JSON. Example: "DE12345678" - `result.decisions.properties.contentSelector` (string) JSON path to the property in the provided JSON object. Example: "$.partnerProfile.minorityIndicator.value" - `result.decisions.properties.name` (string) Name of the property. Example: "Minority Indicator Value" - `result.decisions.properties.url` (string) External documentation URL for this property. Example: "http://meta.cdq.com/Business_Partner/Identifier_Value" - `result.decisions.properties.rootConcept` (object) The Concept is a part of the CDQ data model. - `result.decisions.properties.rootConcept.id` (string) ID which uniquely identifies the content in the (nested) object. Example: "EU_VAT_ID_DE" - `result.decisions.properties.rootConcept.idSelector` (string) JSON path which points to the id. Example: "businessPartner.identifiers[type.technicalKey=EU_VAT_ID_DE].technicalKey" - `result.decisions.properties.rootConcept.name` (string) Display name of the Concept. Example: "Address" - `result.decisions.properties.rootConcept.url` (string) URL to the documentation which summarizes all details of the Business Partner [Concepts](https://meta.cdq.com/Business_partner). Example: "https://meta.cdq.com/Business_partner" - `result.decisions.properties.parentConcept` (object) The Concept is a part of the CDQ data model. - `result.decisions.action` (string) Describes what action, if needed, to take with validated record. Possible values - , . Example: "FULL_CHECK" - `result.decisions.businessRule` (object) Set of information about the Business Rule. - `result.qualificationResult` (object) QualificationResult is created when validation process takes into consideration [rules of category](https://meta.cdq.com/Qualification) and the feature is enabled. Enabling qualification can be done by the profile related to the qualification. QualificationResult contains information about qualification decisions, the data that have been qualified and overall qualification decisions. - `result.qualificationResult.sourceData` (array) List of source data used for qualification. - `result.qualificationResult.sourceData.key` (string) Key of the source data. Example: "addrz1" - `result.qualificationResult.sourceData.value` (string) Value of the source data. Example: "CH-9000" - `result.qualificationResult.formattedSourceData` (object) Contains data that was received from external source (VIES, AT.FON, BZST) in a unified format. - `result.qualificationResult.formattedSourceData.code` (string) Code of Business Partner that was received from external data source. Example: "ATU12345678" - `result.qualificationResult.formattedSourceData.message` (string) Additional message to describe code. Example: "Message to be filled in." - `result.qualificationResult.formattedSourceData.businessPartnerName` (string) Name of Business Partner that was received from external data source. Example: "Muster AG" - `result.qualificationResult.formattedSourceData.postCodeValue` (string) Post Code of Business Partner that was received from external data source. Example: "9000" - `result.qualificationResult.formattedSourceData.thoroughfareValue` (string) Thoroughfare of Business Partner that was received from external data source. Example: "Hauptstrasse" - `result.qualificationResult.formattedSourceData.localityValue` (string) Locality of Business Partner that was received from external data source. Example: "München" - `result.qualificationResult.validatorStatus` (string) Shows if validator source has been or during request. Example: "ONLINE" - `result.qualificationResult.validatorMessage` (string) Additional message to describe validatorStatus. Example: "VAT ID is valid." - `result.qualificationResult.qualifiedBy` (object) Source of the validation. - `result.qualificationResult.qualifiedAt` (string) Date and time of qualification. Example: "2025-09-01T14:16:48Z" - `result.qualificationResult.addressQualification` (string) Qualification results - verifies if the provided element and identifier matches. Enum: "FAILED", "QUALIFIED", "NOT_PROVIDED", "UNKNOWN" - `result.qualificationResult.addressQualificationDetails` (object) Qualification result for address. - `result.qualificationResult.addressQualificationDetails.localityQualification` (string) Qualification results - verifies if the provided element and identifier matches. Enum: "FAILED", "QUALIFIED", "NOT_PROVIDED", "UNKNOWN" - `result.qualificationResult.addressQualificationDetails.postCodeQualification` (string) Qualification results - verifies if the provided element and identifier matches. Enum: "FAILED", "QUALIFIED", "NOT_PROVIDED", "UNKNOWN" - `result.qualificationResult.addressQualificationDetails.thoroughfareNumberQualification` (string) Qualification results - verifies if the provided element and identifier matches. Enum: "FAILED", "QUALIFIED", "NOT_PROVIDED", "UNKNOWN" - `result.qualificationResult.addressQualificationDetails.thoroughfareQualification` (string) Qualification results - verifies if the provided element and identifier matches. Enum: "FAILED", "QUALIFIED", "NOT_PROVIDED", "UNKNOWN" - `result.qualificationResult.identifierValidity` (string) Validity of identifier (syntax, format and not inactive). Enum: "VALID", "INVALID", "UNKNOWN" - `result.qualificationResult.businessPartnerNameQualification` (string) Qualification results - verifies if the provided element and identifier matches. Enum: "FAILED", "QUALIFIED", "NOT_PROVIDED", "UNKNOWN" - `result.qualificationResult.overallQualification` (string) Qualification results - verifies if the provided element and identifier matches. Enum: "FAILED", "QUALIFIED", "NOT_PROVIDED", "UNKNOWN" - `result.summary` (object) Summary of the validation result. - `result.summary.validationLevel` (string) Represents the highest violationLevel available from the available data defects. It can take multiple data defect violation levels and calculate the validationLevel based on those. The priority is: > > > > where means there was a failure in rule execution and validation engine was not able to give the decision based on existing results. is set only when no rules failed and no data defects are present. Example: "ERROR" - `result.summary.dataQualityRecordStatus` (object) Information about the quality of the record, containing more descriptive content as message, technicalKey and description. - `result.summary.dataQualityRecordStatus.name` (string) Name of the data quality record status. Example: "No issues found" - `result.summary.dataQualityRecordStatus.description` (string) Description of the data quality record status. Example: "All rules have been executed, and we have found no data quality issues." - `result.summary.dataQualityRecordStatus.technicalKey` (string) Overall data quality status for validation checks against single business partner. This status is calculated based on validationLevel and rulesInError. Example: "NO_ISSUES_FOUND" - `result.summary.action` (string) Consolidated action over all decisions Example: "FULL_CHECK" - `result.summary.statistics` (object) Statistics of the validation result. - `result.summary.statistics.numberOfInfoDataDefects` (integer) Number of data defects with severity INFO. Example: "10" - `result.summary.statistics.numberOfErrorDataDefects` (integer) Number of data defects with severity ERROR. Example: "10" - `result.summary.statistics.numberOfWarningDataDefects` (integer) Number of data defects with severity WARNING. Example: "10" - `result.debugInfo` (object) Reference implementation how to structure external service responses. Can be activated by a feature . - `result.debugInfo.externalServiceResponses` (array) List of external service responses. - `result.debugInfo.externalServiceResponses.status` (integer) HTTP status code returned from external Data Source. Example: "200" - `result.debugInfo.externalServiceResponses.message` (string) Typically, contains an error message received from external data source, only if returned. Can show CDQ-related messages. Example: "There is no more quota left for this Data Source." - `result.debugInfo.externalServiceResponses.path` (string) When legacy qualification is done with BZST Data Source, then full request path is returned Example: "/data-validation/businesspartners/validate" - `result.debugInfo.externalServiceResponses.details` (string) Additional details about External Service. Example: "Detailed message" - `result.debugInfo.externalServiceResponses.timestamp` (string) The timestamp of execution the request to external Data Source. Example: "2025-09-01T14:16:48Z" - `result.debugInfo.externalServiceResponses.additionalInformation` (array) Any additional information received during the original request. - `result.debugInfo.externalServiceResponses.additionalInformation.key` (string) Property name. Example: "requestId" - `result.debugInfo.externalServiceResponses.additionalInformation.value` (string) Value of given property. Example: "WAPIAAAAYse8yTdE" - `result.debugInfo.businessRulesExecutionSummary` (object) Summary of Business Rules execution. - `result.debugInfo.businessRulesExecutionSummary.numberOfRules` (integer) Number of rules executed. Example: "274" - `result.debugInfo.businessRulesExecutionSummary.numberOfExecutions` (integer) Number of rule executions. Example: "273" - `result.debugInfo.businessRulesExecutionSummary.numberOfFails` (integer) Number of failed rule executions. Example: "1" - `result.debugInfo.businessRulesExecutionSummary.failures` (array) List of failed rules. - `result.debugInfo.businessRulesExecutionSummary.failures.message` (string) Descriptive message, usually an error, with the reason why execution of the rule didn’t succeed. Example: "Message to be filled in." - `result.debugInfo.businessRulesExecutionSummary.failures.externalId` (string) External ID of the Business Partner or Record being validated. Example: "955775" - `result.debugInfo.businessRulesExecutionSummary.warnings` (array) List of data sources used in validation. - `result.debugInfo.businessRulesExecutionSummary.warnings.message` (string) Descriptive message, usually a warning. Example: "Message to be filled in." - `result.debugInfo.businessRulesExecutionSummary.dataSourcesOn` (array) List of data sources used in validation. - `result.debugInfo.businessRulesExecutionSummary.dataSourcesOff` (array) List of data sources not used in validation. - `result.debugInfo.businessRulesExecutionSummary.activatedRules` (array) List of activated rules. Example: ["https://meta.cdq.com/Identifier_unknown_(European_value_added_tax_identifier_(The_Netherlands))"] - `result.debugInfo.businessRulesExecutionSummary.ignoredRules` (array) List of ignored rules. Example: ["https://meta.cdq.com/Identifier_unknown_(European_value_added_tax_identifier_(The_Netherlands))"] - `result.debugInfo.businessRulesExecutionSummary.ruleCategoriesOn` (array) List of activated rule categories. - `result.debugInfo.businessRulesExecutionSummary.violationLevels` (array) Filter for rule violation level (criticality). Example: ["INFO"] - `result.diff` (string) Applicable only for Record Validation when feature is enabled. Contains differences between value stored in CDQ storage and the value that was sent with the request. Example: "{\"Identified_changes\":[{\"op\":\"add\",\"path\":\"/partner/header/objectTask\",\"value\":\"C\"}]}" - `result.businessPartner` (object) An organization which has some degree of involvement with another organization's business dealings. Typically, a company's business partner is another company in the role of a customer, a supplier, a vendor, or a service provider. In the CDL context, the business partner is the core managed entity. A business partner is globally uniquely identifiable by a CDL ID, and all managed information such as addresses, documents, and hierarchies is linked to a business partner. - `result.businessPartner.names` (array) List of names of the Business Partner. Example: ["Corporate Data Quality AG"] - `result.businessPartner.names.shortName` (string) The abbreviated variant of a company's full name. Example: "CDQ AG" - `result.businessPartner.names.type` (object) The type of the name, e.g. a locally used name or an international version. Example: "Local Name" - `result.businessPartner.names.type.url` (string) URL to the documentation which summarizes all details of the [Name Type](https://meta.cdq.com/Business_partner/name/type). Example: "https://meta.cdq.com/Business_partner/name/type" - `result.businessPartner.names.type.name` (string) Display label for the Name Type. Example: "Local Name" - `result.businessPartner.names.type.technicalKey` (string) Technical Keys of the Name Type. Example: "LOCAL" - `result.businessPartner.names.value` (string) The actual name. Example: "Corporate Data Quality AG" - `result.businessPartner.names.language` (object) Naming of a language according to ISO 639-1. - `result.businessPartner.names.language.name` (string) ISO 639-1 name of language. Example: "German" - `result.businessPartner.names.language.technicalKey` (string) ISO 639-1 two-letter code of languages. Example: "DE" - `result.businessPartner.legalForm` (object) The legal form of a [business partner/type/legal entity](https://meta.cdq.com/Business_partner/type/legal_entity) is the form it takes in the eyes of the law governing it. The legal form of a [company](https://meta.cdq.com/Business_partner) is the general type it may legally use to identify itself according to the local, regional, national, or international law governing it. This is normally reflected in the ending abbreviation after the [company](https://meta.cdq.com/Business_partner)'s name (e.g. AG, Inc., LLC, S.A.). Example: "Aktiengesellschaft" - `result.businessPartner.legalForm.name` (string) Display of the Legal Form. Example: "Aktiengesellschaft" - `result.businessPartner.legalForm.mainAbbreviation` (string) The primary abbreviation of a legal form, i.e. the most commonly used abbreviation in a country. Example: "AG" - `result.businessPartner.legalForm.categories` (array) List of categories of the Legal Form. - `result.businessPartner.legalForm.categories.name` (string) Descriptive display name of the Legal Form Category. Example: "Limited Liability Company" - `result.businessPartner.legalForm.categories.shortName` (string) Short display name of the Legal Form Category. Example: "LLC" - `result.businessPartner.legalForm.categories.url` (string) URL to the documentation which summarizes all details of the [Legal Form Category](https://meta.cdq.com/Business_partner/legal_form/category). Example: "https://meta.cdq.com/Business_partner/legal_form/category/technical_key/LF001" - `result.businessPartner.legalForm.categories.technicalKey` (string) Technical Key of the [Legal Form Category](https://meta.cdq.com/Business_partner/legal_form/category). Example: "LIMITED" - `result.businessPartner.legalForm.url` (string) URL to the documentation which summarizes all details of [Legal Form](https://meta.cdq.com/Business_partner/legal_form). Example: "https://meta.cdq.com/Business_partner/legal_form" - `result.businessPartner.legalForm.technicalKey` (string) Technical Key of a Legal Form. Descriptions of below enums contain , and . Example: "DE_9866" - `result.businessPartner.legalForm.cdlElfCode` (string) An unique identifier for CDL managed Legal Forms. Example: "AG" - `result.businessPartner.identifiers` (array) List of identifiers of the Business Partner. Example: ["VAT identification number"] - `result.businessPartner.identifiers.value` (string) Value of the identifier. Example: "CHE-218.608.886 HR/MWST" - `result.businessPartner.identifiers.type` (object) Type of the identifier. Example: "CH_VAT_ID" - `result.businessPartner.identifiers.type.url` (string) URL to the documentation which summarizes all details of an [Identifier](https://meta.cdq.com/Business_partner/identifier/type). Example: "https://meta.cdq.com/Business_partner/identifier/type" - `result.businessPartner.identifiers.type.name` (string) Display label for the Identifier. Example: "CH_VAT_ID" - `result.businessPartner.identifiers.type.technicalKey` (string) Technical key of the type of the Identifier. Example: "CH_VAT_ID" - `result.businessPartner.identifiers.status` (object) Identifier Status refers to the current state of a unique identification number. Example: "ACTIVE" - `result.businessPartner.identifiers.status.name` (string) Display label for the Identifier Status Name. Example: "ACTIVE" - `result.businessPartner.identifiers.status.url` (string) URL to the documentation which summarizes all details of the [Identifier Status](https://meta.cdq.com/Business_partner/identifier/status). Example: "https://meta.cdq.com/Business_partner/identifier/status" - `result.businessPartner.identifiers.status.technicalKey` (string) Technical key of the Identifier Status. Example: "ACTIVE" - `result.businessPartner.identifiers.issuingBody` (object) An Issuing Body is an organization or government institution that is responsible for assigning unique identifiers to individuals, organizations, or objects. Example: "Amtsgericht Aachen" - `result.businessPartner.identifiers.issuingBody.name` (string) Preferred display label for an Issuing Body. Example: "Amtsgericht Aachen" - `result.businessPartner.identifiers.issuingBody.description` (string) Description for an Issuing Body. Example: "Amtsgericht Aachen" - `result.businessPartner.identifiers.issuingBody.url` (string) URL to the documentation which summarizes all details of a [Issuing Body](https://meta.cdq.com/Business_partner/identifier/issuing_body). Example: "https://meta.cdq.com/Business_partner/identifier/issuing_body" - `result.businessPartner.identifiers.issuingBody.technicalKey` (string) Technical key of the Issuing Body. Example: "Amtsgericht Aachen" - `result.businessPartner.identifiers.issuingBody.jurisdiction` (object) The authority of an official organization to make decisions and judgments in a particular administrative area. Example: "Switzerland" - `result.businessPartner.identifiers.issuingBody.jurisdiction.country` (object) Country consisting of the country name and country code (ISO 3166-1 alpha-2). Example: "Switzerland CH" - `result.businessPartner.identifiers.issuingBody.jurisdiction.country.shortName` (string) Country code (ISO 3166-1 alpha-2). Example: "CH" - `result.businessPartner.identifiers.issuingBody.jurisdiction.country.value` (string) Country name (ISO 3166-1 alpha-2). Example: "Switzerland" - `result.businessPartner.identifiers.issuingBody.jurisdiction.administrativeAreas` (array) Example: ["Sankt Gallen"] - `result.businessPartner.identifiers.issuingBody.jurisdiction.administrativeAreas.value` (string) Name of the [Administrative Area](https://meta.cdq.com/Address/administrative_area). Example: "Sankt Gallen" - `result.businessPartner.identifiers.issuingBody.jurisdiction.administrativeAreas.shortName` (string) Abbreviation for the [Administrative Area](https://meta.cdq.com/Address/administrative_area). Example: "SG" - `result.businessPartner.identifiers.issuingBody.jurisdiction.administrativeAreas.fipsCode` (string) FIPS codes are numbers which uniquely identify geographic areas. The number of digits in FIPS codes vary depending on the level of geography. State-level FIPS codes have two digits, county-level FIPS codes have five digits of which the first two are the FIPS code of the state to which the county belongs. Example: "SZ15" - `result.businessPartner.identifiers.issuingBody.jurisdiction.administrativeAreas.isoCode` (string) ISO 3166-2 code which uniquely defines the names of countries and their subdivisions (e.g., provinces or states). Example: "CH-SG" - `result.businessPartner.identifiers.issuingBody.jurisdiction.administrativeAreas.type` (object) Type of the Administrative Area. - `result.businessPartner.identifiers.issuingBody.jurisdiction.administrativeAreas.type.name` (string) Display label for the Administrative Area Type. Example: "COUNTY" - `result.businessPartner.identifiers.issuingBody.jurisdiction.administrativeAreas.type.url` (string) URL to the documentation which summarizes all details of the [Administrative Area](https://meta.cdq.com/Address/administrative_area/type). Example: "https://meta.cdq.com/Address/administrative_area/type" - `result.businessPartner.identifiers.issuingBody.jurisdiction.administrativeAreas.type.technicalKey` (string) Technical key of the Administrative Area. Example: "COUNTY" - `result.businessPartner.identifiers.issuingBody.gleifCode` (string) Code of Global Legal Entity Identifier Foundation (GLEIF) Example: "RA000004" - `result.businessPartner.identifiers.issuingBody.localAuthorityCode` (string) Code of the local registration authority Example: "R3101" - `result.businessPartner.identifiers.issuingBody.externalUrl` (string) External url of the issuing body Example: "https://www.amtsgericht.de/muenchen" - `result.businessPartner.categories` (array) List of categories of the Business Partner. Example: ["Hotel"] - `result.businessPartner.categories.name` (string) Display name of the Business Partner Category Name. Example: "Hotel" - `result.businessPartner.categories.url` (string) URL to the documentation which summarizes all details of the [Business Partner Category](https://meta.cdq.com/Business_partner/category). Example: "https://meta.cdq.com/Business_partner/category" - `result.businessPartner.categories.technicalKey` (string) Technical Key of the Business Partner Category. Example: "HOTEL" - `result.businessPartner.status` (object) Describes the status of a business partner with respect to its level of activity (e.g. out of business) or legally relevant conditions (e.g. in liquidation). - `result.businessPartner.status.officialDenotation` (string) The status as provided by an official register. Example: "Good Standing" - `result.businessPartner.status.validFrom` (string) Describes since when a business partner turned or will turn into the provided status. If no official date is known, the date of changing the status in the CDQ Community Data Pool or an external data source is provided. Example: "2025-09-01T14:16:48Z" - `result.businessPartner.status.validUntil` (string) Describes until when a business partner had a certain status. If no official date is known, the date of changing the status in the CDQ Community Data Pool or an external data source is provided. Example: "2025-09-01T14:16:48Z" - `result.businessPartner.status.type` (object) The standardized status which the business partner currently has. Example: "In Liquidation" - `result.businessPartner.status.type.name` (string) Display name of the Business Partner Status. Example: "In Liquidation" - `result.businessPartner.status.type.url` (string) URL to the documentation which summarizes all details of the [Business Partner Status](https://meta.cdq.com/Business_partner/status/type). Example: "https://meta.cdq.com/Business_partner/status/type" - `result.businessPartner.status.type.technicalKey` (string) Technical Key of the Business Parter Status. Example: "IN_LIQUIDATION" - `result.businessPartner.addresses` (array) List of addresses of the Business Partner. Example: ["Lukasstraße 4, 9008 St. Gallen"] - `result.businessPartner.addresses.version` (object) CDQ supports multiple versions of addresses comprising different charsets and languages. An address version is a unique combination of a character set and a language. Example: "International DE" - `result.businessPartner.addresses.version.characterSet` (object) Character set. - `result.businessPartner.addresses.version.characterSet.name` (string) Name of character set. Supported character sets can be found [here](https://meta.cdq.com/Address/version/character_set). Example: "International" - `result.businessPartner.addresses.version.characterSet.technicalKey` (string) Technical key of character set. Supported character sets can be found [here](https://meta.cdq.com/Address/version/character_set). Example: "INTERNATIONAL" - `result.businessPartner.addresses.identifyingName` (object) An identifying name assigned to an address. In most cases the identifying name refers to the name of a registered agent. Example: "John Doe" - `result.businessPartner.addresses.identifyingName.value` (string) An identifying name assigned to an address. In most cases the identifying name refers to the name of a registered agent. Example: "John Doe" - `result.businessPartner.addresses.externalId` (string) ID the address has in the external system where the record originates from. Example: "1" - `result.businessPartner.addresses.metadata` (object) Specifies the language and primary data provenance. Example: "DE, Google" - `result.businessPartner.addresses.metadata.primaryProvenance` (object) The source of the change/update. Could be the reference data source as VIES or Organization. - `result.businessPartner.addresses.metadata.primaryProvenance.name` (string) Display Name of the Provenance Name. Example: "VIES" - `result.businessPartner.addresses.metadata.primaryProvenance.url` (string) URL to the documentation which summarizes all details of the Provenance Name. Example: "https://meta.cdq.com/index.php?title=Property:Has_prefix&limit=500&offset=0&from=&until=&filter=" - `result.businessPartner.addresses.metadata.primaryProvenance.technicalKey` (string) Technical Key of the Provenance Name. Example: "VIES" - `result.businessPartner.addresses.metadata.primaryProvenance.cdqId` (string) The ID provided for a linkage with the source by CDQ. Example: "VIES:PL8660001429" - `result.businessPartner.addresses.careOf` (object) Signifies an intermediary who is responsible for transferring a piece of mail between the postal system and the final addressee. For example, when the addressee has no standard address, is under a corporate mail system, or is being manually forwarded mail sent to a more accessible location. Example: "CDQ GmbH c/o Product Department" - `result.businessPartner.addresses.careOf.value` (string) Value of the CareOf. Example: "CDQ GmbH c/o Product Department" - `result.businessPartner.addresses.contexts` (array) List of Address contexts. Example: ["Production hall 7, Storage field 8."] - `result.businessPartner.addresses.contexts.value` (string) Value of the Address Context. Example: "Production hall 7, Storage field 8." - `result.businessPartner.addresses.administrativeAreas` (array) List of Administrative Areas. Example: ["Sankt Gallen"] - `result.businessPartner.addresses.postCodes` (array) List of Post Codes. Example: ["9000"] - `result.businessPartner.addresses.postCodes.value` (string) Effective [post code](https://meta.cdq.com/Address/post_code). Example: "9000" - `result.businessPartner.addresses.postCodes.type` (object) Type of the Post Code. - `result.businessPartner.addresses.postCodes.type.name` (string) Display label for the Post Code Type. Example: "Regular" - `result.businessPartner.addresses.postCodes.type.url` (string) URL to the documentation which summarizes all details of the [Administrative Area](https://meta.cdq.com/Address/post_code/type). Example: "https://meta.cdq.com/Address/post_code/type" - `result.businessPartner.addresses.postCodes.type.technicalKey` (string) Technical key of the Post Code. Example: "REGULAR" - `result.businessPartner.addresses.localities` (array) List of Localities. Example: ["Sankt Gallen"] - `result.businessPartner.addresses.localities.type` (object) Type of the Locality. Example: "City" - `result.businessPartner.addresses.localities.type.name` (string) Display label for the Locality Type. Example: "City" - `result.businessPartner.addresses.localities.type.url` (string) URL to the documentation which summarizes all details of the [Locality Type](https://meta.cdq.com/Address/locality/type). Example: "https://meta.cdq.com/Address/locality/type" - `result.businessPartner.addresses.localities.type.technicalKey` (string) Technical Key of the Locality Type. Example: "CITY" - `result.businessPartner.addresses.localities.shortName` (string) Abbreviation of the [Locality](https://meta.cdq.com/Address/locality). Example: "St. Gallen" - `result.businessPartner.addresses.localities.value` (string) Name of the [Locality](https://meta.cdq.com/Address/locality). Example: "Sankt Gallen" - `result.businessPartner.addresses.thoroughfares` (array) List of Thoroughfares. Example: ["Lukasstraße 4"] - `result.businessPartner.addresses.thoroughfares.type` (object) Type of the Thoroughfare. Example: "Industrial zone" - `result.businessPartner.addresses.thoroughfares.type.name` (string) Display label for the Thoroughfare Type Name. Example: "Industrial zone" - `result.businessPartner.addresses.thoroughfares.type.url` (string) URL to the documentation which summarizes all details of the [Thoroughfare Type](https://meta.cdq.com/Address/thoroughfare/type). Example: "https://meta.cdq.com/Address/thoroughfare/type" - `result.businessPartner.addresses.thoroughfares.type.technicalKey` (string) Technical key of the Thoroughfare Type. Example: "INDUSTRIAL_ZONE" - `result.businessPartner.addresses.thoroughfares.shortName` (string) Abbreviation of the [Thoroughfare](https://meta.cdq.com/Address/thoroughfare). Example: "Lukasstr. 4" - `result.businessPartner.addresses.thoroughfares.number` (string) Number of the [Thoroughfare](https://meta.cdq.com/Address/thoroughfare). Example: "4" - `result.businessPartner.addresses.thoroughfares.value` (string) Comprehensive designation of the [Thoroughfare](https://meta.cdq.com/Address/thoroughfare) including the thoroughfare type such as Street, or Rue. Example: "Lukasstraße 4" - `result.businessPartner.addresses.thoroughfares.name` (string) Pure name of the [Thoroughfare](https://meta.cdq.com/Address/thoroughfare) not comprising the thoroughfare type such as Street, or Rue. Example: "Lukasstraße" - `result.businessPartner.addresses.thoroughfares.direction` (string) Direction of the [Thoroughfare](https://meta.cdq.com/Address/thoroughfare). Example: "221-bis Baker Street, North" - `result.businessPartner.addresses.premises` (array) List of Premises. Example: ["Lukasstraße 4, Building 2, Floor 3, Room 4"] - `result.businessPartner.addresses.premises.value` (string) The actual value of a Premise in the language of the address. Example: "Lukasstraße 4" - `result.businessPartner.addresses.premises.shortName` (string) Abbreviation of the Premise. Example: "Lukasstr. 4" - `result.businessPartner.addresses.premises.number` (string) Number of the Premise. Example: "4" - `result.businessPartner.addresses.premises.type` (object) Type of the Premise. Example: "Building" - `result.businessPartner.addresses.premises.type.name` (string) Display label for the Premise Type. Example: "Factory" - `result.businessPartner.addresses.premises.type.url` (string) URL to the documentation which summarizes all details of the [Premise Type](https://meta.cdq.com/Address/premise/type). Example: "https://meta.cdq.com/Address/premise/type" - `result.businessPartner.addresses.premises.type.technicalKey` (string) Technical key of the Premise Type. Example: "FACTORY" - `result.businessPartner.addresses.postalDeliveryPoints` (array) List of Postal Delivery Points. Example: ["Sankt Gallen, Postfach 460"] - `result.businessPartner.addresses.postalDeliveryPoints.type` (object) A single mailbox or other place at which postal mail is delivered. Example: "Sankt Gallen, Postfach 460" - `result.businessPartner.addresses.postalDeliveryPoints.type.name` (string) Display label for the Postal Delivery Point Type. Example: "Mailbox" - `result.businessPartner.addresses.postalDeliveryPoints.type.url` (string) URL to the documentation which summarizes all details of the [Postal Delivery Point](https://meta.cdq.com/Address/postal_delivery_point/type) Example: "https://meta.cdq.com/Address/postal_delivery_point/type" - `result.businessPartner.addresses.postalDeliveryPoints.type.technicalKey` (string) Technical key of the Postal Delivery Point. Example: "MAILBOX" - `result.businessPartner.addresses.postalDeliveryPoints.shortName` (string) Stort name of the [Postal Delivery Point](https://meta.cdq.com/Address/postal_delivery_point). Example: "St Gallen, Postfach 460" - `result.businessPartner.addresses.postalDeliveryPoints.number` (string) Number of the [Postal Delivery Point](https://meta.cdq.com/Address/postal_delivery_point). Example: "460" - `result.businessPartner.addresses.postalDeliveryPoints.value` (string) Value of the [Postal Delivery Point](https://meta.cdq.com/Address/postal_delivery_point). Example: "Postfach" - `result.businessPartner.addresses.openingHours` (array) List of Opening Hours. - `result.businessPartner.addresses.openingHours.openingHour` (string) Company openning hour. Example: "09:00 AM" - `result.businessPartner.addresses.openingHours.closingHour` (string) Company closing hour. Example: "05:00 PM" - `result.businessPartner.addresses.openingHours.weekday` (string) A day in the week in which the company is open. Example: "Monday" - `result.businessPartner.addresses.geographicCoordinates` (object) Decimal geographic coordinates (WGS 84 - reference coordinate system). Example: "47.439549, 9.395275" - `result.businessPartner.addresses.geographicCoordinates.latitude` (number) Plain on the earth's surface north or south of the equator. Example: "47.439549" - `result.businessPartner.addresses.geographicCoordinates.longitude` (number) Plain on the earth's surface east or west of a meridian. Example: "9.395275" - `result.businessPartner.addresses.types` (array) List of types of the Address. Example: ["Legal Address"] - `result.businessPartner.addresses.types.name` (string) Display label for the Address Type. Example: "Legal Address" - `result.businessPartner.addresses.types.url` (string) URL to the documentation which summarizes all details of the [Address Type](https://meta.cdq.com/Address/type). Example: "https://meta.cdq.com/Address/type" - `result.businessPartner.addresses.types.technicalKey` (string) Technical key of the Address Type. Example: "LEGAL_ADDRESS" - `result.businessPartner.addresses.formattedAddress` (object) A formatted address is a structured address of VIES data source. - `result.businessPartner.addresses.formattedAddress.country` (string) Country name. Example: "Switzerland" - `result.businessPartner.addresses.formattedAddress.administrativeArea` (string) A top-level geographical or political area division in a country. Example: "Sankt Gallen" - `result.businessPartner.addresses.formattedAddress.region` (string) Top level subdivision of a country. Example: "Sankt Gallen" - `result.businessPartner.addresses.formattedAddress.regionCode` (string) A country specific code for a certain address in the region. Example: "9004" - `result.businessPartner.addresses.formattedAddress.locality` (string) A locality is a named densely populated area (a place) such as town, village, suburb, etc. A locality composes of many individual addresses. Example: "Sankt Gallen" - `result.businessPartner.addresses.formattedAddress.district` (string) Type of administrative division that, in some countries, is managed by local government. Across the world, areas known as "districts" vary greatly in size, spanning regions or counties, several municipalities, subdivisions of municipalities, school district, or political district. Example: "City center" - `result.businessPartner.addresses.formattedAddress.postalCode` (string) A country specific code for a certain address. Example: "9000" - `result.businessPartner.addresses.formattedAddress.thoroughfare` (string) Details of the access route along which buildings, lots, or land are located, such as street, road, channel, crescent, avenue. Example: "Lukassstrasse" - `result.businessPartner.addresses.formattedAddress.premise` (string) A premise is a tract of land including its buildings. A premise may have several sub-levels to precisely identify. Example: "Lukasstraße 4, Building 2, Floor 3, Room 4" - `result.businessPartner.addresses.formattedAddress.interurbanDeliveryPoint` (string) A single mailbox or other place at which postal mail is delivered. Example: "Sankt Gallen, Postfach 460" - `result.businessPartner.addresses.formattedAddress.mailbox` (string) A location at an address where the post is delivered to. Example: "Postfach 460" - `result.businessPartner.addresses.formattedAddress.postOfficeBox` (string) A uniquely addressable lockable box located on the premises of a post office station. Example: "Postfach 460" - `result.businessPartner.externalId` (string) Arbitrary identifier type to mark customer IDs that are "external" from CDQ's perspective. This is the identifier a customer provides to identify its records. Example: "The ID managed in the customer's SAP systems." - `result.businessPartner.profile` (object) A business partner profile contains important information about a company, such as its classification, tags, contact details, or minority indicator. - `result.businessPartner.profile.contactEmails` (array) List of contact emails of the Business Partner. Example: ["developer-portal@cdq.com"] - `result.businessPartner.profile.contactEmails.value` (string) Value of the email address of the Business Partner. Example: "developer-portal@cdq.com" - `result.businessPartner.formattedSapRecord` (object) Provides business partner and address information in a data structure similar to SAP Business Partner table BUT000 and SAP Business Address Services table ADRC. Field names are equal or very similar to SAP field names in order to simplify field mapping. Data for name and street fields is already split into chunks of max. 35 characters. - `result.businessPartner.formattedSapRecord.name1` (string) A name1 filed of a business partner name. Example: "CDQ AG" - `result.businessPartner.formattedSapRecord.name2` (string) A name2 filed of a business partner name. Example: "CDQ AG" - `result.businessPartner.formattedSapRecord.name3` (string) A name3 filed of a business partner name. Example: "CDQ AG" - `result.businessPartner.formattedSapRecord.name4` (string) A name4 filed of a business partner name. Example: "CDQ AG" - `result.businessPartner.formattedSapRecord.nameCo` (string) The legal form name of a Legal Form. Example: "Aktiengesellschaft" - `result.businessPartner.formattedSapRecord.legalEntity` (string) The legal entity of a Legal Form. Example: "Aktiengesellschaft" - `result.businessPartner.formattedSapRecord.legalForm` (string) The legal form of a Legal Form. Example: "Aktiengesellschaft" - `result.businessPartner.formattedSapRecord.indSector` (string) A business industry or activity classification is a system of categorizing businesses and organizations into specific industries or activities based on their primary products or services, functions, or activities. These classifications are often used by governments, trade organizations, and other institutions to collect and analyze data on economic activity and to track trends and changes in various sectors. Example: "NAF" - `result.businessPartner.formattedSapRecord.narp` (string) An individual person, i.e. not an organization. An individual has no identifiers and has no legal form in its name. Example: "Friedrich Nietzsche" - `result.businessPartner.formattedSapRecord.stceg` (string) VAT registration number. Example: "CHE-218.608.88" - `result.businessPartner.formattedSapRecord.stcd1` (string) Standard tax number field1. Example: "CHE-218.608.88" - `result.businessPartner.formattedSapRecord.stcd2` (string) Standard tax number field2. Example: "CHE-218.608.88" - `result.businessPartner.formattedSapRecord.stcd3` (string) Standard tax number field3. Example: "CHE-218.608.88" - `result.businessPartner.formattedSapRecord.stcd4` (string) Standard tax number field4. Example: "CHE-218.608.88" - `result.businessPartner.formattedSapRecord.stcd5` (string) Standard tax number field5. Example: "CHE-218.608.88" - `result.businessPartner.formattedSapRecord.url` (string) Webpages related to the business partner, e.g. the main corporate website as also provided by some company registers. Example: "www.cdq.com" - `result.businessPartner.formattedSapRecord.telNumber` (string) The main phone number of a business partner, usually some info-line of the headquarter. Example: "+41 71 571 10 40" - `result.businessPartner.formattedSapRecord.countryCode` (string) Country code (ISO 3166-1 alpha-2) Example: "CH" - `result.businessPartner.formattedSapRecord.region` (string) A top-level geographical or political area division in a country. Example: "Sankt Gallen" - `result.businessPartner.formattedSapRecord.regionCodeSap` (string) A Region specific code for a certain address. Example: "9004" - `result.businessPartner.formattedSapRecord.county` (string) A sub-level geographical or political area division in a country. Example: "Sankt Gallen" - `result.businessPartner.formattedSapRecord.countyCode` (string) A county specific code for a certain address in the region. Example: "9004" - `result.businessPartner.formattedSapRecord.township` (string) A sub-level geographical or political area division in a country. Example: "Sankt Gallen" - `result.businessPartner.formattedSapRecord.townshipCode` (string) A township specific code for a certain address in the region. Example: "9004" - `result.businessPartner.formattedSapRecord.city` (string) A locality is a named densely populated area (a place) such as town, village, suburb, etc. A locality composes of many individual addresses. Many localities exist in an [administrative area](https://meta.cdq.com/Address/administrative_area). A locality can also have several levels of sub localities. Example: "Sankt Gallen" - `result.businessPartner.formattedSapRecord.district` (string) Area of a country or city. Example: "St. Georgen" - `result.businessPartner.formattedSapRecord.postalCode3` (string) A country specific code for a certain address. Example: "9000" - `result.businessPartner.formattedSapRecord.street1` (string) Details of the access route along which buildings, lots, or land are located, such as street, road, channel, crescent, avenue, etc. This also includes canals or banks on which houses or boat houses are located where people live. Example: "Lukasstraße 4" - `result.businessPartner.formattedSapRecord.street2` (string) Additional street filed. Example: "Lukasstraße 4" - `result.businessPartner.formattedSapRecord.street5` (string) Additional street filed. Example: "Lukasstraße 4" - `result.businessPartner.formattedSapRecord.houseNum` (string) Number of the Thoroughfare. Example: "4" - `result.businessPartner.formattedSapRecord.houseNum2` (string) Additional number filed. Example: "4" - `result.businessPartner.formattedSapRecord.building` (string) A structure (such as a house, hospital, school, etc.) with a roof and walls that is used as a place for people to live, work, do activities, store things, etc. Example: "Office 2" - `result.businessPartner.formattedSapRecord.floor` (string) The floor/story of the building. Example: "2" - `result.businessPartner.formattedSapRecord.roomnumber` (string) A distinct room in a building. Example: "123" - `result.businessPartner.formattedSapRecord.poBoxCountry` (string) A location at an address where the post is delivered to. Example: "9000" - `result.businessPartner.formattedSapRecord.poBoxCity` (string) A location at an address where the post is delivered to. Example: "9000" - `result.businessPartner.formattedSapRecord.poBoxPostalCode` (string) A location at an address where the post is delivered to. Example: "9000" - `result.businessPartner.formattedSapRecord.poBox` (string) Des Example: "9000" - `result.businessPartner.relations` (array) List of relations of the Business Partner. Example: ["Commercial ultimate"] - `result.businessPartner.relations.startedAt` (string) Describe when this relationship was first established. Example: "2025-09-01T14:16:48Z" - `result.businessPartner.relations.endedAt` (string) Describe when this relationship ended. Example: "2025-09-01T14:16:48Z" - `result.businessPartner.relations.type` (object) Provides information about the type of the relationship between two Business Partners like:\ direct parent/child, ultimate parent, branch. - `result.businessPartner.relations.type.name` (string) Display name of the Business Partner Relation Type. Example: "Commercial ultimate" - `result.businessPartner.relations.type.url` (string) URL to the documentation which summarizes all details of a [Business Partner Relation Type](https://meta.cdq.com/Business_partner/relation/type). Example: "https://meta.cdq.com/Business_partner/relation/type" - `result.businessPartner.relations.type.technicalKey` (string) Technical Key of the Business Partner Relation Type. Example: "COMMERCIAL_ULTIMATE" - `result.businessPartner.relations.class` (object) Provides information about the classification of the relation. - `result.businessPartner.relations.class.name` (string) Display name of the Business Partner Relation Class. Example: "CDQ Hierarchy" - `result.businessPartner.relations.class.url` (string) URL to the documentation which summarizes all details of a [Business Partner Relation Class](https://meta.cdq.com/Business_partner/relation/class). Example: "https://meta.cdq.com/Business_partner/relation/class" - `result.businessPartner.relations.class.technicalKey` (string) Technical Key of the Business Partner Relation Class. Example: "BUSINESS_PARTNER_RELATION_CLASS_CDQ_HIERARCHY" - `result.businessPartner.relations.startNode` (string) It's a number of the business partner that plays a superior role over the other business partner. In means that, the company is parent of the second company (child) and has one of the relationship type like:\ Domestic Ultimate Legal entity or Direct Legal entity. Example: "FR.RC:5664645" - `result.businessPartner.relations.endNode` (string) It's a number of the business partner that plays a subordinate role over the other business partner. In means that, the company is chile of the second company (parent) and has one of the special relationship types. Example: "FR.RC:5664645" - `result.businessPartner.bankAccounts` (array) List of bank accounts of the Business Partner. - `result.businessPartner.bankAccounts.internationalBankAccountIdentifier` (string) The IBAN of a bank account. Example: "CH8800781619278412000" - `result.businessPartner.bankAccounts.internationalBankIdentifier` (string) (BIC/SWIFT) Bank identifier which is globally unique. Example: "KBSGCH22XXX" - `result.businessPartner.bankAccounts.nationalBankAccountIdentifier` (string) Identifier of a bank account in a national context, i.e. for a country. Example: "619278412000" - `result.businessPartner.bankAccounts.nationalBankIdentifier` (string) Bank identifier which is unique in a national context, i.e. for a country. Example: "00781" - `result.businessPartner.bankAccounts.bank` (object) Financial institution that accepts deposits, facilitates withdrawals and transfers, and provides various financial services such as loans, investments, and currency exchange. - `result.businessPartner.bankAccounts.bank.name` (string) The name of a bank. Example: "Sparda Bank" - `result.businessPartner.bankAccounts.bank.branch` (string) The branch of a bank. Example: "Filiale München" - `result.businessPartner.bankAccounts.bank.address` (object) The address where a bank resides. - `result.businessPartner.bankAccounts.bank.address.localities` (array) Example: ["Sankt Gallen"] - `result.businessPartner.bankAccounts.bank.address.postCodes` (array) Example: ["9000"] - `result.businessPartner.bankAccounts.bank.address.thoroughfares` (array) Example: ["Lukasstraße 4"] - `result.businessPartner.bankAccounts.countryCode` (string) ISO code to identify the country a bank account is registered in. Example: "DE" - `result.businessPartner.types` (array) List of types of the Business Partner. - `result.businessPartner.types.name` (string) Display name of the Business Partner Type Name. Example: "Legal Entity" - `result.businessPartner.types.url` (string) URL to the documentation which summarizes all details of a [Buisness Partner Type](https://meta.cdq.com/Business_partner/type). Example: "https://meta.cdq.com/Business_partner/type" - `result.businessPartner.types.technicalKey` (string) Technical key of the Business Partner Type. Example: "LEGAL_ENTITY" - `result.businessPartner.externalContext` (object) Describe own identifiers of a record (others than just the external Id). Example: "LIFNR" - `result.businessPartner.externalContext.identifiers` (array) Example: ["LIFNR"] - `result.businessPartner.externalContext.identifiers.value` (string) Value of own identifiers of a record. Example: "7250017031" - `result.businessPartner.externalContext.identifiers.type` (object) Type of own identifiers of a record. - `result.businessPartner.externalContext.identifiers.type.technicalKey` (string) Technical key for the External Context Identifier Type. Example: "KUNNR" - `result.businessPartner.id` (string) A CDQ ID identifies a business partner uniquely in the context of the Corporate Data League. Example: "63e635235c06b7396330fe40" - `result.businessPartner.lastModifiedAt` (string) Date of modification (ISO 8601-compliant). Example: "2025-09-01T14:16:48Z"