microsoft_graph 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (49) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +11 -0
  3. data/.rspec +2 -0
  4. data/.travis.yml +4 -0
  5. data/Gemfile +4 -0
  6. data/LICENSE +10 -0
  7. data/README.md +97 -0
  8. data/Rakefile +7 -0
  9. data/data/metadata_v1.0.xml +1687 -0
  10. data/integration_spec/integration_spec_helper.rb +18 -0
  11. data/integration_spec/live_spec.rb +180 -0
  12. data/lib/microsoft_graph.rb +35 -0
  13. data/lib/microsoft_graph/base.rb +110 -0
  14. data/lib/microsoft_graph/base_entity.rb +152 -0
  15. data/lib/microsoft_graph/cached_metadata_directory.rb +3 -0
  16. data/lib/microsoft_graph/class_builder.rb +217 -0
  17. data/lib/microsoft_graph/collection.rb +95 -0
  18. data/lib/microsoft_graph/collection_association.rb +230 -0
  19. data/lib/microsoft_graph/errors.rb +6 -0
  20. data/lib/microsoft_graph/version.rb +3 -0
  21. data/lib/odata.rb +49 -0
  22. data/lib/odata/entity_set.rb +20 -0
  23. data/lib/odata/errors.rb +18 -0
  24. data/lib/odata/navigation_property.rb +30 -0
  25. data/lib/odata/operation.rb +17 -0
  26. data/lib/odata/property.rb +38 -0
  27. data/lib/odata/request.rb +48 -0
  28. data/lib/odata/service.rb +280 -0
  29. data/lib/odata/singleton.rb +20 -0
  30. data/lib/odata/type.rb +25 -0
  31. data/lib/odata/types/collection_type.rb +30 -0
  32. data/lib/odata/types/complex_type.rb +19 -0
  33. data/lib/odata/types/entity_type.rb +33 -0
  34. data/lib/odata/types/enum_type.rb +37 -0
  35. data/lib/odata/types/primitive_type.rb +12 -0
  36. data/lib/odata/types/primitive_types/binary_type.rb +15 -0
  37. data/lib/odata/types/primitive_types/boolean_type.rb +15 -0
  38. data/lib/odata/types/primitive_types/date_time_offset_type.rb +15 -0
  39. data/lib/odata/types/primitive_types/date_type.rb +23 -0
  40. data/lib/odata/types/primitive_types/double_type.rb +16 -0
  41. data/lib/odata/types/primitive_types/guid_type.rb +24 -0
  42. data/lib/odata/types/primitive_types/int_16_type.rb +19 -0
  43. data/lib/odata/types/primitive_types/int_32_type.rb +15 -0
  44. data/lib/odata/types/primitive_types/int_64_type.rb +15 -0
  45. data/lib/odata/types/primitive_types/stream_type.rb +15 -0
  46. data/lib/odata/types/primitive_types/string_type.rb +15 -0
  47. data/microsoft_graph.gemspec +31 -0
  48. data/tasks/update_metadata.rb +17 -0
  49. metadata +232 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 6fac7d4998896c118e4fc35629f009fd3b51fdb8
