Microsoft Graph · Schema
microsoft.graph.serviceApp
Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/microsoft.graph.serviceApp",
"title": "microsoft.graph.serviceApp",
"allOf": [
{
"$ref": "#/components/schemas/microsoft.graph.entity"
},
{
"title": "serviceApp",
"required": [
"@odata.type"
],
"type": "object",
"properties": {
"application": {
"anyOf": [
{
"$ref": "#/components/schemas/microsoft.graph.identity"
},
{
"type": "object",
"nullable": true
}
],
"description": "The Entra ID application ID."
},
"effectiveDateTime": {
"pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$",
"type": "string",
"description": "Timestamp of the effective activation of the service app.",
"format": "date-time",
"nullable": true
},
"lastModifiedBy": {
"anyOf": [
{
"$ref": "#/components/schemas/microsoft.graph.identitySet"
},
{
"type": "object",
"nullable": true
}
],
"description": "Identity of the person who last modified the entity."
},
"lastModifiedDateTime": {
"pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$",
"type": "string",
"description": "Timestamp of the last modification of the entity.",
"format": "date-time",
"nullable": true
},
"registrationDateTime": {
"pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$",
"type": "string",
"description": "Timestamp of the creation of the service app entity.",
"format": "date-time",
"nullable": true
},
"status": {
"anyOf": [
{
"$ref": "#/components/schemas/microsoft.graph.serviceAppStatus"
},
{
"type": "object",
"nullable": true
}
],
"description": "The status of the service app. This value indicates whether or not the application can be used to control the backup service. The possible values are: inactive, active, pendingActive, pendingInactive, unknownFutureValue."
},
"@odata.type": {
"type": "string"
}
}
}
],
"x-ms-discriminator-value": "#microsoft.graph.serviceApp"
}