| title | validateOperation resource type |
|---|---|
| description | Represents an abstract type for the asynchronous operation that results from any operation that validates data. |
| author | mlafleur |
| ms.localizationpriority | medium |
| ms.subservice | industry-data-etl |
| doc_type | resourcePageType |
| ms.date | 07/22/2024 |
Namespace: microsoft.graph.industryData
[!INCLUDE beta-disclaimer]
Represents an abstract type for the asynchronous operation that results from any operation that validates data.
Inherits from longRunningOperation.
Base type of fileValidateOperation.
| Property | Type | Description |
|---|---|---|
| createdDateTime | DateTimeOffset | The date and time when this operation was created. Inherited from longRunningOperation. |
| errors | microsoft.graph.publicError collection | Set of errors discovered through validation. |
| id | String | The unique identifier for the operation. Inherited from entity. |
| lastActionDateTime | DateTimeOffset | The date and time when the last action was run on this operation. Inherited from longRunningOperation. |
| resourceLocation | String | The canonical URL of the resource. Inherited from longRunningOperation. |
| status | longRunningOperationStatus | The status of the long-running operation. Inherited from longRunningOperation. The possible values are: notStarted, running, succeeded, failed, unknownFutureValue. |
| statusDetail | String | The detail about the status value. Inherited from longRunningOperation. |
| warnings | microsoft.graph.publicError collection | Set of warnings discovered through validation. |
None.
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.industryData.validateOperation",
"createdDateTime": "String (timestamp)",
"errors": [
{
"@odata.type": "microsoft.graph.publicError"
}
],
"id": "String (identifier)",
"lastActionDateTime": "String (timestamp)",
"resourceLocation": "String",
"status": "String",
"statusDetail": "String",
"warnings": [
{
"@odata.type": "microsoft.graph.publicError"
}
]
}