Microsoft Graph · Schema
AgreementFileProperties
Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/AgreementFileProperties",
"title": "AgreementFileProperties",
"allOf": [
{
"$ref": "#/components/schemas/Entity"
},
{
"title": "AgreementFileProperties",
"type": "object",
"properties": {
"createdDateTime": {
"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 date time representing when the file was created. Read-only.",
"format": "date-time",
"nullable": true
},
"displayName": {
"type": "string",
"description": "Localized display name of the policy file of an agreement.",
"nullable": true
},
"fileData": {
"anyOf": [
{
"$ref": "#/components/schemas/AgreementFileData"
},
{
"type": "object",
"nullable": true
}
],
"description": "Data that represents the terms of use PDF document."
},
"fileName": {
"type": "string",
"description": "Name of the agreement file.",
"nullable": true
},
"isDefault": {
"type": "boolean",
"description": "If none of the languages matches the client preference, indicates whether this is the default agreement file.",
"nullable": true
},
"isMajorVersion": {
"type": "boolean",
"description": "Indicates whether the agreement file is a major version update.",
"nullable": true
},
"language": {
"type": "string",
"description": "The language of the agreement file in the format languagecode2-country/regioncode2.",
"nullable": true
},
"@odata.type": {
"type": "string"
}
}
}
]
}