--- id: v2025-target title: Target pagination_label: Target sidebar_label: Target sidebar_class_name: powershellsdk keywords: ['powershell', 'PowerShell', 'sdk', 'Target', 'V2025Target'] slug: /tools/sdk/powershell/v2025/models/target tags: ['SDK', 'Software Development Kit', 'Target', 'V2025Target'] --- # Target ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **Id** | **String** | Target ID | [optional] **Type** | **Enum** [ "APPLICATION", "IDENTITY" ] | Target type | [optional] **Name** | **String** | Target name | [optional] ## Examples - Prepare the resource ```powershell $Target = Initialize-V2025Target -Id c6dc37bf508149b28ce5b7d90ca4bbf9 ` -Type APPLICATION ` -Name Active Directory [source] ``` - Convert the resource to JSON ```powershell $Target | ConvertTo-JSON ``` [[Back to top]](#)