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 single-select or multi-select 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.optionsCustomFieldDefinition. The options property lists the allowed values, and defaultValues lists the value or values selected by default.
Methods
For methods, see the base type customFieldDefinition.
Properties
| Property | Type | Description |
|---|---|---|
| defaultValues | String collection | The option value or values selected by default on a new case. |
| 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. |
| options | String collection | The allowed option values a case author can choose from. |
Relationships
None.
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.security.caseManagement.optionsCustomFieldDefinition",
"id": "String (identifier)",
"displayName": "String",
"description": "String",
"isRequired": "Boolean",
"isDisabled": "Boolean",
"options": ["String"],
"defaultValues": ["String"]
}