Microsoft Graph · Schema
microsoft.graph.customSecurityAttributeDefinition
Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/microsoft.graph.customSecurityAttributeDefinition",
"title": "microsoft.graph.customSecurityAttributeDefinition",
"allOf": [
{
"$ref": "#/components/schemas/microsoft.graph.entity"
},
{
"title": "customSecurityAttributeDefinition",
"required": [
"@odata.type"
],
"type": "object",
"properties": {
"attributeSet": {
"type": "string",
"description": "Name of the attribute set. Case insensitive."
},
"description": {
"type": "string",
"description": "Description of the custom security attribute. Can be up to 128 characters long and include Unicode characters. Can be changed later.",
"nullable": true
},
"isCollection": {
"type": "boolean",
"description": "Indicates whether multiple values can be assigned to the custom security attribute. Cannot be changed later. If type is set to Boolean, isCollection cannot be set to true."
},
"isSearchable": {
"type": "boolean",
"description": "Indicates whether custom security attribute values are indexed for searching on objects that are assigned attribute values. Cannot be changed later.",
"nullable": true
},
"name": {
"type": "string",
"description": "Name of the custom security attribute. Must be unique within an attribute set. Can be up to 32 characters long and include Unicode characters. Cannot contain spaces or special characters. Cannot be changed later. Case insensitive."
},
"status": {
"type": "string",
"description": "Specifies whether the custom security attribute is active or deactivated. Acceptable values are: Available and Deprecated. Can be changed later."
},
"type": {
"type": "string",
"description": "Data type for the custom security attribute values. Supported types are: Boolean, Integer, and String. Cannot be changed later."
},
"usePreDefinedValuesOnly": {
"type": "boolean",
"description": "Indicates whether only predefined values can be assigned to the custom security attribute. If set to false, free-form values are allowed. Can later be changed from true to false, but cannot be changed from false to true. If type is set to Boolean, usePreDefinedValuesOnly cannot be set to true.",
"nullable": true
},
"allowedValues": {
"type": "array",
"items": {
"$ref": "#/components/schemas/microsoft.graph.allowedValue"
},
"description": "Values that are predefined for this custom security attribute. This navigation property is not returned by default and must be specified in an $expand query. For example, /directory/customSecurityAttributeDefinitions?$expand=allowedValues.",
"x-ms-navigationProperty": true
},
"@odata.type": {
"type": "string"
}
}
}
],
"x-ms-discriminator-value": "#microsoft.graph.customSecurityAttributeDefinition"
}