Microsoft Graph · Schema
certification
Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
Properties
| Name | Type | Description |
|---|---|---|
| certificationDetailsUrl | string | URL that shows certification details for the application. |
| certificationExpirationDateTime | string | The timestamp when the current certification for the application expires. |
| isCertifiedByMicrosoft | boolean | Indicates whether the application is certified by Microsoft. |
| isPublisherAttested | boolean | Indicates whether the application developer or publisher completed Publisher Attestation. |
| lastCertificationDateTime | string | The timestamp when the certification for the application was most recently added or updated. |
| @odata.type | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/microsoft.graph.certification",
"title": "certification",
"required": [
"@odata.type"
],
"type": "object",
"properties": {
"certificationDetailsUrl": {
"type": "string",
"description": "URL that shows certification details for the application.",
"nullable": true,
"readOnly": true
},
"certificationExpirationDateTime": {
"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": "The timestamp when the current certification for the application expires.",
"format": "date-time",
"nullable": true
},
"isCertifiedByMicrosoft": {
"type": "boolean",
"description": "Indicates whether the application is certified by Microsoft.",
"nullable": true,
"readOnly": true
},
"isPublisherAttested": {
"type": "boolean",
"description": "Indicates whether the application developer or publisher completed Publisher Attestation.",
"nullable": true
},
"lastCertificationDateTime": {
"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": "The timestamp when the certification for the application was most recently added or updated.",
"format": "date-time",
"nullable": true
},
"@odata.type": {
"type": "string"
}
}
}