# OrganizationDomainsBulkOwnershipVerificationResource

The `OrganizationDomainsBulkOwnershipVerificationResource` object is the result of a bulk ownership verification flow, such as [prepareOwnershipVerification()](https://clerk.com/docs/astro/reference/objects/organization.md#prepare-ownership-verification) or [attemptOwnershipVerification()](https://clerk.com/docs/astro/reference/objects/organization.md#attempt-ownership-verification), where ownership is verified for several of an Organization's [Verified Domains](https://clerk.com/docs/guides/organizations/add-members/verified-domains.md?sdk=astro) at once. Because the operation can partially succeed, each requested domain is reported in either `data` or `errors`.

## Properties

| Property                     | Type                                                                                                                                 | Description                                                                                                                                                                                                                                                                                                             |
| ---------------------------- | ------------------------------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| <a id="data"></a> `data`     | <code><a href="https://clerk.com/docs/astro/reference/types/organization-domain-resource.md">OrganizationDomainResource</a>[]</code> | The domains that were processed successfully. After [prepareOwnershipVerification()](https://clerk.com/docs/astro/reference/objects/organization.md#prepare-ownership-verification), each domain's `ownershipVerification` carries the `txtRecordName` and `txtRecordValue` that must be published to a DNS TXT record. |
| <a id="errors"></a> `errors` | `{ code: string; id: string; }[]`                                                                                         | The domains that could not be processed. Each entry identifies the domain and the reason it was skipped, while the remaining domains in the batch are still processed.                                                                                                                                                  |
| `errors.code`                | `string`                                                                                                                             | The API error code describing why the domain was skipped, for example `resource_not_found`.                                                                                                                                                                                                                             |
| `errors.id`                  | `string`                                                                                                                             | The unique identifier of the domain that could not be processed.                                                                                                                                                                                                                                                        |

---

## Sitemap

[Overview of all docs pages](https://clerk.com/docs/llms.txt)
