Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Namespace: microsoft.graph.security.caseManagement
Important
APIs under the /beta version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.
Represents the schema for a date/time custom field on a case form.
Inherits from microsoft.graph.security.caseManagement.customFieldDefinition. Instances appear in the custom-fields collection of a caseTypeConfiguration, differentiated by the @odata.type value #microsoft.graph.security.caseManagement.dateTimeCustomFieldDefinition.
Methods
For methods, see the base type customFieldDefinition.
Properties
| Property | Type | Description |
|---|---|---|
| defaultDateTime | DateTimeOffset | The default date/time value applied to the field on a new case. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. |
| description | String | The field description. Inherited from customFieldDefinition. |
| displayName | String | The field label shown on the case form. Inherited from customFieldDefinition. |
| id | String | The unique identifier of the custom field. Read-only. Inherited from customFieldDefinition. |
| isDisabled | Boolean | true if the field is disabled; otherwise, false. Inherited from customFieldDefinition. |
| isRequired | Boolean | true if a value is required for this field; otherwise, false. Inherited from customFieldDefinition. |
Relationships
None.
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.security.caseManagement.dateTimeCustomFieldDefinition",
"id": "String (identifier)",
"displayName": "String",
"description": "String",
"isRequired": "Boolean",
"isDisabled": "Boolean",
"defaultDateTime": "String (timestamp)"
}