4
+ data.tar.gz: b79d0b880cd475c895270aa90297656ba84d5942
5
+ SHA512:
6
+ metadata.gz: 87227083e87b6ae23f71592d08262c912faf2ca48508a915358d17928195a1a3c2cc5d8be67efd1d2f1dc592d502640ef672238007dc181c56d455087e3b8817
7
+ data.tar.gz: 4d704b13d74af9c148f62c37edac0538d1c5c84ad19e6c6bf7b5239fd4ca00dbf4e32bb76d6510a288c4f3687823f306c34f4845a3061cce87c1a8980fd57c26
data/.gitignore ADDED
@@ -0,0 +1,11 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ .env
11
+ .DS_Store
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
data/.travis.yml ADDED
@@ -0,0 +1,4 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.2.3
4
+ before_install: gem install bundler -v 1.11.2
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in microsoft_graph_sdk.gemspec
4
+ gemspec
data/LICENSE ADDED
@@ -0,0 +1,10 @@
1
+ msgraph-sdk-ruby
2
+
3
+ Copyright (c) Microsoft Corporation
4
+
5
+ All rights reserved.
6
+
7
+ MIT License
8
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ""Software""), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
9
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
10
+ THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,97 @@
1
+ # Getting started with the Microsoft Graph Client Library for Ruby
2
+
3
+ This client library is a release candidate and is still in preview status, please continue to provide [feedback](https://github.com/microsoftgraph/msgraph-sdk-ruby/issues/new) as we iterate towards a production supported library.
4
+
5
+ ## Installation
6
+ run ```gem install microsoft_graph``` or include ```gem microsoft_graph``` in your gemfile.
7
+ ## Getting started
8
+
9
+ ### Register your application
10
+
11
+ Register your application to use Microsoft Graph API using one of the following
12
+ supported authentication portals:
13
+
14
+ * [Microsoft Application Registration Portal](https://apps.dev.microsoft.com) (**Recommended**):
15
+ Register a new application that authenticates using the v2.0 authentication endpoint. This endpoint autthenticates both personal (Microsoft) and work or school (Azure Active Directory) accounts.
16
+ * [Microsoft Azure Active Directory](https://manage.windowsazure.com): Register
17
+ a new application in your tenant's Active Directory to support work or school
18
+ users for your tenant, or multiple tenants.
19
+
20
+ ### Authenticate for the Microsoft Graph service
21
+
22
+ The Microsoft Graph Client Library for Ruby does not include any default authentication implementations.
23
+ Instead, the user will want to authenticate with the library of their choice, or against the OAuth
24
+ endpoint directly.
25
+
26
+ The recommended library for authenticating against AAD is [ADAL](https://github.com/AzureAD/azure-activedirectory-library-for-ruby).
27
+
28
+ ### Usage example
29
+
30
+ ```ruby
31
+ require 'adal'
32
+ require 'microsoft_graph'
33
+
34
+ # authenticate using ADAL
35
+ username = 'admin@tenant.onmicrosoft.com'
36
+ password = 'xxxxxxxxxxxx'
37
+ client_id = 'xxxxx-xxxx-xxx-xxxxxx-xxxxxxx'
38
+ client_secret = 'xxxXXXxxXXXxxxXXXxxXXXXXXXXxxxxxx='
39
+ tenant = 'tenant.onmicrosoft.com'
40
+ user_cred = ADAL::UserCredential.new(username, password)
41
+ client_cred = ADAL::ClientCredential.new(client_id, client_secret)
42
+ context = ADAL::AuthenticationContext.new(ADAL::Authority::WORLD_WIDE_AUTHORITY, tenant)
43
+ tokens = context.acquire_token_for_user(resource, client_cred, user_cred)
44
+
45
+ # add the access token to the request header
46
+ callback = Proc.new { |r| r.headers["Authorization"] = "Bearer #{tokens.access_token}"
47
+
48
+ graph = MicrosoftGraph.new(
49
+ base_url: "https://graph.microsoft.com/v1.0",
50
+ &callback
51
+ )
52
+
53
+ me = graph.me # get the current user
54
+ puts "Hello, I am #{me.display_name}."
55
+
56
+ me.direct_reports.each do |person|
57
+ puts "How's it going, #{person.display_name}?"
58
+ end
59
+ ```
60
+
61
+ ## Development
62
+
63
+ ### Running Tests
64
+
65
+ #### Unit Tests
66
+
67
+ Run them like this:
68
+
69
+ bundle exec rspec
70
+
71
+ #### Integration Tests
72
+
73
+ The integration tests make real changes in a live account, so don't run them against anything except a dedicated test account.
74
+
75
+ If you are sure you want to run them you need to set up a `.env` file that looks something like this:
76
+
77
+ MS_GRAPH_USERNAME=usernamehere@xxxxx.onmicrosoft.com
78
+ MS_GRAPH_PASSWORD=xxxxxxxxxxxx
79
+ MS_GRAPH_CLIENT_ID=xxxxx-xxxx-xxx-xxxxxx-xxxxxxx
80
+ MS_GRAPH_CLIENT_SECRET="xxxXXXxxXXXxxxXXXxxXXXXXXXXxxxxxx="
81
+ MS_GRAPH_TENANT=xxxxx.onmicrosoft.com
82
+
83
+ Once you have all the right credentials, you can run the integration tests like this:
84
+
85
+ bundle exec rspec integration_spec
86
+
87
+ ## Documentation and resources
88
+
89
+ * [Microsoft Graph API](https://graph.microsoft.io)
90
+
91
+ ## Issues
92
+
93
+ To view or log issues, see [issues](https://github.com/microsoftgraph/msgraph-sdk-ruby/issues).
94
+
95
+ ## License
96
+
97
+ Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT [license](LICENSE).
data/Rakefile ADDED
@@ -0,0 +1,7 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+ require "./tasks/update_metadata"
4
+
5
+ RSpec::Core::RakeTask.new(:spec)
6
+
7
+ task :default => :spec
@@ -0,0 +1,1687 @@
1
+ <?xml version='1.0' encoding='UTF-8'?>
2
+ <edmx:Edmx Version='4.0' xmlns:edmx='http://docs.oasis-open.org/odata/ns/edmx'>
3
+ <edmx:DataServices>
4
+ <Schema Namespace='microsoft.graph' xmlns='http://docs.oasis-open.org/odata/ns/edm'>
5
+ <EnumType Name='bodyType'>
6
+ <Member Name='text' Value='0'/>
7
+ <Member Name='html' Value='1'/>
8
+ </EnumType>
9
+ <EnumType Name='importance'>
10
+ <Member Name='low' Value='0'/>
11
+ <Member Name='normal' Value='1'/>
12
+ <Member Name='high' Value='2'/>
13
+ </EnumType>
14
+ <EnumType Name='calendarColor'>
15
+ <Member Name='lightBlue' Value='0'/>
16
+ <Member Name='lightGreen' Value='1'/>
17
+ <Member Name='lightOrange' Value='2'/>
18
+ <Member Name='lightGray' Value='3'/>
19
+ <Member Name='lightYellow' Value='4'/>
20
+ <Member Name='lightTeal' Value='5'/>
21
+ <Member Name='lightPink' Value='6'/>
22
+ <Member Name='lightBrown' Value='7'/>
23
+ <Member Name='lightRed' Value='8'/>
24
+ <Member Name='maxColor' Value='9'/>
25
+ <Member Name='auto' Value='-1'/>
26
+ </EnumType>
27
+ <EnumType Name='responseType'>
28
+ <Member Name='none' Value='0'/>
29
+ <Member Name='organizer' Value='1'/>
30
+ <Member Name='tentativelyAccepted' Value='2'/>
31
+ <Member Name='accepted' Value='3'/>
32
+ <Member Name='declined' Value='4'/>
33
+ <Member Name='notResponded' Value='5'/>
34
+ </EnumType>
35
+ <EnumType Name='sensitivity'>
36
+ <Member Name='normal' Value='0'/>
37
+ <Member Name='personal' Value='1'/>
38
+ <Member Name='private' Value='2'/>
39
+ <Member Name='confidential' Value='3'/>
40
+ </EnumType>
41
+ <EnumType Name='recurrencePatternType'>
42
+ <Member Name='daily' Value='0'/>
43
+ <Member Name='weekly' Value='1'/>
44
+ <Member Name='absoluteMonthly' Value='2'/>
45
+ <Member Name='relativeMonthly' Value='3'/>
46
+ <Member Name='absoluteYearly' Value='4'/>
47
+ <Member Name='relativeYearly' Value='5'/>
48
+ </EnumType>
49
+ <EnumType Name='dayOfWeek'>
50
+ <Member Name='sunday' Value='0'/>
51
+ <Member Name='monday' Value='1'/>
52
+ <Member Name='tuesday' Value='2'/>
53
+ <Member Name='wednesday' Value='3'/>
54
+ <Member Name='thursday' Value='4'/>
55
+ <Member Name='friday' Value='5'/>
56
+ <Member Name='saturday' Value='6'/>
57
+ </EnumType>
58
+ <EnumType Name='weekIndex'>
59
+ <Member Name='first' Value='0'/>
60
+ <Member Name='second' Value='1'/>
61
+ <Member Name='third' Value='2'/>
62
+ <Member Name='fourth' Value='3'/>
63
+ <Member Name='last' Value='4'/>
64
+ </EnumType>
65
+ <EnumType Name='recurrenceRangeType'>
66
+ <Member Name='endDate' Value='0'/>
67
+ <Member Name='noEnd' Value='1'/>
68
+ <Member Name='numbered' Value='2'/>
69
+ </EnumType>
70
+ <EnumType Name='freeBusyStatus'>
71
+ <Member Name='free' Value='0'/>
72
+ <Member Name='tentative' Value='1'/>
73
+ <Member Name='busy' Value='2'/>
74
+ <Member Name='oof' Value='3'/>
75
+ <Member Name='workingElsewhere' Value='4'/>
76
+ <Member Name='unknown' Value='-1'/>
77
+ </EnumType>
78
+ <EnumType Name='eventType'>
79
+ <Member Name='singleInstance' Value='0'/>
80
+ <Member Name='occurrence' Value='1'/>
81
+ <Member Name='exception' Value='2'/>
82
+ <Member Name='seriesMaster' Value='3'/>
83
+ </EnumType>
84
+ <EnumType Name='attendeeType'>
85
+ <Member Name='required' Value='0'/>
86
+ <Member Name='optional' Value='1'/>
87
+ <Member Name='resource' Value='2'/>
88
+ </EnumType>
89
+ <EnumType Name='meetingMessageType'>
90
+ <Member Name='none' Value='0'/>
91
+ <Member Name='meetingRequest' Value='1'/>
92
+ <Member Name='meetingCancelled' Value='2'/>
93
+ <Member Name='meetingAccepted' Value='3'/>
94
+ <Member Name='meetingTenativelyAccepted' Value='4'/>
95
+ <Member Name='meetingDeclined' Value='5'/>
96
+ </EnumType>
97
+ <EntityType Name='entity' Abstract='true'>
98
+ <Key>
99
+ <PropertyRef Name='id'/>
100
+ </Key>
101
+ <Property Name='id' Type='Edm.String' Nullable='false' Unicode='false'/>
102
+ </EntityType>
103
+ <EntityType Name='directoryObject' BaseType='microsoft.graph.entity' OpenType='true'/>
104
+ <EntityType Name='device' BaseType='microsoft.graph.directoryObject' OpenType='true'>
105
+ <Property Name='accountEnabled' Type='Edm.Boolean'/>
106
+ <Property Name='alternativeSecurityIds' Type='Collection(microsoft.graph.alternativeSecurityId)' Nullable='false'/>
107
+ <Property Name='approximateLastSignInDateTime' Type='Edm.DateTimeOffset'/>
108
+ <Property Name='deviceId' Type='Edm.String' Unicode='false'/>
109
+ <Property Name='deviceMetadata' Type='Edm.String' Unicode='false'/>
110
+ <Property Name='deviceVersion' Type='Edm.Int32'/>
111
+ <Property Name='displayName' Type='Edm.String' Unicode='false'/>
112
+ <Property Name='isCompliant' Type='Edm.Boolean'/>
113
+ <Property Name='isManaged' Type='Edm.Boolean'/>
114
+ <Property Name='onPremisesLastSyncDateTime' Type='Edm.DateTimeOffset'/>
115
+ <Property Name='onPremisesSyncEnabled' Type='Edm.Boolean'/>
116
+ <Property Name='operatingSystem' Type='Edm.String' Unicode='false'/>
117
+ <Property Name='operatingSystemVersion' Type='Edm.String' Unicode='false'/>
118
+ <Property Name='physicalIds' Type='Collection(Edm.String)' Nullable='false' Unicode='false'/>
119
+ <Property Name='trustType' Type='Edm.String' Unicode='false'/>
120
+ <NavigationProperty Name='registeredOwners' Type='Collection(microsoft.graph.directoryObject)'/>
121
+ <NavigationProperty Name='registeredUsers' Type='Collection(microsoft.graph.directoryObject)'/>
122
+ </EntityType>
123
+ <ComplexType Name='alternativeSecurityId'>
124
+ <Property Name='type' Type='Edm.Int32'/>
125
+ <Property Name='identityProvider' Type='Edm.String' Unicode='false'/>
126
+ <Property Name='key' Type='Edm.Binary'/>
127
+ </ComplexType>
128
+ <EntityType Name='directoryRole' BaseType='microsoft.graph.directoryObject' OpenType='true'>
129
+ <Property Name='description' Type='Edm.String' Unicode='false'/>
130
+ <Property Name='displayName' Type='Edm.String' Unicode='false'/>
131
+ <Property Name='roleTemplateId' Type='Edm.String' Unicode='false'/>
132
+ <NavigationProperty Name='members' Type='Collection(microsoft.graph.directoryObject)'/>
133
+ </EntityType>
134
+ <EntityType Name='directoryRoleTemplate' BaseType='microsoft.graph.directoryObject' OpenType='true'>
135
+ <Property Name='description' Type='Edm.String' Unicode='false'/>
136
+ <Property Name='displayName' Type='Edm.String' Unicode='false'/>
137
+ </EntityType>
138
+ <EntityType Name='group' BaseType='microsoft.graph.directoryObject' OpenType='true'>
139
+ <Property Name='description' Type='Edm.String' Unicode='false'/>
140
+ <Property Name='displayName' Type='Edm.String' Unicode='false'/>
141
+ <Property Name='groupTypes' Type='Collection(Edm.String)' Nullable='false' Unicode='false'/>
142
+ <Property Name='mail' Type='Edm.String' Unicode='false'/>
143
+ <Property Name='mailEnabled' Type='Edm.Boolean'/>
144
+ <Property Name='mailNickname' Type='Edm.String' Unicode='false'/>
145
+ <Property Name='onPremisesLastSyncDateTime' Type='Edm.DateTimeOffset'/>
146
+ <Property Name='onPremisesSecurityIdentifier' Type='Edm.String' Unicode='false'/>
147
+ <Property Name='onPremisesSyncEnabled' Type='Edm.Boolean'/>
148
+ <Property Name='proxyAddresses' Type='Collection(Edm.String)' Nullable='false' Unicode='false'/>
149
+ <Property Name='securityEnabled' Type='Edm.Boolean'/>
150
+ <Property Name='visibility' Type='Edm.String' Unicode='false'/>
151
+ <Property Name='allowExternalSenders' Type='Edm.Boolean'/>
152
+ <Property Name='autoSubscribeNewMembers' Type='Edm.Boolean'/>
153
+ <Property Name='isSubscribedByMail' Type='Edm.Boolean'/>
154
+ <Property Name='unseenCount' Type='Edm.Int32'/>
155
+ <NavigationProperty Name='members' Type='Collection(microsoft.graph.directoryObject)'/>
156
+ <NavigationProperty Name='memberOf' Type='Collection(microsoft.graph.directoryObject)'/>
157
+ <NavigationProperty Name='createdOnBehalfOf' Type='microsoft.graph.directoryObject'/>
158
+ <NavigationProperty Name='owners' Type='Collection(microsoft.graph.directoryObject)'/>
159
+ <NavigationProperty Name='threads' Type='Collection(microsoft.graph.conversationThread)' ContainsTarget='true'/>
160
+ <NavigationProperty Name='calendar' Type='microsoft.graph.calendar' ContainsTarget='true'/>
161
+ <NavigationProperty Name='calendarView' Type='Collection(microsoft.graph.event)' ContainsTarget='true'/>
162
+ <NavigationProperty Name='events' Type='Collection(microsoft.graph.event)' ContainsTarget='true'/>
163
+ <NavigationProperty Name='conversations' Type='Collection(microsoft.graph.conversation)' ContainsTarget='true'/>
164
+ <NavigationProperty Name='photo' Type='microsoft.graph.profilePhoto' ContainsTarget='true'/>
165
+ <NavigationProperty Name='acceptedSenders' Type='Collection(microsoft.graph.directoryObject)' ContainsTarget='true'/>
166
+ <NavigationProperty Name='rejectedSenders' Type='Collection(microsoft.graph.directoryObject)' ContainsTarget='true'/>
167
+ <NavigationProperty Name='drive' Type='microsoft.graph.drive' ContainsTarget='true'/>
168
+ </EntityType>
169
+ <EntityType Name='conversationThread' BaseType='microsoft.graph.entity'>
170
+ <Property Name='toRecipients' Type='Collection(microsoft.graph.recipient)' Nullable='false'/>
171
+ <Property Name='topic' Type='Edm.String' Nullable='false' Unicode='false'/>
172
+ <Property Name='hasAttachments' Type='Edm.Boolean' Nullable='false'/>
173
+ <Property Name='lastDeliveredDateTime' Type='Edm.DateTimeOffset' Nullable='false'/>
174
+ <Property Name='uniqueSenders' Type='Collection(Edm.String)' Nullable='false' Unicode='false'/>
175
+ <Property Name='ccRecipients' Type='Collection(microsoft.graph.recipient)' Nullable='false'/>
176
+ <Property Name='preview' Type='Edm.String' Nullable='false' Unicode='false'/>
177
+ <Property Name='isLocked' Type='Edm.Boolean' Nullable='false'/>
178
+ <NavigationProperty Name='posts' Type='Collection(microsoft.graph.post)' ContainsTarget='true'/>
179
+ </EntityType>
180
+ <EntityType Name='calendar' BaseType='microsoft.graph.entity'>
181
+ <Property Name='name' Type='Edm.String' Unicode='false'/>
182
+ <Property Name='color' Type='microsoft.graph.calendarColor'/>
183
+ <Property Name='changeKey' Type='Edm.String' Unicode='false'/>
184
+ <NavigationProperty Name='events' Type='Collection(microsoft.graph.event)' ContainsTarget='true'/>
185
+ <NavigationProperty Name='calendarView' Type='Collection(microsoft.graph.event)' ContainsTarget='true'/>
186
+ </EntityType>
187
+ <EntityType Name='outlookItem' BaseType='microsoft.graph.entity' Abstract='true'>
188
+ <Property Name='createdDateTime' Type='Edm.DateTimeOffset'/>
189
+ <Property Name='lastModifiedDateTime' Type='Edm.DateTimeOffset'/>
190
+ <Property Name='changeKey' Type='Edm.String' Unicode='false'/>
191
+ <Property Name='categories' Type='Collection(Edm.String)' Unicode='false'/>
192
+ </EntityType>
193
+ <EntityType Name='event' BaseType='microsoft.graph.outlookItem'>
194
+ <Property Name='originalStartTimeZone' Type='Edm.String' Unicode='false'/>
195
+ <Property Name='originalEndTimeZone' Type='Edm.String' Unicode='false'/>
196
+ <Property Name='responseStatus' Type='microsoft.graph.responseStatus'/>
197
+ <Property Name='iCalUId' Type='Edm.String' Unicode='false'/>
198
+ <Property Name='reminderMinutesBeforeStart' Type='Edm.Int32'/>
199
+ <Property Name='isReminderOn' Type='Edm.Boolean'/>
200
+ <Property Name='hasAttachments' Type='Edm.Boolean'/>
201
+ <Property Name='subject' Type='Edm.String' Unicode='false'/>
202
+ <Property Name='body' Type='microsoft.graph.itemBody'/>
203
+ <Property Name='bodyPreview' Type='Edm.String' Unicode='false'/>
204
+ <Property Name='importance' Type='microsoft.graph.importance'/>
205
+ <Property Name='sensitivity' Type='microsoft.graph.sensitivity'/>
206
+ <Property Name='start' Type='microsoft.graph.dateTimeTimeZone'/>
207
+ <Property Name='originalStart' Type='Edm.DateTimeOffset'/>
208
+ <Property Name='end' Type='microsoft.graph.dateTimeTimeZone'/>
209
+ <Property Name='location' Type='microsoft.graph.location'/>
210
+ <Property Name='isAllDay' Type='Edm.Boolean'/>
211
+ <Property Name='isCancelled' Type='Edm.Boolean'/>
212
+ <Property Name='isOrganizer' Type='Edm.Boolean'/>
213
+ <Property Name='recurrence' Type='microsoft.graph.patternedRecurrence'/>
214
+ <Property Name='responseRequested' Type='Edm.Boolean'/>
215
+ <Property Name='seriesMasterId' Type='Edm.String' Unicode='false'/>
216
+ <Property Name='showAs' Type='microsoft.graph.freeBusyStatus'/>
217
+ <Property Name='type' Type='microsoft.graph.eventType'/>
218
+ <Property Name='attendees' Type='Collection(microsoft.graph.attendee)'/>
219
+ <Property Name='organizer' Type='microsoft.graph.recipient'/>
220
+ <Property Name='webLink' Type='Edm.String' Unicode='false'/>
221
+ <NavigationProperty Name='calendar' Type='microsoft.graph.calendar' ContainsTarget='true'/>
222
+ <NavigationProperty Name='instances' Type='Collection(microsoft.graph.event)' ContainsTarget='true'/>
223
+ <NavigationProperty Name='attachments' Type='Collection(microsoft.graph.attachment)' ContainsTarget='true'/>
224
+ </EntityType>
225
+ <EntityType Name='conversation' BaseType='microsoft.graph.entity'>
226
+ <Property Name='topic' Type='Edm.String' Nullable='false' Unicode='false'/>
227
+ <Property Name='hasAttachments' Type='Edm.Boolean' Nullable='false'/>
228
+ <Property Name='lastDeliveredDateTime' Type='Edm.DateTimeOffset' Nullable='false'/>
229
+ <Property Name='uniqueSenders' Type='Collection(Edm.String)' Nullable='false' Unicode='false'/>
230
+ <Property Name='preview' Type='Edm.String' Nullable='false' Unicode='false'/>
231
+ <NavigationProperty Name='threads' Type='Collection(microsoft.graph.conversationThread)' ContainsTarget='true'/>
232
+ </EntityType>
233
+ <EntityType Name='profilePhoto' BaseType='microsoft.graph.entity' HasStream='true'>
234
+ <Property Name='height' Type='Edm.Int32'/>
235
+ <Property Name='width' Type='Edm.Int32'/>
236
+ </EntityType>
237
+ <EntityType Name='drive' BaseType='microsoft.graph.entity'>
238
+ <Property Name='driveType' Type='Edm.String' Unicode='false'/>
239
+ <Property Name='owner' Type='microsoft.graph.identitySet'/>
240
+ <Property Name='quota' Type='microsoft.graph.quota'/>
241
+ <NavigationProperty Name='items' Type='Collection(microsoft.graph.driveItem)' ContainsTarget='true'/>
242
+ <NavigationProperty Name='special' Type='Collection(microsoft.graph.driveItem)' ContainsTarget='true'/>
243
+ <NavigationProperty Name='root' Type='microsoft.graph.driveItem' ContainsTarget='true'/>
244
+ </EntityType>
245
+ <EntityType Name='subscribedSku' BaseType='microsoft.graph.entity'>
246
+ <Property Name='capabilityStatus' Type='Edm.String' Unicode='false'/>
247
+ <Property Name='consumedUnits' Type='Edm.Int32'/>
248
+ <Property Name='prepaidUnits' Type='microsoft.graph.licenseUnitsDetail'/>
249
+ <Property Name='servicePlans' Type='Collection(microsoft.graph.servicePlanInfo)' Nullable='false'/>
250
+ <Property Name='skuId' Type='Edm.Guid'/>
251
+ <Property Name='skuPartNumber' Type='Edm.String' Unicode='false'/>
252
+ <Property Name='appliesTo' Type='Edm.String' Unicode='false'/>
253
+ </EntityType>
254
+ <ComplexType Name='licenseUnitsDetail'>
255
+ <Property Name='enabled' Type='Edm.Int32'/>
256
+ <Property Name='suspended' Type='Edm.Int32'/>
257
+ <Property Name='warning' Type='Edm.Int32'/>
258
+ </ComplexType>
259
+ <ComplexType Name='servicePlanInfo'>
260
+ <Property Name='servicePlanId' Type='Edm.Guid'/>
261
+ <Property Name='servicePlanName' Type='Edm.String' Unicode='false'/>
262
+ <Property Name='provisioningStatus' Type='Edm.String' Unicode='false'/>
263
+ <Property Name='appliesTo' Type='Edm.String' Unicode='false'/>
264
+ </ComplexType>
265
+ <EntityType Name='organization' BaseType='microsoft.graph.directoryObject' OpenType='true'>
266
+ <Property Name='assignedPlans' Type='Collection(microsoft.graph.assignedPlan)' Nullable='false'/>
267
+ <Property Name='businessPhones' Type='Collection(Edm.String)' Nullable='false' Unicode='false'/>
268
+ <Property Name='city' Type='Edm.String' Unicode='false'/>
269
+ <Property Name='country' Type='Edm.String' Unicode='false'/>
270
+ <Property Name='countryLetterCode' Type='Edm.String' Unicode='false'/>
271
+ <Property Name='displayName' Type='Edm.String' Unicode='false'/>
272
+ <Property Name='marketingNotificationEmails' Type='Collection(Edm.String)' Nullable='false' Unicode='false'/>
273
+ <Property Name='onPremisesLastSyncDateTime' Type='Edm.DateTimeOffset'/>
274
+ <Property Name='onPremisesSyncEnabled' Type='Edm.Boolean'/>
275
+ <Property Name='postalCode' Type='Edm.String' Unicode='false'/>
276
+ <Property Name='preferredLanguage' Type='Edm.String' Unicode='false'/>
277
+ <Property Name='provisionedPlans' Type='Collection(microsoft.graph.provisionedPlan)' Nullable='false'/>
278
+ <Property Name='securityComplianceNotificationMails' Type='Collection(Edm.String)' Nullable='false' Unicode='false'/>
279
+ <Property Name='securityComplianceNotificationPhones' Type='Collection(Edm.String)' Nullable='false' Unicode='false'/>
280
+ <Property Name='state' Type='Edm.String' Unicode='false'/>
281
+ <Property Name='street' Type='Edm.String' Unicode='false'/>
282
+ <Property Name='technicalNotificationMails' Type='Collection(Edm.String)' Nullable='false' Unicode='false'/>
283
+ <Property Name='verifiedDomains' Type='Collection(microsoft.graph.verifiedDomain)' Nullable='false'/>
284
+ </EntityType>
285
+ <ComplexType Name='assignedPlan'>
286
+ <Property Name='assignedDateTime' Type='Edm.DateTimeOffset'/>
287
+ <Property Name='capabilityStatus' Type='Edm.String' Unicode='false'/>
288
+ <Property Name='service' Type='Edm.String' Unicode='false'/>
289
+ <Property Name='servicePlanId' Type='Edm.Guid'/>
290
+ </ComplexType>
291
+ <ComplexType Name='provisionedPlan'>
292
+ <Property Name='capabilityStatus' Type='Edm.String' Unicode='false'/>
293
+ <Property Name='provisioningStatus' Type='Edm.String' Unicode='false'/>
294
+ <Property Name='service' Type='Edm.String' Unicode='false'/>
295
+ </ComplexType>
296
+ <ComplexType Name='verifiedDomain'>
297
+ <Property Name='capabilities' Type='Edm.String' Unicode='false'/>
298
+ <Property Name='isDefault' Type='Edm.Boolean'/>
299
+ <Property Name='isInitial' Type='Edm.Boolean'/>
300
+ <Property Name='name' Type='Edm.String' Unicode='false'/>
301
+ <Property Name='type' Type='Edm.String' Unicode='false'/>
302
+ </ComplexType>
303
+ <EntityType Name='user' BaseType='microsoft.graph.directoryObject' OpenType='true'>
304
+ <Property Name='accountEnabled' Type='Edm.Boolean'/>
305
+ <Property Name='assignedLicenses' Type='Collection(microsoft.graph.assignedLicense)' Nullable='false'/>
306
+ <Property Name='assignedPlans' Type='Collection(microsoft.graph.assignedPlan)' Nullable='false'/>
307
+ <Property Name='businessPhones' Type='Collection(Edm.String)' Nullable='false' Unicode='false'/>
308
+ <Property Name='city' Type='Edm.String' Unicode='false'/>
309
+ <Property Name='companyName' Type='Edm.String' Unicode='false'/>
310
+ <Property Name='country' Type='Edm.String' Unicode='false'/>
311
+ <Property Name='department' Type='Edm.String' Unicode='false'/>
312
+ <Property Name='displayName' Type='Edm.String' Unicode='false'/>
313
+ <Property Name='givenName' Type='Edm.String' Unicode='false'/>
314
+ <Property Name='jobTitle' Type='Edm.String' Unicode='false'/>
315
+ <Property Name='mail' Type='Edm.String' Unicode='false'/>
316
+ <Property Name='mailNickname' Type='Edm.String' Unicode='false'/>
317
+ <Property Name='mobilePhone' Type='Edm.String' Unicode='false'/>
318
+ <Property Name='onPremisesImmutableId' Type='Edm.String' Unicode='false'/>
319
+ <Property Name='onPremisesLastSyncDateTime' Type='Edm.DateTimeOffset'/>
320
+ <Property Name='onPremisesSecurityIdentifier' Type='Edm.String' Unicode='false'/>
321
+ <Property Name='onPremisesSyncEnabled' Type='Edm.Boolean'/>
322
+ <Property Name='passwordPolicies' Type='Edm.String' Unicode='false'/>
323
+ <Property Name='passwordProfile' Type='microsoft.graph.passwordProfile'/>
324
+ <Property Name='officeLocation' Type='Edm.String' Unicode='false'/>
325
+ <Property Name='postalCode' Type='Edm.String' Unicode='false'/>
326
+ <Property Name='preferredLanguage' Type='Edm.String' Unicode='false'/>
327
+ <Property Name='provisionedPlans' Type='Collection(microsoft.graph.provisionedPlan)' Nullable='false'/>
328
+ <Property Name='proxyAddresses' Type='Collection(Edm.String)' Nullable='false' Unicode='false'/>
329
+ <Property Name='state' Type='Edm.String' Unicode='false'/>
330
+ <Property Name='streetAddress' Type='Edm.String' Unicode='false'/>
331
+ <Property Name='surname' Type='Edm.String' Unicode='false'/>
332
+ <Property Name='usageLocation' Type='Edm.String' Unicode='false'/>
333
+ <Property Name='userPrincipalName' Type='Edm.String' Unicode='false'/>
334
+ <Property Name='userType' Type='Edm.String' Unicode='false'/>
335
+ <Property Name='aboutMe' Type='Edm.String' Unicode='false'/>
336
+ <Property Name='birthday' Type='Edm.DateTimeOffset' Nullable='false'/>
337
+ <Property Name='hireDate' Type='Edm.DateTimeOffset' Nullable='false'/>
338
+ <Property Name='interests' Type='Collection(Edm.String)' Unicode='false'/>
339
+ <Property Name='mySite' Type='Edm.String' Unicode='false'/>
340
+ <Property Name='pastProjects' Type='Collection(Edm.String)' Unicode='false'/>
341
+ <Property Name='preferredName' Type='Edm.String' Unicode='false'/>
342
+ <Property Name='responsibilities' Type='Collection(Edm.String)' Unicode='false'/>
343
+ <Property Name='schools' Type='Collection(Edm.String)' Unicode='false'/>
344
+ <Property Name='skills' Type='Collection(Edm.String)' Unicode='false'/>
345
+ <NavigationProperty Name='ownedDevices' Type='Collection(microsoft.graph.directoryObject)'/>
346
+ <NavigationProperty Name='registeredDevices' Type='Collection(microsoft.graph.directoryObject)'/>
347
+ <NavigationProperty Name='manager' Type='microsoft.graph.directoryObject'/>
348
+ <NavigationProperty Name='directReports' Type='Collection(microsoft.graph.directoryObject)'/>
349
+ <NavigationProperty Name='memberOf' Type='Collection(microsoft.graph.directoryObject)'/>
350
+ <NavigationProperty Name='createdObjects' Type='Collection(microsoft.graph.directoryObject)'/>
351
+ <NavigationProperty Name='ownedObjects' Type='Collection(microsoft.graph.directoryObject)'/>
352
+ <NavigationProperty Name='messages' Type='Collection(microsoft.graph.message)' ContainsTarget='true'/>
353
+ <NavigationProperty Name='mailFolders' Type='Collection(microsoft.graph.mailFolder)' ContainsTarget='true'/>
354
+ <NavigationProperty Name='calendar' Type='microsoft.graph.calendar' ContainsTarget='true'/>
355
+ <NavigationProperty Name='calendars' Type='Collection(microsoft.graph.calendar)' ContainsTarget='true'/>
356
+ <NavigationProperty Name='calendarGroups' Type='Collection(microsoft.graph.calendarGroup)' ContainsTarget='true'/>
357
+ <NavigationProperty Name='calendarView' Type='Collection(microsoft.graph.event)' ContainsTarget='true'/>
358
+ <NavigationProperty Name='events' Type='Collection(microsoft.graph.event)' ContainsTarget='true'/>
359
+ <NavigationProperty Name='contacts' Type='Collection(microsoft.graph.contact)' ContainsTarget='true'/>
360
+ <NavigationProperty Name='contactFolders' Type='Collection(microsoft.graph.contactFolder)' ContainsTarget='true'/>
361
+ <NavigationProperty Name='photo' Type='microsoft.graph.profilePhoto' ContainsTarget='true'/>
362
+ <NavigationProperty Name='drive' Type='microsoft.graph.drive' ContainsTarget='true'/>
363
+ </EntityType>
364
+ <ComplexType Name='assignedLicense'>
365
+ <Property Name='disabledPlans' Type='Collection(Edm.Guid)' Nullable='false'/>
366
+ <Property Name='skuId' Type='Edm.Guid'/>
367
+ </ComplexType>
368
+ <ComplexType Name='passwordProfile'>
369
+ <Property Name='password' Type='Edm.String' Unicode='false'/>
370
+ <Property Name='forceChangePasswordNextSignIn' Type='Edm.Boolean'/>
371
+ </ComplexType>
372
+ <EntityType Name='message' BaseType='microsoft.graph.outlookItem'>
373
+ <Property Name='receivedDateTime' Type='Edm.DateTimeOffset'/>
374
+ <Property Name='sentDateTime' Type='Edm.DateTimeOffset'/>
375
+ <Property Name='hasAttachments' Type='Edm.Boolean'/>
376
+ <Property Name='subject' Type='Edm.String' Unicode='false'/>
377
+ <Property Name='body' Type='microsoft.graph.itemBody'/>
378
+ <Property Name='bodyPreview' Type='Edm.String' Unicode='false'/>
379
+ <Property Name='importance' Type='microsoft.graph.importance'/>
380
+ <Property Name='parentFolderId' Type='Edm.String' Unicode='false'/>
381
+ <Property Name='sender' Type='microsoft.graph.recipient'/>
382
+ <Property Name='from' Type='microsoft.graph.recipient'/>
383
+ <Property Name='toRecipients' Type='Collection(microsoft.graph.recipient)'/>
384
+ <Property Name='ccRecipients' Type='Collection(microsoft.graph.recipient)'/>
385
+ <Property Name='bccRecipients' Type='Collection(microsoft.graph.recipient)'/>
386
+ <Property Name='replyTo' Type='Collection(microsoft.graph.recipient)'/>
387
+ <Property Name='conversationId' Type='Edm.String' Unicode='false'/>
388
+ <Property Name='uniqueBody' Type='microsoft.graph.itemBody'/>
389
+ <Property Name='isDeliveryReceiptRequested' Type='Edm.Boolean'/>
390
+ <Property Name='isReadReceiptRequested' Type='Edm.Boolean'/>
391
+ <Property Name='isRead' Type='Edm.Boolean'/>
392
+ <Property Name='isDraft' Type='Edm.Boolean'/>
393
+ <Property Name='webLink' Type='Edm.String' Unicode='false'/>
394
+ <NavigationProperty Name='attachments' Type='Collection(microsoft.graph.attachment)' ContainsTarget='true'/>
395
+ </EntityType>
396
+ <EntityType Name='mailFolder' BaseType='microsoft.graph.entity'>
397
+ <Property Name='displayName' Type='Edm.String' Unicode='false'/>
398
+ <Property Name='parentFolderId' Type='Edm.String' Unicode='false'/>
399
+ <Property Name='childFolderCount' Type='Edm.Int32'/>
400
+ <Property Name='unreadItemCount' Type='Edm.Int32'/>
401
+ <Property Name='totalItemCount' Type='Edm.Int32'/>
402
+ <NavigationProperty Name='messages' Type='Collection(microsoft.graph.message)' ContainsTarget='true'/>
403
+ <NavigationProperty Name='childFolders' Type='Collection(microsoft.graph.mailFolder)' ContainsTarget='true'/>
404
+ </EntityType>
405
+ <EntityType Name='calendarGroup' BaseType='microsoft.graph.entity'>
406
+ <Property Name='name' Type='Edm.String' Unicode='false'/>
407
+ <Property Name='classId' Type='Edm.Guid'/>
408
+ <Property Name='changeKey' Type='Edm.String' Unicode='false'/>
409
+ <NavigationProperty Name='calendars' Type='Collection(microsoft.graph.calendar)' ContainsTarget='true'/>
410
+ </EntityType>
411
+ <EntityType Name='contact' BaseType='microsoft.graph.outlookItem'>
412
+ <Property Name='parentFolderId' Type='Edm.String' Unicode='false'/>
413
+ <Property Name='birthday' Type='Edm.DateTimeOffset'/>
414
+ <Property Name='fileAs' Type='Edm.String' Unicode='false'/>
415
+ <Property Name='displayName' Type='Edm.String' Unicode='false'/>
416
+ <Property Name='givenName' Type='Edm.String' Unicode='false'/>
417
+ <Property Name='initials' Type='Edm.String' Unicode='false'/>
418
+ <Property Name='middleName' Type='Edm.String' Unicode='false'/>
419
+ <Property Name='nickName' Type='Edm.String' Unicode='false'/>
420
+ <Property Name='surname' Type='Edm.String' Unicode='false'/>
421
+ <Property Name='title' Type='Edm.String' Unicode='false'/>
422
+ <Property Name='yomiGivenName' Type='Edm.String' Unicode='false'/>
423
+ <Property Name='yomiSurname' Type='Edm.String' Unicode='false'/>
424
+ <Property Name='yomiCompanyName' Type='Edm.String' Unicode='false'/>
425
+ <Property Name='generation' Type='Edm.String' Unicode='false'/>
426
+ <Property Name='emailAddresses' Type='Collection(microsoft.graph.emailAddress)'/>
427
+ <Property Name='imAddresses' Type='Collection(Edm.String)' Unicode='false'/>
428
+ <Property Name='jobTitle' Type='Edm.String' Unicode='false'/>
429
+ <Property Name='companyName' Type='Edm.String' Unicode='false'/>
430
+ <Property Name='department' Type='Edm.String' Unicode='false'/>
431
+ <Property Name='officeLocation' Type='Edm.String' Unicode='false'/>
432
+ <Property Name='profession' Type='Edm.String' Unicode='false'/>
433
+ <Property Name='businessHomePage' Type='Edm.String' Unicode='false'/>
434
+ <Property Name='assistantName' Type='Edm.String' Unicode='false'/>
435
+ <Property Name='manager' Type='Edm.String' Unicode='false'/>
436
+ <Property Name='homePhones' Type='Collection(Edm.String)' Unicode='false'/>
437
+ <Property Name='mobilePhone' Type='Edm.String' Unicode='false'/>
438
+ <Property Name='businessPhones' Type='Collection(Edm.String)' Unicode='false'/>
439
+ <Property Name='homeAddress' Type='microsoft.graph.physicalAddress'/>
440
+ <Property Name='businessAddress' Type='microsoft.graph.physicalAddress'/>
441
+ <Property Name='otherAddress' Type='microsoft.graph.physicalAddress'/>
442
+ <Property Name='spouseName' Type='Edm.String' Unicode='false'/>
443
+ <Property Name='personalNotes' Type='Edm.String' Unicode='false'/>
444
+ <Property Name='children' Type='Collection(Edm.String)' Unicode='false'/>
445
+ <NavigationProperty Name='photo' Type='microsoft.graph.profilePhoto' ContainsTarget='true'/>
446
+ </EntityType>
447
+ <EntityType Name='contactFolder' BaseType='microsoft.graph.entity'>
448
+ <Property Name='parentFolderId' Type='Edm.String' Unicode='false'/>
449
+ <Property Name='displayName' Type='Edm.String' Unicode='false'/>
450
+ <NavigationProperty Name='contacts' Type='Collection(microsoft.graph.contact)' ContainsTarget='true'/>
451
+ <NavigationProperty Name='childFolders' Type='Collection(microsoft.graph.contactFolder)' ContainsTarget='true'/>
452
+ </EntityType>
453
+ <EntityType Name='attachment' BaseType='microsoft.graph.entity' Abstract='true'>
454
+ <Property Name='lastModifiedDateTime' Type='Edm.DateTimeOffset'/>
455
+ <Property Name='name' Type='Edm.String' Unicode='false'/>
456
+ <Property Name='contentType' Type='Edm.String' Unicode='false'/>
457
+ <Property Name='size' Type='Edm.Int32' Nullable='false'/>
458
+ <Property Name='isInline' Type='Edm.Boolean' Nullable='false'/>
459
+ </EntityType>
460
+ <ComplexType Name='reminder'>
461
+ <Property Name='eventId' Type='Edm.String' Unicode='false'/>
462
+ <Property Name='eventStartTime' Type='microsoft.graph.dateTimeTimeZone'/>
463
+ <Property Name='eventEndTime' Type='microsoft.graph.dateTimeTimeZone'/>
464
+ <Property Name='changeKey' Type='Edm.String' Unicode='false'/>
465
+ <Property Name='eventSubject' Type='Edm.String' Unicode='false'/>
466
+ <Property Name='eventLocation' Type='microsoft.graph.location'/>
467
+ <Property Name='eventWebLink' Type='Edm.String' Unicode='false'/>
468
+ <Property Name='reminderFireTime' Type='microsoft.graph.dateTimeTimeZone'/>
469
+ </ComplexType>
470
+ <ComplexType Name='dateTimeTimeZone'>
471
+ <Property Name='dateTime' Type='Edm.String' Nullable='false' Unicode='false'/>
472
+ <Property Name='timeZone' Type='Edm.String' Unicode='false'/>
473
+ </ComplexType>
474
+ <ComplexType Name='location'>
475
+ <Property Name='displayName' Type='Edm.String' Unicode='false'/>
476
+ <Property Name='address' Type='microsoft.graph.physicalAddress'/>
477
+ </ComplexType>
478
+ <ComplexType Name='physicalAddress'>
479
+ <Property Name='street' Type='Edm.String' Unicode='false'/>
480
+ <Property Name='city' Type='Edm.String' Unicode='false'/>
481
+ <Property Name='state' Type='Edm.String' Unicode='false'/>
482
+ <Property Name='countryOrRegion' Type='Edm.String' Unicode='false'/>
483
+ <Property Name='postalCode' Type='Edm.String' Unicode='false'/>
484
+ </ComplexType>
485
+ <ComplexType Name='itemBody'>
486
+ <Property Name='contentType' Type='microsoft.graph.bodyType'/>
487
+ <Property Name='content' Type='Edm.String' Unicode='false'/>
488
+ </ComplexType>
489
+ <ComplexType Name='recipient'>
490
+ <Property Name='emailAddress' Type='microsoft.graph.emailAddress'/>
491
+ </ComplexType>
492
+ <ComplexType Name='emailAddress'>
493
+ <Property Name='name' Type='Edm.String' Unicode='false'/>
494
+ <Property Name='address' Type='Edm.String' Unicode='false'/>
495
+ </ComplexType>
496
+ <EntityType Name='fileAttachment' BaseType='microsoft.graph.attachment'>
497
+ <Property Name='contentId' Type='Edm.String' Unicode='false'/>
498
+ <Property Name='contentLocation' Type='Edm.String' Unicode='false'/>
499
+ <Property Name='contentBytes' Type='Edm.Binary'/>
500
+ </EntityType>
501
+ <EntityType Name='itemAttachment' BaseType='microsoft.graph.attachment'>
502
+ <NavigationProperty Name='item' Type='microsoft.graph.outlookItem' ContainsTarget='true'/>
503
+ </EntityType>
504
+ <ComplexType Name='responseStatus'>
505
+ <Property Name='response' Type='microsoft.graph.responseType'/>
506
+ <Property Name='time' Type='Edm.DateTimeOffset'/>
507
+ </ComplexType>
508
+ <ComplexType Name='patternedRecurrence'>
509
+ <Property Name='pattern' Type='microsoft.graph.recurrencePattern'/>
510
+ <Property Name='range' Type='microsoft.graph.recurrenceRange'/>
511
+ </ComplexType>
512
+ <ComplexType Name='recurrencePattern'>
513
+ <Property Name='type' Type='microsoft.graph.recurrencePatternType'/>
514
+ <Property Name='interval' Type='Edm.Int32' Nullable='false'/>
515
+ <Property Name='month' Type='Edm.Int32' Nullable='false'/>
516
+ <Property Name='dayOfMonth' Type='Edm.Int32' Nullable='false'/>
517
+ <Property Name='daysOfWeek' Type='Collection(microsoft.graph.dayOfWeek)'/>
518
+ <Property Name='firstDayOfWeek' Type='microsoft.graph.dayOfWeek'/>
519
+ <Property Name='index' Type='microsoft.graph.weekIndex'/>
520
+ </ComplexType>
521
+ <ComplexType Name='recurrenceRange'>
522
+ <Property Name='type' Type='microsoft.graph.recurrenceRangeType'/>
523
+ <Property Name='startDate' Type='Edm.Date'/>
524
+ <Property Name='endDate' Type='Edm.Date'/>
525
+ <Property Name='recurrenceTimeZone' Type='Edm.String' Unicode='false'/>
526
+ <Property Name='numberOfOccurrences' Type='Edm.Int32' Nullable='false'/>
527
+ </ComplexType>
528
+ <ComplexType Name='attendee' BaseType='microsoft.graph.recipient'>
529
+ <Property Name='status' Type='microsoft.graph.responseStatus'/>
530
+ <Property Name='type' Type='microsoft.graph.attendeeType'/>
531
+ </ComplexType>
532
+ <EntityType Name='eventMessage' BaseType='microsoft.graph.message'>
533
+ <Property Name='meetingMessageType' Type='microsoft.graph.meetingMessageType'/>
534
+ <NavigationProperty Name='event' Type='microsoft.graph.event' ContainsTarget='true'/>
535
+ </EntityType>
536
+ <EntityType Name='referenceAttachment' BaseType='microsoft.graph.attachment'/>
537
+ <EntityType Name='post' BaseType='microsoft.graph.outlookItem'>
538
+ <Property Name='body' Type='microsoft.graph.itemBody'/>
539
+ <Property Name='receivedDateTime' Type='Edm.DateTimeOffset' Nullable='false'/>
540
+ <Property Name='hasAttachments' Type='Edm.Boolean' Nullable='false'/>
541
+ <Property Name='from' Type='microsoft.graph.recipient' Nullable='false'/>
542
+ <Property Name='sender' Type='microsoft.graph.recipient' Nullable='false'/>
543
+ <Property Name='conversationThreadId' Type='Edm.String' Unicode='false'/>
544
+ <Property Name='newParticipants' Type='Collection(microsoft.graph.recipient)' Nullable='false'/>
545
+ <Property Name='conversationId' Type='Edm.String' Unicode='false'/>
546
+ <NavigationProperty Name='inReplyTo' Type='microsoft.graph.post' ContainsTarget='true'/>
547
+ <NavigationProperty Name='attachments' Type='Collection(microsoft.graph.attachment)' ContainsTarget='true'/>
548
+ </EntityType>
549
+ <ComplexType Name='identitySet' OpenType='true'>
550
+ <Property Name='application' Type='microsoft.graph.identity'/>
551
+ <Property Name='device' Type='microsoft.graph.identity'/>
552
+ <Property Name='user' Type='microsoft.graph.identity'/>
553
+ </ComplexType>
554
+ <ComplexType Name='identity'>
555
+ <Property Name='displayName' Type='Edm.String' Unicode='false'/>
556
+ <Property Name='id' Type='Edm.String' Unicode='false'/>
557
+ </ComplexType>
558
+ <ComplexType Name='quota'>
559
+ <Property Name='deleted' Type='Edm.Int64'/>
560
+ <Property Name='remaining' Type='Edm.Int64'/>
561
+ <Property Name='state' Type='Edm.String' Unicode='false'/>
562
+ <Property Name='total' Type='Edm.Int64'/>
563
+ <Property Name='used' Type='Edm.Int64'/>
564
+ </ComplexType>
565
+ <EntityType Name='driveItem' BaseType='microsoft.graph.entity' OpenType='true'>
566
+ <Property Name='content' Type='Edm.Stream'/>
567
+ <Property Name='createdBy' Type='microsoft.graph.identitySet'/>
568
+ <Property Name='createdDateTime' Type='Edm.DateTimeOffset'/>
569
+ <Property Name='cTag' Type='Edm.String' Unicode='false'/>
570
+ <Property Name='description' Type='Edm.String' Unicode='false'/>
571
+ <Property Name='eTag' Type='Edm.String' Unicode='false'/>
572
+ <Property Name='lastModifiedBy' Type='microsoft.graph.identitySet'/>
573
+ <Property Name='lastModifiedDateTime' Type='Edm.DateTimeOffset'/>
574
+ <Property Name='name' Type='Edm.String' Unicode='false'/>
575
+ <Property Name='parentReference' Type='microsoft.graph.itemReference'/>
576
+ <Property Name='size' Type='Edm.Int64'/>
577
+ <Property Name='webDavUrl' Type='Edm.String' Unicode='false'/>
578
+ <Property Name='webUrl' Type='Edm.String' Unicode='false'/>
579
+ <Property Name='audio' Type='microsoft.graph.audio'/>
580
+ <Property Name='deleted' Type='microsoft.graph.deleted'/>
581
+ <Property Name='file' Type='microsoft.graph.file'/>
582
+ <Property Name='fileSystemInfo' Type='microsoft.graph.fileSystemInfo'/>
583
+ <Property Name='folder' Type='microsoft.graph.folder'/>
584
+ <Property Name='image' Type='microsoft.graph.image'/>
585
+ <Property Name='location' Type='microsoft.graph.geoCoordinates'/>
586
+ <Property Name='photo' Type='microsoft.graph.photo'/>
587
+ <Property Name='remoteItem' Type='microsoft.graph.remoteItem'/>
588
+ <Property Name='searchResult' Type='microsoft.graph.searchResult'/>
589
+ <Property Name='shared' Type='microsoft.graph.shared'/>
590
+ <Property Name='specialFolder' Type='microsoft.graph.specialFolder'/>
591
+ <Property Name='video' Type='microsoft.graph.video'/>
592
+ <Property Name='package' Type='microsoft.graph.package'/>
593
+ <NavigationProperty Name='createdByUser' Type='microsoft.graph.user'/>
594
+ <NavigationProperty Name='lastModifiedByUser' Type='microsoft.graph.user'/>
595
+ <NavigationProperty Name='permissions' Type='Collection(microsoft.graph.permission)' ContainsTarget='true'/>
596
+ <NavigationProperty Name='children' Type='Collection(microsoft.graph.driveItem)' ContainsTarget='true'/>
597
+ <NavigationProperty Name='thumbnails' Type='Collection(microsoft.graph.thumbnailSet)' ContainsTarget='true'/>
598
+ </EntityType>
599
+ <ComplexType Name='itemReference'>
600
+ <Property Name='driveId' Type='Edm.String' Unicode='false'/>
601
+ <Property Name='id' Type='Edm.String' Unicode='false'/>
602
+ <Property Name='path' Type='Edm.String' Unicode='false'/>
603
+ </ComplexType>
604
+ <ComplexType Name='audio'>
605
+ <Property Name='album' Type='Edm.String' Unicode='false'/>
606
+ <Property Name='albumArtist' Type='Edm.String' Unicode='false'/>
607
+ <Property Name='artist' Type='Edm.String' Unicode='false'/>
608
+ <Property Name='bitrate' Type='Edm.Int64'/>
609
+ <Property Name='composers' Type='Edm.String' Unicode='false'/>
610
+ <Property Name='copyright' Type='Edm.String' Unicode='false'/>
611
+ <Property Name='disc' Type='Edm.Int16'/>
612
+ <Property Name='discCount' Type='Edm.Int16'/>
613
+ <Property Name='duration' Type='Edm.Int64'/>
614
+ <Property Name='genre' Type='Edm.String' Unicode='false'/>
615
+ <Property Name='hasDrm' Type='Edm.Boolean'/>
616
+ <Property Name='isVariableBitrate' Type='Edm.Boolean'/>
617
+ <Property Name='title' Type='Edm.String' Unicode='false'/>
618
+ <Property Name='track' Type='Edm.Int32'/>
619
+ <Property Name='trackCount' Type='Edm.Int32'/>
620
+ <Property Name='year' Type='Edm.Int32'/>
621
+ </ComplexType>
622
+ <ComplexType Name='deleted'>
623
+ <Property Name='state' Type='Edm.String' Unicode='false'/>
624
+ </ComplexType>
625
+ <ComplexType Name='file'>
626
+ <Property Name='hashes' Type='microsoft.graph.hashes'/>
627
+ <Property Name='mimeType' Type='Edm.String' Unicode='false'/>
628
+ </ComplexType>
629
+ <ComplexType Name='hashes'>
630
+ <Property Name='crc32Hash' Type='Edm.String' Unicode='false'/>
631
+ <Property Name='sha1Hash' Type='Edm.String' Unicode='false'/>
632
+ </ComplexType>
633
+ <ComplexType Name='fileSystemInfo'>
634
+ <Property Name='createdDateTime' Type='Edm.DateTimeOffset'/>
635
+ <Property Name='lastModifiedDateTime' Type='Edm.DateTimeOffset'/>
636
+ </ComplexType>
637
+ <ComplexType Name='folder'>
638
+ <Property Name='childCount' Type='Edm.Int32'/>
639
+ </ComplexType>
640
+ <ComplexType Name='image'>
641
+ <Property Name='height' Type='Edm.Int32'/>
642
+ <Property Name='width' Type='Edm.Int32'/>
643
+ </ComplexType>
644
+ <ComplexType Name='geoCoordinates'>
645
+ <Property Name='altitude' Type='Edm.Double'/>
646
+ <Property Name='latitude' Type='Edm.Double'/>
647
+ <Property Name='longitude' Type='Edm.Double'/>
648
+ </ComplexType>
649
+ <ComplexType Name='photo'>
650
+ <Property Name='cameraMake' Type='Edm.String' Unicode='false'/>
651
+ <Property Name='cameraModel' Type='Edm.String' Unicode='false'/>
652
+ <Property Name='exposureDenominator' Type='Edm.Double'/>
653
+ <Property Name='exposureNumerator' Type='Edm.Double'/>
654
+ <Property Name='focalLength' Type='Edm.Double'/>
655
+ <Property Name='fNumber' Type='Edm.Double'/>
656
+ <Property Name='takenDateTime' Type='Edm.DateTimeOffset'/>
657
+ <Property Name='iso' Type='Edm.Int32'/>
658
+ </ComplexType>
659
+ <ComplexType Name='remoteItem'>
660
+ <Property Name='fileSystemInfo' Type='microsoft.graph.fileSystemInfo'/>
661
+ <Property Name='folder' Type='microsoft.graph.folder'/>
662
+ <Property Name='id' Type='Edm.String' Unicode='false'/>
663
+ <Property Name='parentReference' Type='microsoft.graph.itemReference'/>
664
+ <Property Name='size' Type='Edm.Int64'/>
665
+ </ComplexType>
666
+ <ComplexType Name='searchResult'>
667
+ <Property Name='onClickTelemetryUrl' Type='Edm.String' Unicode='false'/>
668
+ </ComplexType>
669
+ <ComplexType Name='shared'>
670
+ <Property Name='owner' Type='microsoft.graph.identitySet'/>
671
+ <Property Name='scope' Type='Edm.String' Unicode='false'/>
672
+ </ComplexType>
673
+ <ComplexType Name='specialFolder'>
674
+ <Property Name='name' Type='Edm.String' Unicode='false'/>
675
+ </ComplexType>
676
+ <ComplexType Name='video'>
677
+ <Property Name='bitrate' Type='Edm.Int32'/>
678
+ <Property Name='duration' Type='Edm.Int64'/>
679
+ <Property Name='height' Type='Edm.Int32'/>
680
+ <Property Name='width' Type='Edm.Int32'/>
681
+ </ComplexType>
682
+ <ComplexType Name='package'>
683
+ <Property Name='type' Type='Edm.String' Unicode='false'/>
684
+ </ComplexType>
685
+ <EntityType Name='permission' BaseType='microsoft.graph.entity'>
686
+ <Property Name='grantedTo' Type='microsoft.graph.identitySet'/>
687
+ <Property Name='invitation' Type='microsoft.graph.sharingInvitation'/>
688
+ <Property Name='inheritedFrom' Type='microsoft.graph.itemReference'/>
689
+ <Property Name='link' Type='microsoft.graph.sharingLink'/>
690
+ <Property Name='roles' Type='Collection(Edm.String)' Unicode='false'/>
691
+ <Property Name='shareId' Type='Edm.String' Unicode='false'/>
692
+ </EntityType>
693
+ <EntityType Name='thumbnailSet' BaseType='microsoft.graph.entity' OpenType='true'>
694
+ <Property Name='large' Type='microsoft.graph.thumbnail'/>
695
+ <Property Name='medium' Type='microsoft.graph.thumbnail'/>
696
+ <Property Name='small' Type='microsoft.graph.thumbnail'/>
697
+ <Property Name='source' Type='microsoft.graph.thumbnail'/>
698
+ </EntityType>
699
+ <ComplexType Name='sharingInvitation'>
700
+ <Property Name='email' Type='Edm.String' Unicode='false'/>
701
+ <Property Name='redeemedBy' Type='Edm.String' Unicode='false'/>
702
+ <Property Name='signInRequired' Type='Edm.Boolean'/>
703
+ </ComplexType>
704
+ <ComplexType Name='sharingLink'>
705
+ <Property Name='application' Type='microsoft.graph.identity'/>
706
+ <Property Name='type' Type='Edm.String' Unicode='false'/>
707
+ <Property Name='webUrl' Type='Edm.String' Unicode='false'/>
708
+ </ComplexType>
709
+ <ComplexType Name='thumbnail'>
710
+ <Property Name='content' Type='Edm.Stream'/>
711
+ <Property Name='height' Type='Edm.Int32'/>
712
+ <Property Name='url' Type='Edm.String' Unicode='false'/>
713
+ <Property Name='width' Type='Edm.Int32'/>
714
+ </ComplexType>
715
+ <Action Name='checkMemberGroups' IsBound='true'>
716
+ <Parameter Name='bindingParameter' Type='microsoft.graph.directoryObject' Nullable='false'/>
717
+ <Parameter Name='groupIds' Type='Collection(Edm.String)' Nullable='false' Unicode='false'/>
718
+ <ReturnType Type='Collection(Edm.String)' Nullable='false' Unicode='false'/>
719
+ </Action>
720
+ <Action Name='getMemberGroups' IsBound='true'>
721
+ <Parameter Name='bindingParameter' Type='microsoft.graph.directoryObject' Nullable='false'/>
722
+ <Parameter Name='securityEnabledOnly' Type='Edm.Boolean'/>
723
+ <ReturnType Type='Collection(Edm.String)' Nullable='false' Unicode='false'/>
724
+ </Action>
725
+ <Action Name='getMemberObjects' IsBound='true'>
726
+ <Parameter Name='bindingParameter' Type='microsoft.graph.directoryObject' Nullable='false'/>
727
+ <Parameter Name='securityEnabledOnly' Type='Edm.Boolean'/>
728
+ <ReturnType Type='Collection(Edm.String)' Nullable='false' Unicode='false'/>
729
+ </Action>
730
+ <Action Name='assignLicense' IsBound='true'>
731
+ <Parameter Name='bindingParameter' Type='microsoft.graph.user' Nullable='false'/>
732
+ <Parameter Name='addLicenses' Type='Collection(microsoft.graph.assignedLicense)' Nullable='false'/>
733
+ <Parameter Name='removeLicenses' Type='Collection(Edm.Guid)' Nullable='false'/>
734
+ <ReturnType Type='microsoft.graph.user'/>
735
+ </Action>
736
+ <Action Name='changePassword' IsBound='true'>
737
+ <Parameter Name='bindingParameter' Type='microsoft.graph.user' Nullable='false'/>
738
+ <Parameter Name='currentPassword' Type='Edm.String' Unicode='false'/>
739
+ <Parameter Name='newPassword' Type='Edm.String' Unicode='false'/>
740
+ </Action>
741
+ <Action Name='sendMail' IsBound='true' EntitySetPath='bindingParameter'>
742
+ <Parameter Name='bindingParameter' Type='microsoft.graph.user'/>
743
+ <Parameter Name='Message' Type='microsoft.graph.message' Nullable='false'/>
744
+ <Parameter Name='SaveToSentItems' Type='Edm.Boolean'/>
745
+ </Action>
746
+ <Function Name='reminderView' IsBound='true'>
747
+ <Parameter Name='bindingparameter' Type='microsoft.graph.user'/>
748
+ <Parameter Name='StartDateTime' Type='Edm.String' Nullable='false' Unicode='false'/>
749
+ <Parameter Name='EndDateTime' Type='Edm.String' Unicode='false'/>
750
+ <ReturnType Type='Collection(microsoft.graph.reminder)' Nullable='false'/>
751
+ </Function>
752
+ <Action Name='copy' IsBound='true' EntitySetPath='bindingParameter'>
753
+ <Parameter Name='bindingParameter' Type='microsoft.graph.mailFolder'/>
754
+ <Parameter Name='DestinationId' Type='Edm.String' Unicode='false'/>
755
+ <ReturnType Type='microsoft.graph.mailFolder'/>
756
+ </Action>
757
+ <Action Name='move' IsBound='true' EntitySetPath='bindingParameter'>
758
+ <Parameter Name='bindingParameter' Type='microsoft.graph.mailFolder'/>
759
+ <Parameter Name='DestinationId' Type='Edm.String' Unicode='false'/>
760
+ <ReturnType Type='microsoft.graph.mailFolder'/>
761
+ </Action>
762
+ <Action Name='copy' IsBound='true' EntitySetPath='bindingParameter'>
763
+ <Parameter Name='bindingParameter' Type='microsoft.graph.message'/>
764
+ <Parameter Name='DestinationId' Type='Edm.String' Unicode='false'/>
765
+ <ReturnType Type='microsoft.graph.message'/>
766
+ </Action>
767
+ <Action Name='move' IsBound='true' EntitySetPath='bindingParameter'>
768
+ <Parameter Name='bindingParameter' Type='microsoft.graph.message'/>
769
+ <Parameter Name='DestinationId' Type='Edm.String' Unicode='false'/>
770
+ <ReturnType Type='microsoft.graph.message'/>
771
+ </Action>
772
+ <Action Name='createReply' IsBound='true' EntitySetPath='bindingParameter'>
773
+ <Parameter Name='bindingParameter' Type='microsoft.graph.message'/>
774
+ <ReturnType Type='microsoft.graph.message'/>
775
+ </Action>
776
+ <Action Name='createReplyAll' IsBound='true' EntitySetPath='bindingParameter'>
777
+ <Parameter Name='bindingParameter' Type='microsoft.graph.message'/>
778
+ <ReturnType Type='microsoft.graph.message'/>
779
+ </Action>
780
+ <Action Name='createForward' IsBound='true' EntitySetPath='bindingParameter'>
781
+ <Parameter Name='bindingParameter' Type='microsoft.graph.message'/>
782
+ <ReturnType Type='microsoft.graph.message'/>
783
+ </Action>
784
+ <Action Name='reply' IsBound='true' EntitySetPath='bindingParameter'>
785
+ <Parameter Name='bindingParameter' Type='microsoft.graph.message'/>
786
+ <Parameter Name='Comment' Type='Edm.String' Unicode='false'/>
787
+ </Action>
788
+ <Action Name='replyAll' IsBound='true' EntitySetPath='bindingParameter'>
789
+ <Parameter Name='bindingParameter' Type='microsoft.graph.message'/>
790
+ <Parameter Name='Comment' Type='Edm.String' Unicode='false'/>
791
+ </Action>
792
+ <Action Name='forward' IsBound='true' EntitySetPath='bindingParameter'>
793
+ <Parameter Name='bindingParameter' Type='microsoft.graph.message'/>
794
+ <Parameter Name='Comment' Type='Edm.String' Unicode='false'/>
795
+ <Parameter Name='ToRecipients' Type='Collection(microsoft.graph.recipient)'/>
796
+ </Action>
797
+ <Action Name='send' IsBound='true' EntitySetPath='bindingParameter'>
798
+ <Parameter Name='bindingParameter' Type='microsoft.graph.message'/>
799
+ </Action>
800
+ <Action Name='accept' IsBound='true' EntitySetPath='bindingParameter'>
801
+ <Parameter Name='bindingParameter' Type='microsoft.graph.event'/>
802
+ <Parameter Name='Comment' Type='Edm.String' Unicode='false'/>
803
+ <Parameter Name='SendResponse' Type='Edm.Boolean'/>
804
+ </Action>
805
+ <Action Name='decline' IsBound='true' EntitySetPath='bindingParameter'>
806
+ <Parameter Name='bindingParameter' Type='microsoft.graph.event'/>
807
+ <Parameter Name='Comment' Type='Edm.String' Unicode='false'/>
808
+ <Parameter Name='SendResponse' Type='Edm.Boolean'/>
809
+ </Action>
810
+ <Action Name='tentativelyAccept' IsBound='true' EntitySetPath='bindingParameter'>
811
+ <Parameter Name='bindingParameter' Type='microsoft.graph.event'/>
812
+ <Parameter Name='Comment' Type='Edm.String' Unicode='false'/>
813
+ <Parameter Name='SendResponse' Type='Edm.Boolean'/>
814
+ </Action>
815
+ <Action Name='snoozeReminder' IsBound='true' EntitySetPath='bindingParameter'>
816
+ <Parameter Name='bindingParameter' Type='microsoft.graph.event'/>
817
+ <Parameter Name='NewReminderTime' Type='microsoft.graph.dateTimeTimeZone' Nullable='false'/>
818
+ </Action>
819
+ <Action Name='dismissReminder' IsBound='true' EntitySetPath='bindingParameter'>
820
+ <Parameter Name='bindingParameter' Type='microsoft.graph.event'/>
821
+ </Action>
822
+ <Action Name='subscribeByMail' IsBound='true' EntitySetPath='bindingParameter'>
823
+ <Parameter Name='bindingParameter' Type='microsoft.graph.group'/>
824
+ </Action>
825
+ <Action Name='unsubscribeByMail' IsBound='true' EntitySetPath='bindingParameter'>
826
+ <Parameter Name='bindingParameter' Type='microsoft.graph.group'/>
827
+ </Action>
828
+ <Action Name='addFavorite' IsBound='true' EntitySetPath='bindingParameter'>
829
+ <Parameter Name='bindingParameter' Type='microsoft.graph.group'/>
830
+ </Action>
831
+ <Action Name='removeFavorite' IsBound='true' EntitySetPath='bindingParameter'>
832
+ <Parameter Name='bindingParameter' Type='microsoft.graph.group'/>
833
+ </Action>
834
+ <Action Name='resetUnseenCount' IsBound='true' EntitySetPath='bindingParameter'>
835
+ <Parameter Name='bindingParameter' Type='microsoft.graph.group'/>
836
+ </Action>
837
+ <Action Name='reply' IsBound='true' EntitySetPath='bindingParameter/Posts'>
838
+ <Parameter Name='bindingParameter' Type='microsoft.graph.conversationThread'/>
839
+ <Parameter Name='Post' Type='microsoft.graph.post' Nullable='false'/>
840
+ </Action>
841
+ <Action Name='forward' IsBound='true' EntitySetPath='bindingParameter'>
842
+ <Parameter Name='bindingParameter' Type='microsoft.graph.post'/>
843
+ <Parameter Name='Comment' Type='Edm.String' Unicode='false'/>
844
+ <Parameter Name='ToRecipients' Type='Collection(microsoft.graph.recipient)' Nullable='false'/>
845
+ </Action>
846
+ <Action Name='reply' IsBound='true' EntitySetPath='bindingParameter'>
847
+ <Parameter Name='bindingParameter' Type='microsoft.graph.post'/>
848
+ <Parameter Name='Post' Type='microsoft.graph.post' Nullable='false'/>
849
+ </Action>
850
+ <Function Name='search' IsBound='true'>
851
+ <Parameter Name='bindingParameter' Type='microsoft.graph.driveItem' Nullable='false'/>
852
+ <Parameter Name='q' Type='Edm.String' Unicode='false'/>
853
+ <ReturnType Type='Collection(microsoft.graph.driveItem)' Nullable='false'/>
854
+ </Function>
855
+ <Action Name='createLink' IsBound='true'>
856
+ <Parameter Name='bindingParameter' Type='microsoft.graph.driveItem' Nullable='false'/>
857
+ <Parameter Name='type' Type='Edm.String' Nullable='false' Unicode='false'/>
858
+ <Parameter Name='scope' Type='Edm.String' Nullable='false' Unicode='false'/>
859
+ <ReturnType Type='microsoft.graph.permission' Nullable='false'/>
860
+ </Action>
861
+ <Term Name='sourceUrl' Type='Edm.String' AppliesTo='microsoft.graph.item'/>
862
+ <Term Name='downloadUrl' Type='Edm.String' AppliesTo='microsoft.graph.item'/>
863
+ <EntityContainer Name='GraphService'>
864
+ <EntitySet Name='directoryObjects' EntityType='microsoft.graph.directoryObject'/>
865
+ <EntitySet Name='devices' EntityType='microsoft.graph.device'>
866
+ <NavigationPropertyBinding Path='registeredOwners' Target='directoryObjects'/>
867
+ <NavigationPropertyBinding Path='registeredUsers' Target='directoryObjects'/>
868
+ </EntitySet>
869
+ <EntitySet Name='groups' EntityType='microsoft.graph.group'>
870
+ <NavigationPropertyBinding Path='members' Target='directoryObjects'/>
871
+ <NavigationPropertyBinding Path='memberOf' Target='directoryObjects'/>
872
+ <NavigationPropertyBinding Path='createdOnBehalfOf' Target='directoryObjects'/>
873
+ <NavigationPropertyBinding Path='owners' Target='directoryObjects'/>
874
+ <NavigationPropertyBinding Path='microsoft.graph.driveItem/lastModifiedByUser' Target='users'/>
875
+ <NavigationPropertyBinding Path='microsoft.graph.driveItem/createdByUser' Target='users'/>
876
+ </EntitySet>
877
+ <EntitySet Name='directoryRoles' EntityType='microsoft.graph.directoryRole'>
878
+ <NavigationPropertyBinding Path='members' Target='directoryObjects'/>
879
+ </EntitySet>
880
+ <EntitySet Name='directoryRoleTemplates' EntityType='microsoft.graph.directoryRoleTemplate'/>
881
+ <EntitySet Name='organization' EntityType='microsoft.graph.organization'/>
882
+ <EntitySet Name='subscribedSkus' EntityType='microsoft.graph.subscribedSku'/>
883
+ <EntitySet Name='users' EntityType='microsoft.graph.user'>
884
+ <NavigationPropertyBinding Path='ownedDevices' Target='directoryObjects'/>
885
+ <NavigationPropertyBinding Path='registeredDevices' Target='directoryObjects'/>
886
+ <NavigationPropertyBinding Path='manager' Target='directoryObjects'/>
887
+ <NavigationPropertyBinding Path='directReports' Target='directoryObjects'/>
888
+ <NavigationPropertyBinding Path='memberOf' Target='directoryObjects'/>
889
+ <NavigationPropertyBinding Path='createdObjects' Target='directoryObjects'/>
890
+ <NavigationPropertyBinding Path='ownedObjects' Target='directoryObjects'/>
891
+ <NavigationPropertyBinding Path='microsoft.graph.driveItem/lastModifiedByUser' Target='users'/>
892
+ <NavigationPropertyBinding Path='microsoft.graph.driveItem/createdByUser' Target='users'/>
893
+ </EntitySet>
894
+ <EntitySet Name='drives' EntityType='microsoft.graph.drive'>
895
+ <NavigationPropertyBinding Path='microsoft.graph.driveItem/lastModifiedByUser' Target='users'/>
896
+ <NavigationPropertyBinding Path='microsoft.graph.driveItem/createdByUser' Target='users'/>
897
+ </EntitySet>
898
+ <Singleton Name='me' Type='microsoft.graph.user'>
899
+ <NavigationPropertyBinding Path='ownedDevices' Target='directoryObjects'/>
900
+ <NavigationPropertyBinding Path='registeredDevices' Target='directoryObjects'/>
901
+ <NavigationPropertyBinding Path='manager' Target='directoryObjects'/>
902
+ <NavigationPropertyBinding Path='directReports' Target='directoryObjects'/>
903
+ <NavigationPropertyBinding Path='memberOf' Target='directoryObjects'/>
904
+ <NavigationPropertyBinding Path='createdObjects' Target='directoryObjects'/>
905
+ <NavigationPropertyBinding Path='ownedObjects' Target='directoryObjects'/>
906
+ </Singleton>
907
+ <Singleton Name='drive' Type='microsoft.graph.drive'>
908
+ <NavigationPropertyBinding Path='microsoft.graph.driveItem/lastModifiedByUser' Target='users'/>
909
+ <NavigationPropertyBinding Path='microsoft.graph.driveItem/createdByUser' Target='users'/>
910
+ </Singleton>
911
+ </EntityContainer>
912
+ <Annotations Target='microsoft.graph.directoryObject'>
913
+ <Annotation Term='Org.OData.Capabilities.V1.ExpandRestrictions'>
914
+ <Record>
915
+ <PropertyValue Property='Expandable' Bool='false'/>
916
+ </Record>
917
+ </Annotation>
918
+ <Annotation Term='Org.OData.Capabilities.V1.NavigationRestrictions'>
919
+ <Record>
920
+ <PropertyValue Property='Referenceable' Bool='false'/>
921
+ </Record>
922
+ </Annotation>
923
+ <Annotation Term='Org.OData.Capabilities.V1.SelectRestrictions'>
924
+ <Record>
925
+ <PropertyValue Property='Selectable' Bool='false'/>
926
+ </Record>
927
+ </Annotation>
928
+ <Annotation Term='Org.OData.Capabilities.V1.CountRestrictions'>
929
+ <Record>
930
+ <PropertyValue Property='Countable' Bool='false'/>
931
+ </Record>
932
+ </Annotation>
933
+ <Annotation Term='Org.OData.Capabilities.V1.FilterRestrictions'>
934
+ <Record>
935
+ <PropertyValue Property='Filterable' Bool='false'/>
936
+ </Record>
937
+ </Annotation>
938
+ <Annotation Term='Org.OData.Capabilities.V1.SkipSupported' Bool='false'/>
939
+ <Annotation Term='Microsoft.Graph.Validator.CreateSupported' Bool='false'/>
940
+ </Annotations>
941
+ <Annotations Target='microsoft.graph.device'>
942
+ <Annotation Term='Microsoft.Graph.Validator.CreateSupported' Bool='true'/>
943
+ </Annotations>
944
+ <Annotations Target='microsoft.graph.device/accountEnabled'>
945
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
946
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='true'/>
947
+ </Annotations>
948
+ <Annotations Target='microsoft.graph.alternativeSecurityId/type'>
949
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
950
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='2'/>
951
+ </Annotations>
952
+ <Annotations Target='microsoft.graph.alternativeSecurityId/key'>
953
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
954
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='{base64Random}'/>
955
+ </Annotations>
956
+ <Annotations Target='microsoft.graph.device/alternativeSecurityIds'>
957
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
958
+ </Annotations>
959
+ <Annotations Target='microsoft.graph.device/deviceId'>
960
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
961
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='{guid}'/>
962
+ </Annotations>
963
+ <Annotations Target='microsoft.graph.device/displayName'>
964
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
965
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='{random}'/>
966
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
967
+ <Annotation Term='Microsoft.Graph.Validator.UpdateValue' String='update_{random}'/>
968
+ </Annotations>
969
+ <Annotations Target='microsoft.graph.device/operatingSystem'>
970
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
971
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='linux'/>
972
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
973
+ <Annotation Term='Microsoft.Graph.Validator.UpdateValue' String='win'/>
974
+ </Annotations>
975
+ <Annotations Target='microsoft.graph.device/operatingSystemVersion'>
976
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
977
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='win8'/>
978
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
979
+ <Annotation Term='Microsoft.Graph.Validator.UpdateValue' String='win10'/>
980
+ </Annotations>
981
+ <Annotations Target='microsoft.graph.device/registeredOwners'>
982
+ <Annotation Term='Microsoft.Graph.Validator.ReadOnly' String='true'/>
983
+ </Annotations>
984
+ <Annotations Target='microsoft.graph.device/registeredUsers'>
985
+ <Annotation Term='Microsoft.Graph.Validator.ReadOnly' String='true'/>
986
+ </Annotations>
987
+ <Annotations Target='microsoft.graph.directoryRole'>
988
+ <Annotation Term='Org.OData.Capabilities.V1.TopSupported' Bool='false'/>
989
+ </Annotations>
990
+ <Annotations Target='microsoft.graph.directoryRoleTemplate'>
991
+ <Annotation Term='Org.OData.Capabilities.V1.TopSupported' Bool='false'/>
992
+ </Annotations>
993
+ <Annotations Target='microsoft.graph.group'>
994
+ <Annotation Term='Microsoft.Graph.Validator.CreateSupported' Bool='true'/>
995
+ </Annotations>
996
+ <Annotations Target='microsoft.graph.group/displayName'>
997
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
998
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='{random}'/>
999
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1000
+ <Annotation Term='Microsoft.Graph.Validator.UpdateValue' String='update_{random}'/>
1001
+ </Annotations>
1002
+ <Annotations Target='microsoft.graph.group/groupTypes'>
1003
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1004
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='[&quot;unified&quot;]'/>
1005
+ </Annotations>
1006
+ <Annotations Target='microsoft.graph.group/mailEnabled'>
1007
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1008
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='true'/>
1009
+ </Annotations>
1010
+ <Annotations Target='microsoft.graph.group/mailNickname'>
1011
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1012
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='{random}'/>
1013
+ </Annotations>
1014
+ <Annotations Target='microsoft.graph.group/securityEnabled'>
1015
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1016
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='true'/>
1017
+ </Annotations>
1018
+ <Annotations Target='microsoft.graph.group/visibility'>
1019
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1020
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='public'/>
1021
+ </Annotations>
1022
+ <Annotations Target='microsoft.graph.group/members'>
1023
+ <Annotation Term='Microsoft.Graph.Validator.CreateSupported' Bool='true'/>
1024
+ <Annotation Term='Microsoft.Graph.Validator.TargetEntities' String='microsoft.graph.user'/>
1025
+ </Annotations>
1026
+ <Annotations Target='microsoft.graph.group/memberOf'>
1027
+ <Annotation Term='Microsoft.Graph.Validator.ReadOnly' String='true'/>
1028
+ </Annotations>
1029
+ <Annotations Target='microsoft.graph.group/createdOnBehalfOf'>
1030
+ <Annotation Term='Microsoft.Graph.Validator.ReadOnly' String='true'/>
1031
+ </Annotations>
1032
+ <Annotations Target='microsoft.graph.group/owners'>
1033
+ <Annotation Term='Microsoft.Graph.Validator.TargetEntities' String='microsoft.graph.user'/>
1034
+ </Annotations>
1035
+ <Annotations Target='microsoft.graph.group/threads'>
1036
+ <Annotation Term='Microsoft.Graph.Validator.TargetEntities' String='microsoft.graph.conversationThread'/>
1037
+ </Annotations>
1038
+ <Annotations Target='microsoft.graph.group/calendarView'>
1039
+ <Annotation Term='Microsoft.Graph.Validator.TargetEntities' String='microsoft.graph.event'/>
1040
+ </Annotations>
1041
+ <Annotations Target='microsoft.graph.group/events'>
1042
+ <Annotation Term='Microsoft.Graph.Validator.TargetEntities' String='microsoft.graph.event'/>
1043
+ </Annotations>
1044
+ <Annotations Target='microsoft.graph.group/conversations'>
1045
+ <Annotation Term='Microsoft.Graph.Validator.TargetEntities' String='microsoft.graph.conversation'/>
1046
+ </Annotations>
1047
+ <Annotations Target='microsoft.graph.group/photo'>
1048
+ <Annotation Term='Microsoft.Graph.Validator.TargetEntities' String='microsoft.graph.profilePhoto'/>
1049
+ </Annotations>
1050
+ <Annotations Target='microsoft.graph.group/acceptedSenders'>
1051
+ <Annotation Term='Microsoft.Graph.Validator.TargetEntities' String='microsoft.graph.user,microsoft.graph.group'/>
1052
+ </Annotations>
1053
+ <Annotations Target='microsoft.graph.group/rejectedSenders'>
1054
+ <Annotation Term='Microsoft.Graph.Validator.TargetEntities' String='microsoft.graph.user,microsoft.graph.group'/>
1055
+ </Annotations>
1056
+ <Annotations Target='microsoft.graph.subscribedSku'>
1057
+ <Annotation Term='Org.OData.Capabilities.V1.ExpandRestrictions'>
1058
+ <Record>
1059
+ <PropertyValue Property='Expandable' Bool='false'/>
1060
+ </Record>
1061
+ </Annotation>
1062
+ <Annotation Term='Org.OData.Capabilities.V1.NavigationRestrictions'>
1063
+ <Record>
1064
+ <PropertyValue Property='Referenceable' Bool='false'/>
1065
+ </Record>
1066
+ </Annotation>
1067
+ <Annotation Term='Org.OData.Capabilities.V1.SelectRestrictions'>
1068
+ <Record>
1069
+ <PropertyValue Property='Selectable' Bool='false'/>
1070
+ </Record>
1071
+ </Annotation>
1072
+ <Annotation Term='Org.OData.Capabilities.V1.CountRestrictions'>
1073
+ <Record>
1074
+ <PropertyValue Property='Countable' Bool='false'/>
1075
+ </Record>
1076
+ </Annotation>
1077
+ <Annotation Term='Org.OData.Capabilities.V1.FilterRestrictions'>
1078
+ <Record>
1079
+ <PropertyValue Property='Filterable' Bool='false'/>
1080
+ </Record>
1081
+ </Annotation>
1082
+ <Annotation Term='Org.OData.Capabilities.V1.TopSupported' Bool='false'/>
1083
+ <Annotation Term='Org.OData.Capabilities.V1.SkipSupported' Bool='false'/>
1084
+ <Annotation Term='Microsoft.Graph.Validator.CreateSupported' Bool='false'/>
1085
+ </Annotations>
1086
+ <Annotations Target='microsoft.graph.user'>
1087
+ <Annotation Term='Microsoft.Graph.Validator.CreateSupported' Bool='true'/>
1088
+ </Annotations>
1089
+ <Annotations Target='microsoft.graph.user/accountEnabled'>
1090
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1091
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='true'/>
1092
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1093
+ <Annotation Term='Microsoft.Graph.Validator.UpdateValue' String='false'/>
1094
+ </Annotations>
1095
+ <Annotations Target='microsoft.graph.user/businessPhones'>
1096
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1097
+ <Annotation Term='Microsoft.Graph.Validator.UpdateValue' String='+1 (555) 555-5555'/>
1098
+ </Annotations>
1099
+ <Annotations Target='microsoft.graph.user/city'>
1100
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1101
+ <Annotation Term='Microsoft.Graph.Validator.UpdateValue' String='Seattle'/>
1102
+ </Annotations>
1103
+ <Annotations Target='microsoft.graph.user/country'>
1104
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1105
+ <Annotation Term='Microsoft.Graph.Validator.UpdateValue' String='USA'/>
1106
+ </Annotations>
1107
+ <Annotations Target='microsoft.graph.user/displayName'>
1108
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1109
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='{random}'/>
1110
+ </Annotations>
1111
+ <Annotations Target='microsoft.graph.user/mailNickname'>
1112
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1113
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='{random}'/>
1114
+ </Annotations>
1115
+ <Annotations Target='microsoft.graph.passwordProfile/password'>
1116
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1117
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='{password}'/>
1118
+ </Annotations>
1119
+ <Annotations Target='microsoft.graph.passwordProfile/forceChangePasswordNextSignIn'>
1120
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1121
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='true'/>
1122
+ </Annotations>
1123
+ <Annotations Target='microsoft.graph.user/passwordProfile'>
1124
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1125
+ </Annotations>
1126
+ <Annotations Target='microsoft.graph.user/userPrincipalName'>
1127
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1128
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='{random}@{companyname}'/>
1129
+ </Annotations>
1130
+ <Annotations Target='microsoft.graph.user/ownedDevices'>
1131
+ <Annotation Term='Microsoft.Graph.Validator.ReadOnly' String='true'/>
1132
+ </Annotations>
1133
+ <Annotations Target='microsoft.graph.user/manager'>
1134
+ <Annotation Term='Microsoft.Graph.Validator.TargetEntities' String='microsoft.graph.user'/>
1135
+ </Annotations>
1136
+ <Annotations Target='microsoft.graph.user/directReports'>
1137
+ <Annotation Term='Microsoft.Graph.Validator.ReadOnly' String='true'/>
1138
+ </Annotations>
1139
+ <Annotations Target='microsoft.graph.user/memberOf'>
1140
+ <Annotation Term='Microsoft.Graph.Validator.ReadOnly' String='true'/>
1141
+ </Annotations>
1142
+ <Annotations Target='microsoft.graph.user/createdObjects'>
1143
+ <Annotation Term='Microsoft.Graph.Validator.ReadOnly' String='true'/>
1144
+ </Annotations>
1145
+ <Annotations Target='microsoft.graph.user/ownedObjects'>
1146
+ <Annotation Term='Microsoft.Graph.Validator.ReadOnly' String='true'/>
1147
+ </Annotations>
1148
+ <Annotations Target='microsoft.graph.user/mailFolders'>
1149
+ <Annotation Term='Microsoft.Graph.Validator.TargetEntities' String='microsoft.graph.mailFolder'/>
1150
+ </Annotations>
1151
+ <Annotations Target='microsoft.graph.user/calendars'>
1152
+ <Annotation Term='Microsoft.Graph.Validator.TargetEntities' String='microsoft.graph.calendar'/>
1153
+ </Annotations>
1154
+ <Annotations Target='microsoft.graph.user/calendarGroups'>
1155
+ <Annotation Term='Microsoft.Graph.Validator.TargetEntities' String='microsoft.graph.calendarGroup'/>
1156
+ </Annotations>
1157
+ <Annotations Target='microsoft.graph.user/calendarView'>
1158
+ <Annotation Term='Microsoft.Graph.Validator.TargetEntities' String='microsoft.graph.event'/>
1159
+ </Annotations>
1160
+ <Annotations Target='microsoft.graph.user/events'>
1161
+ <Annotation Term='Microsoft.Graph.Validator.TargetEntities' String='microsoft.graph.event'/>
1162
+ </Annotations>
1163
+ <Annotations Target='microsoft.graph.user/contacts'>
1164
+ <Annotation Term='Microsoft.Graph.Validator.TargetEntities' String='microsoft.graph.contact'/>
1165
+ </Annotations>
1166
+ <Annotations Target='microsoft.graph.user/contactFolders'>
1167
+ <Annotation Term='Microsoft.Graph.Validator.TargetEntities' String='microsoft.graph.contactFolder'/>
1168
+ </Annotations>
1169
+ <Annotations Target='microsoft.graph.user/photo'>
1170
+ <Annotation Term='Microsoft.Graph.Validator.TargetEntities' String='microsoft.graph.profilePhoto'/>
1171
+ </Annotations>
1172
+ <Annotations Target='microsoft.graph.attachment/name'>
1173
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1174
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='{random}'/>
1175
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='false'/>
1176
+ </Annotations>
1177
+ <Annotations Target='microsoft.graph.attachment/contentType'>
1178
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1179
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='{random}'/>
1180
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='false'/>
1181
+ </Annotations>
1182
+ <Annotations Target='microsoft.graph.attachment/size'>
1183
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1184
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='{random}'/>
1185
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='false'/>
1186
+ </Annotations>
1187
+ <Annotations Target='microsoft.graph.attachment/isInline'>
1188
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1189
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' Bool='false'/>
1190
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='false'/>
1191
+ </Annotations>
1192
+ <Annotations Target='microsoft.graph.dateTimeTimeZone/dateTime'>
1193
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1194
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='{DateTime.Now}'/>
1195
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1196
+ <Annotation Term='Microsoft.Graph.Validator.UpdateValue' String='{DateTime.Now}'/>
1197
+ </Annotations>
1198
+ <Annotations Target='microsoft.graph.dateTimeTimeZone/timeZone'>
1199
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1200
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='Utc'/>
1201
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1202
+ <Annotation Term='Microsoft.Graph.Validator.UpdateValue' String='Utc'/>
1203
+ </Annotations>
1204
+ <Annotations Target='microsoft.graph.location/displayName'>
1205
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1206
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='{random}'/>
1207
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1208
+ <Annotation Term='Microsoft.Graph.Validator.UpdateValue' String='{random}'/>
1209
+ </Annotations>
1210
+ <Annotations Target='microsoft.graph.physicalAddress/street'>
1211
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='false'/>
1212
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='{random}'/>
1213
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1214
+ <Annotation Term='Microsoft.Graph.Validator.UpdateValue' String='update_{random}'/>
1215
+ </Annotations>
1216
+ <Annotations Target='microsoft.graph.physicalAddress/city'>
1217
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='false'/>
1218
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='Seattle'/>
1219
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1220
+ <Annotation Term='Microsoft.Graph.Validator.UpdateValue' String='Madison'/>
1221
+ </Annotations>
1222
+ <Annotations Target='microsoft.graph.physicalAddress/state'>
1223
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='false'/>
1224
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='Washington'/>
1225
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1226
+ <Annotation Term='Microsoft.Graph.Validator.UpdateValue' String='Narnia'/>
1227
+ </Annotations>
1228
+ <Annotations Target='microsoft.graph.physicalAddress/countryOrRegion'>
1229
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1230
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='USA'/>
1231
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1232
+ <Annotation Term='Microsoft.Graph.Validator.UpdateValue' String='United States of America'/>
1233
+ </Annotations>
1234
+ <Annotations Target='microsoft.graph.physicalAddress/postalCode'>
1235
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1236
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='98052'/>
1237
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1238
+ <Annotation Term='Microsoft.Graph.Validator.UpdateValue' String='53079'/>
1239
+ </Annotations>
1240
+ <Annotations Target='microsoft.graph.mailFolder/displayName'>
1241
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1242
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='{random}'/>
1243
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1244
+ <Annotation Term='Microsoft.Graph.Validator.UpdateValue' String='{random}'/>
1245
+ </Annotations>
1246
+ <Annotations Target='microsoft.graph.message/subject'>
1247
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1248
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='{random}'/>
1249
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1250
+ <Annotation Term='Microsoft.Graph.Validator.UpdateValue' String='{random}'/>
1251
+ </Annotations>
1252
+ <Annotations Target='microsoft.graph.itemBody/contentType'>
1253
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1254
+ </Annotations>
1255
+ <Annotations Target='microsoft.graph.itemBody/content'>
1256
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1257
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='{random}'/>
1258
+ </Annotations>
1259
+ <Annotations Target='microsoft.graph.message/body'>
1260
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1261
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1262
+ </Annotations>
1263
+ <Annotations Target='microsoft.graph.message/importance'>
1264
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1265
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1266
+ </Annotations>
1267
+ <Annotations Target='microsoft.graph.emailAddress/name'>
1268
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1269
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='{random}'/>
1270
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1271
+ <Annotation Term='Microsoft.Graph.Validator.UpdateValue' String='update_{random}'/>
1272
+ </Annotations>
1273
+ <Annotations Target='microsoft.graph.emailAddress/address'>
1274
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1275
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='{logged_in_user_email}'/>
1276
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1277
+ <Annotation Term='Microsoft.Graph.Validator.UpdateValue' String='{logged_in_user_email}'/>
1278
+ </Annotations>
1279
+ <Annotations Target='microsoft.graph.recipient/emailAddress'>
1280
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1281
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1282
+ </Annotations>
1283
+ <Annotations Target='microsoft.graph.message/sender'>
1284
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1285
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='false'/>
1286
+ </Annotations>
1287
+ <Annotations Target='microsoft.graph.message/from'>
1288
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1289
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1290
+ </Annotations>
1291
+ <Annotations Target='microsoft.graph.message/toRecipients'>
1292
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1293
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1294
+ </Annotations>
1295
+ <Annotations Target='microsoft.graph.message/ccRecipients'>
1296
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1297
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1298
+ </Annotations>
1299
+ <Annotations Target='microsoft.graph.message/bccRecipients'>
1300
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1301
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1302
+ </Annotations>
1303
+ <Annotations Target='microsoft.graph.message/replyTo'>
1304
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1305
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1306
+ </Annotations>
1307
+ <Annotations Target='microsoft.graph.message/isDeliveryReceiptRequested'>
1308
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1309
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' Bool='true'/>
1310
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1311
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' Bool='false'/>
1312
+ </Annotations>
1313
+ <Annotations Target='microsoft.graph.message/isReadReceiptRequested'>
1314
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1315
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' Bool='true'/>
1316
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1317
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' Bool='false'/>
1318
+ </Annotations>
1319
+ <Annotations Target='microsoft.graph.message/isRead'>
1320
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1321
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' Bool='true'/>
1322
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1323
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' Bool='false'/>
1324
+ </Annotations>
1325
+ <Annotations Target='microsoft.graph.message/attachments'>
1326
+ <Annotation Term='Microsoft.Graph.Validator.TargetEntities' String='microsoft.graph.fileAttachment,microsoft.graph.itemAttachment'/>
1327
+ </Annotations>
1328
+ <Annotations Target='microsoft.graph.fileAttachment/contentId'>
1329
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1330
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='{random}'/>
1331
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='false'/>
1332
+ </Annotations>
1333
+ <Annotations Target='microsoft.graph.fileAttachment/contentLocation'>
1334
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1335
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='{random}'/>
1336
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='false'/>
1337
+ </Annotations>
1338
+ <Annotations Target='microsoft.graph.fileAttachment/contentBytes'>
1339
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1340
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='{random}'/>
1341
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='false'/>
1342
+ </Annotations>
1343
+ <Annotations Target='microsoft.graph.itemAttachment/item'>
1344
+ <Annotation Term='Microsoft.Graph.Validator.TargetEntities' String='microsoft.graph.message,microsoft.graph.event,microsoft.graph.contact'/>
1345
+ </Annotations>
1346
+ <Annotations Target='microsoft.graph.calendar/name'>
1347
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1348
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='{random}'/>
1349
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1350
+ <Annotation Term='Microsoft.Graph.Validator.UpdateValue' String='{random}'/>
1351
+ </Annotations>
1352
+ <Annotations Target='microsoft.graph.calendar/color'>
1353
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1354
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1355
+ </Annotations>
1356
+ <Annotations Target='microsoft.graph.calendar/changeKey'>
1357
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='false'/>
1358
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='false'/>
1359
+ </Annotations>
1360
+ <Annotations Target='microsoft.graph.calendar/events'>
1361
+ <Annotation Term='Microsoft.Graph.Validator.TargetEntities' String='microsoft.graph.event'/>
1362
+ </Annotations>
1363
+ <Annotations Target='microsoft.graph.calendar/calendarView'>
1364
+ <Annotation Term='Microsoft.Graph.Validator.TargetEntities' String='microsoft.graph.event'/>
1365
+ </Annotations>
1366
+ <Annotations Target='microsoft.graph.calendarGroup/name'>
1367
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1368
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='{random}'/>
1369
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1370
+ <Annotation Term='Microsoft.Graph.Validator.UpdateValue' String='{random}'/>
1371
+ </Annotations>
1372
+ <Annotations Target='microsoft.graph.calendarGroup/classId'>
1373
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1374
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='{guid}'/>
1375
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1376
+ <Annotation Term='Microsoft.Graph.Validator.UpdateValue' String='{guid}'/>
1377
+ </Annotations>
1378
+ <Annotations Target='microsoft.graph.calendarGroup/calendars'>
1379
+ <Annotation Term='Microsoft.Graph.Validator.TargetEntities' String='microsoft.graph.calendar'/>
1380
+ </Annotations>
1381
+ <Annotations Target='microsoft.graph.event/reminderMinutesBeforeStart'>
1382
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1383
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='10'/>
1384
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1385
+ <Annotation Term='Microsoft.Graph.Validator.UpdateValue' String='20'/>
1386
+ </Annotations>
1387
+ <Annotations Target='microsoft.graph.event/isReminderOn'>
1388
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1389
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' Bool='true'/>
1390
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1391
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' Bool='false'/>
1392
+ </Annotations>
1393
+ <Annotations Target='microsoft.graph.event/subject'>
1394
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1395
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='{random}'/>
1396
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1397
+ <Annotation Term='Microsoft.Graph.Validator.UpdateValue' String='{random}'/>
1398
+ </Annotations>
1399
+ <Annotations Target='microsoft.graph.event/body'>
1400
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1401
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1402
+ </Annotations>
1403
+ <Annotations Target='microsoft.graph.event/importance'>
1404
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1405
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1406
+ </Annotations>
1407
+ <Annotations Target='microsoft.graph.event/sensitivity'>
1408
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1409
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1410
+ </Annotations>
1411
+ <Annotations Target='microsoft.graph.event/start'>
1412
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1413
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1414
+ </Annotations>
1415
+ <Annotations Target='microsoft.graph.event/end'>
1416
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1417
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1418
+ </Annotations>
1419
+ <Annotations Target='microsoft.graph.event/location'>
1420
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1421
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1422
+ </Annotations>
1423
+ <Annotations Target='microsoft.graph.event/isAllDay'>
1424
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1425
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' Bool='false'/>
1426
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1427
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' Bool='false'/>
1428
+ </Annotations>
1429
+ <Annotations Target='microsoft.graph.event/isOrganizer'>
1430
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1431
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' Bool='true'/>
1432
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1433
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' Bool='false'/>
1434
+ </Annotations>
1435
+ <Annotations Target='microsoft.graph.recurrencePattern/type'>
1436
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1437
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1438
+ </Annotations>
1439
+ <Annotations Target='microsoft.graph.patternedRecurrence/pattern'>
1440
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1441
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1442
+ </Annotations>
1443
+ <Annotations Target='microsoft.graph.event/recurrence'>
1444
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='false'/>
1445
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1446
+ </Annotations>
1447
+ <Annotations Target='microsoft.graph.event/responseRequested'>
1448
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1449
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' Bool='true'/>
1450
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1451
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' Bool='false'/>
1452
+ </Annotations>
1453
+ <Annotations Target='microsoft.graph.event/showAs'>
1454
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1455
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1456
+ </Annotations>
1457
+ <Annotations Target='microsoft.graph.event/attachments'>
1458
+ <Annotation Term='Microsoft.Graph.Validator.TargetEntities' String='microsoft.graph.fileAttachment,microsoft.graph.itemAttachment'/>
1459
+ </Annotations>
1460
+ <Annotations Target='microsoft.graph.contact/birthday'>
1461
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1462
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='2002-10-10T17:00:00Z'/>
1463
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1464
+ <Annotation Term='Microsoft.Graph.Validator.UpdateValue' String='2005-11-16T17:00:00Z'/>
1465
+ </Annotations>
1466
+ <Annotations Target='microsoft.graph.contact/fileAs'>
1467
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1468
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='{random}'/>
1469
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1470
+ <Annotation Term='Microsoft.Graph.Validator.UpdateValue' String='{random}'/>
1471
+ </Annotations>
1472
+ <Annotations Target='microsoft.graph.contact/displayName'>
1473
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1474
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='{random}'/>
1475
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1476
+ <Annotation Term='Microsoft.Graph.Validator.UpdateValue' String='{random}'/>
1477
+ </Annotations>
1478
+ <Annotations Target='microsoft.graph.contact/givenName'>
1479
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1480
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='{random}'/>
1481
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1482
+ <Annotation Term='Microsoft.Graph.Validator.UpdateValue' String='{random}'/>
1483
+ </Annotations>
1484
+ <Annotations Target='microsoft.graph.contact/initials'>
1485
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1486
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='{random}'/>
1487
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1488
+ <Annotation Term='Microsoft.Graph.Validator.UpdateValue' String='{random}'/>
1489
+ </Annotations>
1490
+ <Annotations Target='microsoft.graph.contact/middleName'>
1491
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1492
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='{random}'/>
1493
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1494
+ <Annotation Term='Microsoft.Graph.Validator.UpdateValue' String='{random}'/>
1495
+ </Annotations>
1496
+ <Annotations Target='microsoft.graph.contact/nickName'>
1497
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1498
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='{random}'/>
1499
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1500
+ <Annotation Term='Microsoft.Graph.Validator.UpdateValue' String='{random}'/>
1501
+ </Annotations>
1502
+ <Annotations Target='microsoft.graph.contact/surname'>
1503
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1504
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='{random}'/>
1505
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1506
+ <Annotation Term='Microsoft.Graph.Validator.UpdateValue' String='{random}'/>
1507
+ </Annotations>
1508
+ <Annotations Target='microsoft.graph.contact/title'>
1509
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1510
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='{random}'/>
1511
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1512
+ <Annotation Term='Microsoft.Graph.Validator.UpdateValue' String='{random}'/>
1513
+ </Annotations>
1514
+ <Annotations Target='microsoft.graph.contact/yomiGivenName'>
1515
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1516
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='{random}'/>
1517
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1518
+ <Annotation Term='Microsoft.Graph.Validator.UpdateValue' String='{random}'/>
1519
+ </Annotations>
1520
+ <Annotations Target='microsoft.graph.contact/yomiSurname'>
1521
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1522
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='{random}'/>
1523
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1524
+ <Annotation Term='Microsoft.Graph.Validator.UpdateValue' String='{random}'/>
1525
+ </Annotations>
1526
+ <Annotations Target='microsoft.graph.contact/yomiCompanyName'>
1527
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1528
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='{random}'/>
1529
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1530
+ <Annotation Term='Microsoft.Graph.Validator.UpdateValue' String='{random}'/>
1531
+ </Annotations>
1532
+ <Annotations Target='microsoft.graph.contact/generation'>
1533
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1534
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='{random}'/>
1535
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1536
+ <Annotation Term='Microsoft.Graph.Validator.UpdateValue' String='{random}'/>
1537
+ </Annotations>
1538
+ <Annotations Target='microsoft.graph.contact/emailAddresses'>
1539
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1540
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1541
+ </Annotations>
1542
+ <Annotations Target='microsoft.graph.contact/imAddresses'>
1543
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1544
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='[&quot;{random}&quot;,&quot;{random}&quot;]'/>
1545
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1546
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='[&quot;{random}&quot;,&quot;{random}&quot;]'/>
1547
+ </Annotations>
1548
+ <Annotations Target='microsoft.graph.contact/jobTitle'>
1549
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1550
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='{random}'/>
1551
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1552
+ <Annotation Term='Microsoft.Graph.Validator.UpdateValue' String='{random}'/>
1553
+ </Annotations>
1554
+ <Annotations Target='microsoft.graph.contact/companyName'>
1555
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1556
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='{random}'/>
1557
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1558
+ <Annotation Term='Microsoft.Graph.Validator.UpdateValue' String='{random}'/>
1559
+ </Annotations>
1560
+ <Annotations Target='microsoft.graph.contact/department'>
1561
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1562
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='{random}'/>
1563
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1564
+ <Annotation Term='Microsoft.Graph.Validator.UpdateValue' String='{random}'/>
1565
+ </Annotations>
1566
+ <Annotations Target='microsoft.graph.contact/officeLocation'>
1567
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1568
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='{random}'/>
1569
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1570
+ <Annotation Term='Microsoft.Graph.Validator.UpdateValue' String='{random}'/>
1571
+ </Annotations>
1572
+ <Annotations Target='microsoft.graph.contact/profession'>
1573
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1574
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='{random}'/>
1575
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1576
+ <Annotation Term='Microsoft.Graph.Validator.UpdateValue' String='{random}'/>
1577
+ </Annotations>
1578
+ <Annotations Target='microsoft.graph.contact/businessHomePage'>
1579
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1580
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='{random}'/>
1581
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1582
+ <Annotation Term='Microsoft.Graph.Validator.UpdateValue' String='{random}'/>
1583
+ </Annotations>
1584
+ <Annotations Target='microsoft.graph.contact/assistantName'>
1585
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1586
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='{random}'/>
1587
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1588
+ <Annotation Term='Microsoft.Graph.Validator.UpdateValue' String='{random}'/>
1589
+ </Annotations>
1590
+ <Annotations Target='microsoft.graph.contact/manager'>
1591
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1592
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='{random}'/>
1593
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1594
+ <Annotation Term='Microsoft.Graph.Validator.UpdateValue' String='{random}'/>
1595
+ </Annotations>
1596
+ <Annotations Target='microsoft.graph.contact/homePhones'>
1597
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1598
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='[&quot;{random}&quot;,&quot;{random}&quot;]'/>
1599
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1600
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='[&quot;{random}&quot;,&quot;{random}&quot;]'/>
1601
+ </Annotations>
1602
+ <Annotations Target='microsoft.graph.contact/businessPhones'>
1603
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1604
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='[&quot;{random}&quot;]'/>
1605
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1606
+ <Annotation Term='Microsoft.Graph.Validator.UpdateValue' String='[&quot;{random}&quot;]'/>
1607
+ </Annotations>
1608
+ <Annotations Target='microsoft.graph.contact/homeAddress'>
1609
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1610
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1611
+ </Annotations>
1612
+ <Annotations Target='microsoft.graph.contact/businessAddress'>
1613
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1614
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1615
+ </Annotations>
1616
+ <Annotations Target='microsoft.graph.contact/otherAddress'>
1617
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1618
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1619
+ </Annotations>
1620
+ <Annotations Target='microsoft.graph.contact/spouseName'>
1621
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1622
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='{random}'/>
1623
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1624
+ <Annotation Term='Microsoft.Graph.Validator.UpdateValue' String='{random}'/>
1625
+ </Annotations>
1626
+ <Annotations Target='microsoft.graph.contact/personalNotes'>
1627
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1628
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='{random}'/>
1629
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1630
+ <Annotation Term='Microsoft.Graph.Validator.UpdateValue' String='{random}'/>
1631
+ </Annotations>
1632
+ <Annotations Target='microsoft.graph.contact/children'>
1633
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1634
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='[&quot;{random}&quot;,&quot;{random}&quot;]'/>
1635
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1636
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='[&quot;{random}&quot;,&quot;{random}&quot;]'/>
1637
+ </Annotations>
1638
+ <Annotations Target='microsoft.graph.contact/photo'>
1639
+ <Annotation Term='Microsoft.Graph.Validator.TargetEntities' String='microsoft.graph.profilePhoto'/>
1640
+ </Annotations>
1641
+ <Annotations Target='microsoft.graph.contactFolder/displayName'>
1642
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1643
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='{random}'/>
1644
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1645
+ <Annotation Term='Microsoft.Graph.Validator.UpdateValue' String='{random}'/>
1646
+ </Annotations>
1647
+ <Annotations Target='microsoft.graph.contactFolder/contacts'>
1648
+ <Annotation Term='Microsoft.Graph.Validator.TargetEntities' String='microsoft.graph.contact'/>
1649
+ </Annotations>
1650
+ <Annotations Target='microsoft.graph.contactFolder/childFolders'>
1651
+ <Annotation Term='Microsoft.Graph.Validator.TargetEntities' String='microsoft.graph.contactFolder'/>
1652
+ </Annotations>
1653
+ <Annotations Target='microsoft.graph.conversation/topic'>
1654
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1655
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' String='{random}'/>
1656
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1657
+ <Annotation Term='Microsoft.Graph.Validator.UpdateValue' String='{random}'/>
1658
+ </Annotations>
1659
+ <Annotations Target='microsoft.graph.conversation/threads'>
1660
+ <Annotation Term='Microsoft.Graph.Validator.TargetEntities' String='microsoft.graph.conversationThread'/>
1661
+ </Annotations>
1662
+ <Annotations Target='microsoft.graph.conversationThread/topic'>
1663
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1664
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' Bool='true'/>
1665
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1666
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' Bool='false'/>
1667
+ </Annotations>
1668
+ <Annotations Target='microsoft.graph.conversationThread/isLocked'>
1669
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1670
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' Bool='true'/>
1671
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1672
+ <Annotation Term='Microsoft.Graph.Validator.DefaultValue' Bool='false'/>
1673
+ </Annotations>
1674
+ <Annotations Target='microsoft.graph.conversationThread/posts'>
1675
+ <Annotation Term='Microsoft.Graph.Validator.TargetEntities' String='microsoft.graph.post'/>
1676
+ <Annotation Term='Microsoft.Graph.Validator.IncludeInParentCreation' Bool='true'/>
1677
+ </Annotations>
1678
+ <Annotations Target='microsoft.graph.post/body'>
1679
+ <Annotation Term='Microsoft.Graph.Validator.Required' Bool='true'/>
1680
+ <Annotation Term='Microsoft.Graph.Validator.Updatable' Bool='true'/>
1681
+ </Annotations>
1682
+ <Annotations Target='microsoft.graph.post/attachments'>
1683
+ <Annotation Term='Microsoft.Graph.Validator.TargetEntities' String='microsoft.graph.fileAttachment,microsoft.graph.itemAttachment'/>
1684
+ </Annotations>
1685
+ </Schema>
1686
+ </edmx:DataServices>
1687
+ </edmx:Edmx>