--- id: v2024-remediation-item-details title: RemediationItemDetails pagination_label: RemediationItemDetails sidebar_label: RemediationItemDetails sidebar_class_name: powershellsdk keywords: ['powershell', 'PowerShell', 'sdk', 'RemediationItemDetails', 'V2024RemediationItemDetails'] slug: /tools/sdk/powershell/v2024/models/remediation-item-details tags: ['SDK', 'Software Development Kit', 'RemediationItemDetails', 'V2024RemediationItemDetails'] --- # RemediationItemDetails ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **Id** | **String** | The ID of the certification | [optional] **TargetId** | **String** | The ID of the certification target | [optional] **TargetName** | **String** | The name of the certification target | [optional] **TargetDisplayName** | **String** | The display name of the certification target | [optional] **ApplicationName** | **String** | The name of the application/source | [optional] **AttributeName** | **String** | The name of the attribute being certified | [optional] **AttributeOperation** | **String** | The operation of the certification on the attribute | [optional] **AttributeValue** | **String** | The value of the attribute being certified | [optional] **NativeIdentity** | **String** | The native identity of the target | [optional] ## Examples - Prepare the resource ```powershell $RemediationItemDetails = Initialize-V2024RemediationItemDetails -Id 2c9180835d2e5168015d32f890ca1581 ` -TargetId 2c9180835d2e5168015d32f890ca1581 ` -TargetName john.smith ` -TargetDisplayName emailAddress ` -ApplicationName Active Directory ` -AttributeName phoneNumber ` -AttributeOperation update ` -AttributeValue 512-555-1212 ` -NativeIdentity jason.smith2 ``` - Convert the resource to JSON ```powershell $RemediationItemDetails | ConvertTo-JSON ``` [[Back to top]](#)