--- id: v2025-base-document title: BaseDocument pagination_label: BaseDocument sidebar_label: BaseDocument sidebar_class_name: powershellsdk keywords: ['powershell', 'PowerShell', 'sdk', 'BaseDocument', 'V2025BaseDocument'] slug: /tools/sdk/powershell/v2025/models/base-document tags: ['SDK', 'Software Development Kit', 'BaseDocument', 'V2025BaseDocument'] --- # BaseDocument ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **Id** | **String** | ID of the referenced object. | [required] **Name** | **String** | The human readable name of the referenced object. | [required] ## Examples - Prepare the resource ```powershell $BaseDocument = Initialize-V2025BaseDocument -Id 2c91808375d8e80a0175e1f88a575222 ` -Name john.doe ``` - Convert the resource to JSON ```powershell $BaseDocument | ConvertTo-JSON ``` [[Back to top]](#)