msgraph.xml 63 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <edmx:Edmx xmlns:edmx="http://docs.oasis-open.org/odata/ns/edmx" Version="4.0">
  3. <edmx:DataServices>
  4. <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="microsoft.graph">
  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="internetMessageId" Type="Edm.String" Unicode="false"/>
  377. <Property Name="subject" Type="Edm.String" Unicode="false"/>
  378. <Property Name="body" Type="microsoft.graph.itemBody"/>
  379. <Property Name="bodyPreview" Type="Edm.String" Unicode="false"/>
  380. <Property Name="importance" Type="microsoft.graph.importance"/>
  381. <Property Name="parentFolderId" Type="Edm.String" Unicode="false"/>
  382. <Property Name="sender" Type="microsoft.graph.recipient"/>
  383. <Property Name="from" Type="microsoft.graph.recipient"/>
  384. <Property Name="toRecipients" Type="Collection(microsoft.graph.recipient)"/>
  385. <Property Name="ccRecipients" Type="Collection(microsoft.graph.recipient)"/>
  386. <Property Name="bccRecipients" Type="Collection(microsoft.graph.recipient)"/>
  387. <Property Name="replyTo" Type="Collection(microsoft.graph.recipient)"/>
  388. <Property Name="conversationId" Type="Edm.String" Unicode="false"/>
  389. <Property Name="uniqueBody" Type="microsoft.graph.itemBody"/>
  390. <Property Name="isDeliveryReceiptRequested" Type="Edm.Boolean"/>
  391. <Property Name="isReadReceiptRequested" Type="Edm.Boolean"/>
  392. <Property Name="isRead" Type="Edm.Boolean"/>
  393. <Property Name="isDraft" Type="Edm.Boolean"/>
  394. <Property Name="webLink" Type="Edm.String" Unicode="false"/>
  395. <NavigationProperty Name="attachments" Type="Collection(microsoft.graph.attachment)" ContainsTarget="true"/>
  396. </EntityType>
  397. <EntityType Name="mailFolder" BaseType="microsoft.graph.entity">
  398. <Property Name="displayName" Type="Edm.String" Unicode="false"/>
  399. <Property Name="parentFolderId" Type="Edm.String" Unicode="false"/>
  400. <Property Name="childFolderCount" Type="Edm.Int32"/>
  401. <Property Name="unreadItemCount" Type="Edm.Int32"/>
  402. <Property Name="totalItemCount" Type="Edm.Int32"/>
  403. <NavigationProperty Name="messages" Type="Collection(microsoft.graph.message)" ContainsTarget="true"/>
  404. <NavigationProperty Name="childFolders" Type="Collection(microsoft.graph.mailFolder)" ContainsTarget="true"/>
  405. </EntityType>
  406. <EntityType Name="calendarGroup" BaseType="microsoft.graph.entity">
  407. <Property Name="name" Type="Edm.String" Unicode="false"/>
  408. <Property Name="classId" Type="Edm.Guid"/>
  409. <Property Name="changeKey" Type="Edm.String" Unicode="false"/>
  410. <NavigationProperty Name="calendars" Type="Collection(microsoft.graph.calendar)" ContainsTarget="true"/>
  411. </EntityType>
  412. <EntityType Name="contact" BaseType="microsoft.graph.outlookItem">
  413. <Property Name="parentFolderId" Type="Edm.String" Unicode="false"/>
  414. <Property Name="birthday" Type="Edm.DateTimeOffset"/>
  415. <Property Name="fileAs" Type="Edm.String" Unicode="false"/>
  416. <Property Name="displayName" Type="Edm.String" Unicode="false"/>
  417. <Property Name="givenName" Type="Edm.String" Unicode="false"/>
  418. <Property Name="initials" Type="Edm.String" Unicode="false"/>
  419. <Property Name="middleName" Type="Edm.String" Unicode="false"/>
  420. <Property Name="nickName" Type="Edm.String" Unicode="false"/>
  421. <Property Name="surname" Type="Edm.String" Unicode="false"/>
  422. <Property Name="title" Type="Edm.String" Unicode="false"/>
  423. <Property Name="yomiGivenName" Type="Edm.String" Unicode="false"/>
  424. <Property Name="yomiSurname" Type="Edm.String" Unicode="false"/>
  425. <Property Name="yomiCompanyName" Type="Edm.String" Unicode="false"/>
  426. <Property Name="generation" Type="Edm.String" Unicode="false"/>
  427. <Property Name="emailAddresses" Type="Collection(microsoft.graph.emailAddress)"/>
  428. <Property Name="imAddresses" Type="Collection(Edm.String)" Unicode="false"/>
  429. <Property Name="jobTitle" Type="Edm.String" Unicode="false"/>
  430. <Property Name="companyName" Type="Edm.String" Unicode="false"/>
  431. <Property Name="department" Type="Edm.String" Unicode="false"/>
  432. <Property Name="officeLocation" Type="Edm.String" Unicode="false"/>
  433. <Property Name="profession" Type="Edm.String" Unicode="false"/>
  434. <Property Name="businessHomePage" Type="Edm.String" Unicode="false"/>
  435. <Property Name="assistantName" Type="Edm.String" Unicode="false"/>
  436. <Property Name="manager" Type="Edm.String" Unicode="false"/>
  437. <Property Name="homePhones" Type="Collection(Edm.String)" Unicode="false"/>
  438. <Property Name="mobilePhone" Type="Edm.String" Unicode="false"/>
  439. <Property Name="businessPhones" Type="Collection(Edm.String)" Unicode="false"/>
  440. <Property Name="homeAddress" Type="microsoft.graph.physicalAddress"/>
  441. <Property Name="businessAddress" Type="microsoft.graph.physicalAddress"/>
  442. <Property Name="otherAddress" Type="microsoft.graph.physicalAddress"/>
  443. <Property Name="spouseName" Type="Edm.String" Unicode="false"/>
  444. <Property Name="personalNotes" Type="Edm.String" Unicode="false"/>
  445. <Property Name="children" Type="Collection(Edm.String)" Unicode="false"/>
  446. <NavigationProperty Name="photo" Type="microsoft.graph.profilePhoto" ContainsTarget="true"/>
  447. </EntityType>
  448. <EntityType Name="contactFolder" BaseType="microsoft.graph.entity">
  449. <Property Name="parentFolderId" Type="Edm.String" Unicode="false"/>
  450. <Property Name="displayName" Type="Edm.String" Unicode="false"/>
  451. <NavigationProperty Name="contacts" Type="Collection(microsoft.graph.contact)" ContainsTarget="true"/>
  452. <NavigationProperty Name="childFolders" Type="Collection(microsoft.graph.contactFolder)" ContainsTarget="true"/>
  453. </EntityType>
  454. <EntityType Name="attachment" BaseType="microsoft.graph.entity" Abstract="true">
  455. <Property Name="lastModifiedDateTime" Type="Edm.DateTimeOffset"/>
  456. <Property Name="name" Type="Edm.String" Unicode="false"/>
  457. <Property Name="contentType" Type="Edm.String" Unicode="false"/>
  458. <Property Name="size" Type="Edm.Int32" Nullable="false"/>
  459. <Property Name="isInline" Type="Edm.Boolean" Nullable="false"/>
  460. </EntityType>
  461. <ComplexType Name="reminder">
  462. <Property Name="eventId" Type="Edm.String" Unicode="false"/>
  463. <Property Name="eventStartTime" Type="microsoft.graph.dateTimeTimeZone"/>
  464. <Property Name="eventEndTime" Type="microsoft.graph.dateTimeTimeZone"/>
  465. <Property Name="changeKey" Type="Edm.String" Unicode="false"/>
  466. <Property Name="eventSubject" Type="Edm.String" Unicode="false"/>
  467. <Property Name="eventLocation" Type="microsoft.graph.location"/>
  468. <Property Name="eventWebLink" Type="Edm.String" Unicode="false"/>
  469. <Property Name="reminderFireTime" Type="microsoft.graph.dateTimeTimeZone"/>
  470. </ComplexType>
  471. <ComplexType Name="dateTimeTimeZone">
  472. <Property Name="dateTime" Type="Edm.String" Nullable="false" Unicode="false"/>
  473. <Property Name="timeZone" Type="Edm.String" Unicode="false"/>
  474. </ComplexType>
  475. <ComplexType Name="location">
  476. <Property Name="displayName" Type="Edm.String" Unicode="false"/>
  477. <Property Name="address" Type="microsoft.graph.physicalAddress"/>
  478. </ComplexType>
  479. <ComplexType Name="physicalAddress">
  480. <Property Name="street" Type="Edm.String" Unicode="false"/>
  481. <Property Name="city" Type="Edm.String" Unicode="false"/>
  482. <Property Name="state" Type="Edm.String" Unicode="false"/>
  483. <Property Name="countryOrRegion" Type="Edm.String" Unicode="false"/>
  484. <Property Name="postalCode" Type="Edm.String" Unicode="false"/>
  485. </ComplexType>
  486. <ComplexType Name="itemBody">
  487. <Property Name="contentType" Type="microsoft.graph.bodyType"/>
  488. <Property Name="content" Type="Edm.String" Unicode="false"/>
  489. </ComplexType>
  490. <ComplexType Name="recipient">
  491. <Property Name="emailAddress" Type="microsoft.graph.emailAddress"/>
  492. </ComplexType>
  493. <ComplexType Name="emailAddress">
  494. <Property Name="name" Type="Edm.String" Unicode="false"/>
  495. <Property Name="address" Type="Edm.String" Unicode="false"/>
  496. </ComplexType>
  497. <EntityType Name="fileAttachment" BaseType="microsoft.graph.attachment">
  498. <Property Name="contentId" Type="Edm.String" Unicode="false"/>
  499. <Property Name="contentLocation" Type="Edm.String" Unicode="false"/>
  500. <Property Name="contentBytes" Type="Edm.Binary"/>
  501. </EntityType>
  502. <EntityType Name="itemAttachment" BaseType="microsoft.graph.attachment">
  503. <NavigationProperty Name="item" Type="microsoft.graph.outlookItem" ContainsTarget="true"/>
  504. </EntityType>
  505. <ComplexType Name="responseStatus">
  506. <Property Name="response" Type="microsoft.graph.responseType"/>
  507. <Property Name="time" Type="Edm.DateTimeOffset"/>
  508. </ComplexType>
  509. <ComplexType Name="patternedRecurrence">
  510. <Property Name="pattern" Type="microsoft.graph.recurrencePattern"/>
  511. <Property Name="range" Type="microsoft.graph.recurrenceRange"/>
  512. </ComplexType>
  513. <ComplexType Name="recurrencePattern">
  514. <Property Name="type" Type="microsoft.graph.recurrencePatternType"/>
  515. <Property Name="interval" Type="Edm.Int32" Nullable="false"/>
  516. <Property Name="month" Type="Edm.Int32" Nullable="false"/>
  517. <Property Name="dayOfMonth" Type="Edm.Int32" Nullable="false"/>
  518. <Property Name="daysOfWeek" Type="Collection(microsoft.graph.dayOfWeek)"/>
  519. <Property Name="firstDayOfWeek" Type="microsoft.graph.dayOfWeek"/>
  520. <Property Name="index" Type="microsoft.graph.weekIndex"/>
  521. </ComplexType>
  522. <ComplexType Name="recurrenceRange">
  523. <Property Name="type" Type="microsoft.graph.recurrenceRangeType"/>
  524. <Property Name="startDate" Type="Edm.Date"/>
  525. <Property Name="endDate" Type="Edm.Date"/>
  526. <Property Name="recurrenceTimeZone" Type="Edm.String" Unicode="false"/>
  527. <Property Name="numberOfOccurrences" Type="Edm.Int32" Nullable="false"/>
  528. </ComplexType>
  529. <ComplexType Name="attendee" BaseType="microsoft.graph.recipient">
  530. <Property Name="status" Type="microsoft.graph.responseStatus"/>
  531. <Property Name="type" Type="microsoft.graph.attendeeType"/>
  532. </ComplexType>
  533. <EntityType Name="eventMessage" BaseType="microsoft.graph.message">
  534. <Property Name="meetingMessageType" Type="microsoft.graph.meetingMessageType"/>
  535. <NavigationProperty Name="event" Type="microsoft.graph.event" ContainsTarget="true"/>
  536. </EntityType>
  537. <EntityType Name="referenceAttachment" BaseType="microsoft.graph.attachment"/>
  538. <EntityType Name="post" BaseType="microsoft.graph.outlookItem">
  539. <Property Name="body" Type="microsoft.graph.itemBody"/>
  540. <Property Name="receivedDateTime" Type="Edm.DateTimeOffset" Nullable="false"/>
  541. <Property Name="hasAttachments" Type="Edm.Boolean" Nullable="false"/>
  542. <Property Name="from" Type="microsoft.graph.recipient" Nullable="false"/>
  543. <Property Name="sender" Type="microsoft.graph.recipient" Nullable="false"/>
  544. <Property Name="conversationThreadId" Type="Edm.String" Unicode="false"/>
  545. <Property Name="newParticipants" Type="Collection(microsoft.graph.recipient)" Nullable="false"/>
  546. <Property Name="conversationId" Type="Edm.String" Unicode="false"/>
  547. <NavigationProperty Name="inReplyTo" Type="microsoft.graph.post" ContainsTarget="true"/>
  548. <NavigationProperty Name="attachments" Type="Collection(microsoft.graph.attachment)" ContainsTarget="true"/>
  549. </EntityType>
  550. <ComplexType Name="identitySet" OpenType="true">
  551. <Property Name="application" Type="microsoft.graph.identity"/>
  552. <Property Name="device" Type="microsoft.graph.identity"/>
  553. <Property Name="user" Type="microsoft.graph.identity"/>
  554. </ComplexType>
  555. <ComplexType Name="identity">
  556. <Property Name="displayName" Type="Edm.String" Unicode="false"/>
  557. <Property Name="id" Type="Edm.String" Unicode="false"/>
  558. </ComplexType>
  559. <ComplexType Name="quota">
  560. <Property Name="deleted" Type="Edm.Int64"/>
  561. <Property Name="remaining" Type="Edm.Int64"/>
  562. <Property Name="state" Type="Edm.String" Unicode="false"/>
  563. <Property Name="total" Type="Edm.Int64"/>
  564. <Property Name="used" Type="Edm.Int64"/>
  565. </ComplexType>
  566. <EntityType Name="driveItem" BaseType="microsoft.graph.entity" OpenType="true">
  567. <Property Name="content" Type="Edm.Stream"/>
  568. <Property Name="createdBy" Type="microsoft.graph.identitySet"/>
  569. <Property Name="createdDateTime" Type="Edm.DateTimeOffset"/>
  570. <Property Name="cTag" Type="Edm.String" Unicode="false"/>
  571. <Property Name="description" Type="Edm.String" Unicode="false"/>
  572. <Property Name="eTag" Type="Edm.String" Unicode="false"/>
  573. <Property Name="lastModifiedBy" Type="microsoft.graph.identitySet"/>
  574. <Property Name="lastModifiedDateTime" Type="Edm.DateTimeOffset"/>
  575. <Property Name="name" Type="Edm.String" Unicode="false"/>
  576. <Property Name="parentReference" Type="microsoft.graph.itemReference"/>
  577. <Property Name="size" Type="Edm.Int64"/>
  578. <Property Name="webDavUrl" Type="Edm.String" Unicode="false"/>
  579. <Property Name="webUrl" Type="Edm.String" Unicode="false"/>
  580. <Property Name="audio" Type="microsoft.graph.audio"/>
  581. <Property Name="deleted" Type="microsoft.graph.deleted"/>
  582. <Property Name="file" Type="microsoft.graph.file"/>
  583. <Property Name="fileSystemInfo" Type="microsoft.graph.fileSystemInfo"/>
  584. <Property Name="folder" Type="microsoft.graph.folder"/>
  585. <Property Name="image" Type="microsoft.graph.image"/>
  586. <Property Name="location" Type="microsoft.graph.geoCoordinates"/>
  587. <Property Name="photo" Type="microsoft.graph.photo"/>
  588. <Property Name="remoteItem" Type="microsoft.graph.remoteItem"/>
  589. <Property Name="searchResult" Type="microsoft.graph.searchResult"/>
  590. <Property Name="shared" Type="microsoft.graph.shared"/>
  591. <Property Name="specialFolder" Type="microsoft.graph.specialFolder"/>
  592. <Property Name="video" Type="microsoft.graph.video"/>
  593. <Property Name="package" Type="microsoft.graph.package"/>
  594. <NavigationProperty Name="createdByUser" Type="microsoft.graph.user"/>
  595. <NavigationProperty Name="lastModifiedByUser" Type="microsoft.graph.user"/>
  596. <NavigationProperty Name="permissions" Type="Collection(microsoft.graph.permission)" ContainsTarget="true"/>
  597. <NavigationProperty Name="children" Type="Collection(microsoft.graph.driveItem)" ContainsTarget="true"/>
  598. <NavigationProperty Name="thumbnails" Type="Collection(microsoft.graph.thumbnailSet)" ContainsTarget="true"/>
  599. </EntityType>
  600. <ComplexType Name="itemReference">
  601. <Property Name="driveId" Type="Edm.String" Unicode="false"/>
  602. <Property Name="id" Type="Edm.String" Unicode="false"/>
  603. <Property Name="path" Type="Edm.String" Unicode="false"/>
  604. </ComplexType>
  605. <ComplexType Name="audio">
  606. <Property Name="album" Type="Edm.String" Unicode="false"/>
  607. <Property Name="albumArtist" Type="Edm.String" Unicode="false"/>
  608. <Property Name="artist" Type="Edm.String" Unicode="false"/>
  609. <Property Name="bitrate" Type="Edm.Int64"/>
  610. <Property Name="composers" Type="Edm.String" Unicode="false"/>
  611. <Property Name="copyright" Type="Edm.String" Unicode="false"/>
  612. <Property Name="disc" Type="Edm.Int16"/>
  613. <Property Name="discCount" Type="Edm.Int16"/>
  614. <Property Name="duration" Type="Edm.Int64"/>
  615. <Property Name="genre" Type="Edm.String" Unicode="false"/>
  616. <Property Name="hasDrm" Type="Edm.Boolean"/>
  617. <Property Name="isVariableBitrate" Type="Edm.Boolean"/>
  618. <Property Name="title" Type="Edm.String" Unicode="false"/>
  619. <Property Name="track" Type="Edm.Int32"/>
  620. <Property Name="trackCount" Type="Edm.Int32"/>
  621. <Property Name="year" Type="Edm.Int32"/>
  622. </ComplexType>
  623. <ComplexType Name="deleted">
  624. <Property Name="state" Type="Edm.String" Unicode="false"/>
  625. </ComplexType>
  626. <ComplexType Name="file">
  627. <Property Name="hashes" Type="microsoft.graph.hashes"/>
  628. <Property Name="mimeType" Type="Edm.String" Unicode="false"/>
  629. </ComplexType>
  630. <ComplexType Name="hashes">
  631. <Property Name="crc32Hash" Type="Edm.String" Unicode="false"/>
  632. <Property Name="sha1Hash" Type="Edm.String" Unicode="false"/>
  633. </ComplexType>
  634. <ComplexType Name="fileSystemInfo">
  635. <Property Name="createdDateTime" Type="Edm.DateTimeOffset"/>
  636. <Property Name="lastModifiedDateTime" Type="Edm.DateTimeOffset"/>
  637. </ComplexType>
  638. <ComplexType Name="folder">
  639. <Property Name="childCount" Type="Edm.Int32"/>
  640. </ComplexType>
  641. <ComplexType Name="image">
  642. <Property Name="height" Type="Edm.Int32"/>
  643. <Property Name="width" Type="Edm.Int32"/>
  644. </ComplexType>
  645. <ComplexType Name="geoCoordinates">
  646. <Property Name="altitude" Type="Edm.Double"/>
  647. <Property Name="latitude" Type="Edm.Double"/>
  648. <Property Name="longitude" Type="Edm.Double"/>
  649. </ComplexType>
  650. <ComplexType Name="photo">
  651. <Property Name="cameraMake" Type="Edm.String" Unicode="false"/>
  652. <Property Name="cameraModel" Type="Edm.String" Unicode="false"/>
  653. <Property Name="exposureDenominator" Type="Edm.Double"/>
  654. <Property Name="exposureNumerator" Type="Edm.Double"/>
  655. <Property Name="focalLength" Type="Edm.Double"/>
  656. <Property Name="fNumber" Type="Edm.Double"/>
  657. <Property Name="takenDateTime" Type="Edm.DateTimeOffset"/>
  658. <Property Name="iso" Type="Edm.Int32"/>
  659. </ComplexType>
  660. <ComplexType Name="remoteItem">
  661. <Property Name="file" Type="microsoft.graph.file"/>
  662. <Property Name="fileSystemInfo" Type="microsoft.graph.fileSystemInfo"/>
  663. <Property Name="folder" Type="microsoft.graph.folder"/>
  664. <Property Name="id" Type="Edm.String" Unicode="false"/>
  665. <Property Name="name" Type="Edm.String" Unicode="false"/>
  666. <Property Name="parentReference" Type="microsoft.graph.itemReference"/>
  667. <Property Name="size" Type="Edm.Int64"/>
  668. </ComplexType>
  669. <ComplexType Name="searchResult">
  670. <Property Name="onClickTelemetryUrl" Type="Edm.String" Unicode="false"/>
  671. </ComplexType>
  672. <ComplexType Name="shared">
  673. <Property Name="owner" Type="microsoft.graph.identitySet"/>
  674. <Property Name="scope" Type="Edm.String" Unicode="false"/>
  675. </ComplexType>
  676. <ComplexType Name="specialFolder">
  677. <Property Name="name" Type="Edm.String" Unicode="false"/>
  678. </ComplexType>
  679. <ComplexType Name="video">
  680. <Property Name="bitrate" Type="Edm.Int32"/>
  681. <Property Name="duration" Type="Edm.Int64"/>
  682. <Property Name="height" Type="Edm.Int32"/>
  683. <Property Name="width" Type="Edm.Int32"/>
  684. </ComplexType>
  685. <ComplexType Name="package">
  686. <Property Name="type" Type="Edm.String" Unicode="false"/>
  687. </ComplexType>
  688. <EntityType Name="permission" BaseType="microsoft.graph.entity">
  689. <Property Name="grantedTo" Type="microsoft.graph.identitySet"/>
  690. <Property Name="invitation" Type="microsoft.graph.sharingInvitation"/>
  691. <Property Name="inheritedFrom" Type="microsoft.graph.itemReference"/>
  692. <Property Name="link" Type="microsoft.graph.sharingLink"/>
  693. <Property Name="roles" Type="Collection(Edm.String)" Unicode="false"/>
  694. <Property Name="shareId" Type="Edm.String" Unicode="false"/>
  695. </EntityType>
  696. <EntityType Name="thumbnailSet" BaseType="microsoft.graph.entity" OpenType="true">
  697. <Property Name="large" Type="microsoft.graph.thumbnail"/>
  698. <Property Name="medium" Type="microsoft.graph.thumbnail"/>
  699. <Property Name="small" Type="microsoft.graph.thumbnail"/>
  700. <Property Name="source" Type="microsoft.graph.thumbnail"/>
  701. </EntityType>
  702. <ComplexType Name="sharingInvitation">
  703. <Property Name="email" Type="Edm.String" Unicode="false"/>
  704. <Property Name="invitedBy" Type="microsoft.graph.identitySet"/>
  705. <Property Name="redeemedBy" Type="Edm.String" Unicode="false"/>
  706. <Property Name="signInRequired" Type="Edm.Boolean"/>
  707. </ComplexType>
  708. <ComplexType Name="sharingLink">
  709. <Property Name="application" Type="microsoft.graph.identity"/>
  710. <Property Name="type" Type="Edm.String" Unicode="false"/>
  711. <Property Name="webUrl" Type="Edm.String" Unicode="false"/>
  712. </ComplexType>
  713. <ComplexType Name="thumbnail">
  714. <Property Name="content" Type="Edm.Stream"/>
  715. <Property Name="height" Type="Edm.Int32"/>
  716. <Property Name="url" Type="Edm.String" Unicode="false"/>
  717. <Property Name="width" Type="Edm.Int32"/>
  718. </ComplexType>
  719. <EntityType Name="subscription" BaseType="microsoft.graph.entity">
  720. <Property Name="resource" Type="Edm.String" Nullable="false" Unicode="false"/>
  721. <Property Name="changeType" Type="Edm.String" Nullable="false" Unicode="false"/>
  722. <Property Name="clientState" Type="Edm.String" Unicode="false"/>
  723. <Property Name="notificationUrl" Type="Edm.String" Nullable="false" Unicode="false"/>
  724. <Property Name="expirationDateTime" Type="Edm.DateTimeOffset"/>
  725. </EntityType>
  726. <Action Name="checkMemberGroups" IsBound="true">
  727. <Parameter Name="bindingParameter" Type="microsoft.graph.directoryObject" Nullable="false"/>
  728. <Parameter Name="groupIds" Type="Collection(Edm.String)" Nullable="false" Unicode="false"/>
  729. <ReturnType Type="Collection(Edm.String)" Nullable="false" Unicode="false"/>
  730. </Action>
  731. <Action Name="getMemberGroups" IsBound="true">
  732. <Parameter Name="bindingParameter" Type="microsoft.graph.directoryObject" Nullable="false"/>
  733. <Parameter Name="securityEnabledOnly" Type="Edm.Boolean"/>
  734. <ReturnType Type="Collection(Edm.String)" Nullable="false" Unicode="false"/>
  735. </Action>
  736. <Action Name="getMemberObjects" IsBound="true">
  737. <Parameter Name="bindingParameter" Type="microsoft.graph.directoryObject" Nullable="false"/>
  738. <Parameter Name="securityEnabledOnly" Type="Edm.Boolean"/>
  739. <ReturnType Type="Collection(Edm.String)" Nullable="false" Unicode="false"/>
  740. </Action>
  741. <Action Name="assignLicense" IsBound="true">
  742. <Parameter Name="bindingParameter" Type="microsoft.graph.user" Nullable="false"/>
  743. <Parameter Name="addLicenses" Type="Collection(microsoft.graph.assignedLicense)" Nullable="false"/>
  744. <Parameter Name="removeLicenses" Type="Collection(Edm.Guid)" Nullable="false"/>
  745. <ReturnType Type="microsoft.graph.user"/>
  746. </Action>
  747. <Action Name="changePassword" IsBound="true">
  748. <Parameter Name="bindingParameter" Type="microsoft.graph.user" Nullable="false"/>
  749. <Parameter Name="currentPassword" Type="Edm.String" Unicode="false"/>
  750. <Parameter Name="newPassword" Type="Edm.String" Unicode="false"/>
  751. </Action>
  752. <Action Name="sendMail" IsBound="true">
  753. <Parameter Name="bindingParameter" Type="microsoft.graph.user"/>
  754. <Parameter Name="Message" Type="microsoft.graph.message" Nullable="false"/>
  755. <Parameter Name="SaveToSentItems" Type="Edm.Boolean"/>
  756. </Action>
  757. <Function Name="reminderView" IsBound="true">
  758. <Parameter Name="bindingparameter" Type="microsoft.graph.user"/>
  759. <Parameter Name="StartDateTime" Type="Edm.String" Nullable="false" Unicode="false"/>
  760. <Parameter Name="EndDateTime" Type="Edm.String" Unicode="false"/>
  761. <ReturnType Type="Collection(microsoft.graph.reminder)" Nullable="false"/>
  762. </Function>
  763. <Action Name="copy" IsBound="true" EntitySetPath="bindingParameter">
  764. <Parameter Name="bindingParameter" Type="microsoft.graph.mailFolder"/>
  765. <Parameter Name="DestinationId" Type="Edm.String" Unicode="false"/>
  766. <ReturnType Type="microsoft.graph.mailFolder"/>
  767. </Action>
  768. <Action Name="move" IsBound="true" EntitySetPath="bindingParameter">
  769. <Parameter Name="bindingParameter" Type="microsoft.graph.mailFolder"/>
  770. <Parameter Name="DestinationId" Type="Edm.String" Unicode="false"/>
  771. <ReturnType Type="microsoft.graph.mailFolder"/>
  772. </Action>
  773. <Action Name="copy" IsBound="true" EntitySetPath="bindingParameter">
  774. <Parameter Name="bindingParameter" Type="microsoft.graph.message"/>
  775. <Parameter Name="DestinationId" Type="Edm.String" Unicode="false"/>
  776. <ReturnType Type="microsoft.graph.message"/>
  777. </Action>
  778. <Action Name="move" IsBound="true" EntitySetPath="bindingParameter">
  779. <Parameter Name="bindingParameter" Type="microsoft.graph.message"/>
  780. <Parameter Name="DestinationId" Type="Edm.String" Unicode="false"/>
  781. <ReturnType Type="microsoft.graph.message"/>
  782. </Action>
  783. <Action Name="createReply" IsBound="true" EntitySetPath="bindingParameter">
  784. <Parameter Name="bindingParameter" Type="microsoft.graph.message"/>
  785. <ReturnType Type="microsoft.graph.message"/>
  786. </Action>
  787. <Action Name="createReplyAll" IsBound="true" EntitySetPath="bindingParameter">
  788. <Parameter Name="bindingParameter" Type="microsoft.graph.message"/>
  789. <ReturnType Type="microsoft.graph.message"/>
  790. </Action>
  791. <Action Name="createForward" IsBound="true" EntitySetPath="bindingParameter">
  792. <Parameter Name="bindingParameter" Type="microsoft.graph.message"/>
  793. <ReturnType Type="microsoft.graph.message"/>
  794. </Action>
  795. <Action Name="reply" IsBound="true">
  796. <Parameter Name="bindingParameter" Type="microsoft.graph.message"/>
  797. <Parameter Name="Comment" Type="Edm.String" Unicode="false"/>
  798. </Action>
  799. <Action Name="replyAll" IsBound="true">
  800. <Parameter Name="bindingParameter" Type="microsoft.graph.message"/>
  801. <Parameter Name="Comment" Type="Edm.String" Unicode="false"/>
  802. </Action>
  803. <Action Name="forward" IsBound="true">
  804. <Parameter Name="bindingParameter" Type="microsoft.graph.message"/>
  805. <Parameter Name="Comment" Type="Edm.String" Unicode="false"/>
  806. <Parameter Name="ToRecipients" Type="Collection(microsoft.graph.recipient)"/>
  807. </Action>
  808. <Action Name="send" IsBound="true">
  809. <Parameter Name="bindingParameter" Type="microsoft.graph.message"/>
  810. </Action>
  811. <Action Name="accept" IsBound="true">
  812. <Parameter Name="bindingParameter" Type="microsoft.graph.event"/>
  813. <Parameter Name="Comment" Type="Edm.String" Unicode="false"/>
  814. <Parameter Name="SendResponse" Type="Edm.Boolean"/>
  815. </Action>
  816. <Action Name="decline" IsBound="true">
  817. <Parameter Name="bindingParameter" Type="microsoft.graph.event"/>
  818. <Parameter Name="Comment" Type="Edm.String" Unicode="false"/>
  819. <Parameter Name="SendResponse" Type="Edm.Boolean"/>
  820. </Action>
  821. <Action Name="tentativelyAccept" IsBound="true">
  822. <Parameter Name="bindingParameter" Type="microsoft.graph.event"/>
  823. <Parameter Name="Comment" Type="Edm.String" Unicode="false"/>
  824. <Parameter Name="SendResponse" Type="Edm.Boolean"/>
  825. </Action>
  826. <Action Name="snoozeReminder" IsBound="true">
  827. <Parameter Name="bindingParameter" Type="microsoft.graph.event"/>
  828. <Parameter Name="NewReminderTime" Type="microsoft.graph.dateTimeTimeZone" Nullable="false"/>
  829. </Action>
  830. <Action Name="dismissReminder" IsBound="true">
  831. <Parameter Name="bindingParameter" Type="microsoft.graph.event"/>
  832. </Action>
  833. <Action Name="subscribeByMail" IsBound="true">
  834. <Parameter Name="bindingParameter" Type="microsoft.graph.group"/>
  835. </Action>
  836. <Action Name="unsubscribeByMail" IsBound="true">
  837. <Parameter Name="bindingParameter" Type="microsoft.graph.group"/>
  838. </Action>
  839. <Action Name="addFavorite" IsBound="true">
  840. <Parameter Name="bindingParameter" Type="microsoft.graph.group"/>
  841. </Action>
  842. <Action Name="removeFavorite" IsBound="true">
  843. <Parameter Name="bindingParameter" Type="microsoft.graph.group"/>
  844. </Action>
  845. <Action Name="resetUnseenCount" IsBound="true">
  846. <Parameter Name="bindingParameter" Type="microsoft.graph.group"/>
  847. </Action>
  848. <Action Name="reply" IsBound="true">
  849. <Parameter Name="bindingParameter" Type="microsoft.graph.conversationThread"/>
  850. <Parameter Name="Post" Type="microsoft.graph.post" Nullable="false"/>
  851. </Action>
  852. <Action Name="forward" IsBound="true">
  853. <Parameter Name="bindingParameter" Type="microsoft.graph.post"/>
  854. <Parameter Name="Comment" Type="Edm.String" Unicode="false"/>
  855. <Parameter Name="ToRecipients" Type="Collection(microsoft.graph.recipient)" Nullable="false"/>
  856. </Action>
  857. <Action Name="reply" IsBound="true">
  858. <Parameter Name="bindingParameter" Type="microsoft.graph.post"/>
  859. <Parameter Name="Post" Type="microsoft.graph.post" Nullable="false"/>
  860. </Action>
  861. <Function Name="search" IsBound="true">
  862. <Parameter Name="bindingParameter" Type="microsoft.graph.driveItem" Nullable="false"/>
  863. <Parameter Name="q" Type="Edm.String" Unicode="false"/>
  864. <ReturnType Type="Collection(microsoft.graph.driveItem)" Nullable="false"/>
  865. </Function>
  866. <Action Name="createLink" IsBound="true">
  867. <Parameter Name="bindingParameter" Type="microsoft.graph.driveItem" Nullable="false"/>
  868. <Parameter Name="type" Type="Edm.String" Nullable="false" Unicode="false"/>
  869. <Parameter Name="scope" Type="Edm.String" Unicode="false"/>
  870. <ReturnType Type="microsoft.graph.permission" Nullable="false"/>
  871. </Action>
  872. <Function Name="delta" IsBound="true">
  873. <Parameter Name="bindingParameter" Type="microsoft.graph.driveItem" Nullable="false"/>
  874. <Parameter Name="token" Type="Edm.String" Unicode="false"/>
  875. <ReturnType Type="Collection(microsoft.graph.driveItem)" Nullable="false"/>
  876. </Function>
  877. <Function Name="delta" IsBound="true">
  878. <Parameter Name="bindingParameter" Type="microsoft.graph.driveItem" Nullable="false"/>
  879. <ReturnType Type="Collection(microsoft.graph.driveItem)" Nullable="false"/>
  880. </Function>
  881. <Function Name="recent" IsBound="true">
  882. <Parameter Name="bindingParameter" Type="microsoft.graph.drive" Nullable="false"/>
  883. <ReturnType Type="Collection(microsoft.graph.driveItem)" Nullable="false"/>
  884. </Function>
  885. <Function Name="sharedWithMe" IsBound="true">
  886. <Parameter Name="bindingParameter" Type="microsoft.graph.drive" Nullable="false"/>
  887. <ReturnType Type="Collection(microsoft.graph.driveItem)" Nullable="false"/>
  888. </Function>
  889. <Action Name="copy" IsBound="true">
  890. <Parameter Name="bindingParameter" Type="microsoft.graph.driveItem" Nullable="false"/>
  891. <Parameter Name="name" Type="Edm.String" Unicode="false"/>
  892. <Parameter Name="parentReference" Type="microsoft.graph.itemReference"/>
  893. <ReturnType Type="microsoft.graph.driveItem" Nullable="false"/>
  894. </Action>
  895. <Term Name="sourceUrl" Type="Edm.String" AppliesTo="microsoft.graph.driveItem"/>
  896. <Term Name="downloadUrl" Type="Edm.String" AppliesTo="microsoft.graph.driveItem"/>
  897. <Term Name="conflictBehavior" Type="Edm.String" AppliesTo="microsoft.graph.driveItem"/>
  898. <EntityContainer Name="GraphService">
  899. <EntitySet Name="directoryObjects" EntityType="microsoft.graph.directoryObject"/>
  900. <EntitySet Name="devices" EntityType="microsoft.graph.device">
  901. <NavigationPropertyBinding Path="registeredOwners" Target="directoryObjects"/>
  902. <NavigationPropertyBinding Path="registeredUsers" Target="directoryObjects"/>
  903. </EntitySet>
  904. <EntitySet Name="groups" EntityType="microsoft.graph.group">
  905. <NavigationPropertyBinding Path="members" Target="directoryObjects"/>
  906. <NavigationPropertyBinding Path="memberOf" Target="directoryObjects"/>
  907. <NavigationPropertyBinding Path="createdOnBehalfOf" Target="directoryObjects"/>
  908. <NavigationPropertyBinding Path="owners" Target="directoryObjects"/>
  909. <NavigationPropertyBinding Path="microsoft.graph.driveItem/lastModifiedByUser" Target="users"/>
  910. <NavigationPropertyBinding Path="microsoft.graph.driveItem/createdByUser" Target="users"/>
  911. </EntitySet>
  912. <EntitySet Name="directoryRoles" EntityType="microsoft.graph.directoryRole">
  913. <NavigationPropertyBinding Path="members" Target="directoryObjects"/>
  914. </EntitySet>
  915. <EntitySet Name="directoryRoleTemplates" EntityType="microsoft.graph.directoryRoleTemplate"/>
  916. <EntitySet Name="organization" EntityType="microsoft.graph.organization"/>
  917. <EntitySet Name="subscribedSkus" EntityType="microsoft.graph.subscribedSku"/>
  918. <EntitySet Name="users" EntityType="microsoft.graph.user">
  919. <NavigationPropertyBinding Path="ownedDevices" Target="directoryObjects"/>
  920. <NavigationPropertyBinding Path="registeredDevices" Target="directoryObjects"/>
  921. <NavigationPropertyBinding Path="manager" Target="directoryObjects"/>
  922. <NavigationPropertyBinding Path="directReports" Target="directoryObjects"/>
  923. <NavigationPropertyBinding Path="memberOf" Target="directoryObjects"/>
  924. <NavigationPropertyBinding Path="createdObjects" Target="directoryObjects"/>
  925. <NavigationPropertyBinding Path="ownedObjects" Target="directoryObjects"/>
  926. <NavigationPropertyBinding Path="microsoft.graph.driveItem/lastModifiedByUser" Target="users"/>
  927. <NavigationPropertyBinding Path="microsoft.graph.driveItem/createdByUser" Target="users"/>
  928. </EntitySet>
  929. <EntitySet Name="drives" EntityType="microsoft.graph.drive">
  930. <NavigationPropertyBinding Path="microsoft.graph.driveItem/lastModifiedByUser" Target="users"/>
  931. <NavigationPropertyBinding Path="microsoft.graph.driveItem/createdByUser" Target="users"/>
  932. </EntitySet>
  933. <EntitySet Name="subscriptions" EntityType="microsoft.graph.subscription"/>
  934. <Singleton Name="me" Type="microsoft.graph.user">
  935. <NavigationPropertyBinding Path="ownedDevices" Target="directoryObjects"/>
  936. <NavigationPropertyBinding Path="registeredDevices" Target="directoryObjects"/>
  937. <NavigationPropertyBinding Path="manager" Target="directoryObjects"/>
  938. <NavigationPropertyBinding Path="directReports" Target="directoryObjects"/>
  939. <NavigationPropertyBinding Path="memberOf" Target="directoryObjects"/>
  940. <NavigationPropertyBinding Path="createdObjects" Target="directoryObjects"/>
  941. <NavigationPropertyBinding Path="ownedObjects" Target="directoryObjects"/>
  942. </Singleton>
  943. <Singleton Name="drive" Type="microsoft.graph.drive">
  944. <NavigationPropertyBinding Path="microsoft.graph.driveItem/lastModifiedByUser" Target="users"/>
  945. <NavigationPropertyBinding Path="microsoft.graph.driveItem/createdByUser" Target="users"/>
  946. </Singleton>
  947. </EntityContainer>
  948. <Annotations Target="microsoft.graph.directoryObject">
  949. <Annotation Term="Org.OData.Capabilities.V1.ExpandRestrictions">
  950. <Record>
  951. <PropertyValue Property="Expandable" Bool="false"/>
  952. </Record>
  953. </Annotation>
  954. <Annotation Term="Org.OData.Capabilities.V1.NavigationRestrictions">
  955. <Record>
  956. <PropertyValue Property="Referenceable" Bool="false"/>
  957. </Record>
  958. </Annotation>
  959. <Annotation Term="Org.OData.Capabilities.V1.SelectRestrictions">
  960. <Record>
  961. <PropertyValue Property="Selectable" Bool="false"/>
  962. </Record>
  963. </Annotation>
  964. <Annotation Term="Org.OData.Capabilities.V1.CountRestrictions">
  965. <Record>
  966. <PropertyValue Property="Countable" Bool="false"/>
  967. </Record>
  968. </Annotation>
  969. <Annotation Term="Org.OData.Capabilities.V1.FilterRestrictions">
  970. <Record>
  971. <PropertyValue Property="Filterable" Bool="false"/>
  972. </Record>
  973. </Annotation>
  974. <Annotation Term="Org.OData.Capabilities.V1.SkipSupported" Bool="false"/>
  975. </Annotations>
  976. <Annotations Target="microsoft.graph.directoryRole">
  977. <Annotation Term="Org.OData.Capabilities.V1.TopSupported" Bool="false"/>
  978. </Annotations>
  979. <Annotations Target="microsoft.graph.directoryRoleTemplate">
  980. <Annotation Term="Org.OData.Capabilities.V1.TopSupported" Bool="false"/>
  981. </Annotations>
  982. <Annotations Target="microsoft.graph.subscribedSku">
  983. <Annotation Term="Org.OData.Capabilities.V1.ExpandRestrictions">
  984. <Record>
  985. <PropertyValue Property="Expandable" Bool="false"/>
  986. </Record>
  987. </Annotation>
  988. <Annotation Term="Org.OData.Capabilities.V1.NavigationRestrictions">
  989. <Record>
  990. <PropertyValue Property="Referenceable" Bool="false"/>
  991. </Record>
  992. </Annotation>
  993. <Annotation Term="Org.OData.Capabilities.V1.SelectRestrictions">
  994. <Record>
  995. <PropertyValue Property="Selectable" Bool="false"/>
  996. </Record>
  997. </Annotation>
  998. <Annotation Term="Org.OData.Capabilities.V1.CountRestrictions">
  999. <Record>
  1000. <PropertyValue Property="Countable" Bool="false"/>
  1001. </Record>
  1002. </Annotation>
  1003. <Annotation Term="Org.OData.Capabilities.V1.FilterRestrictions">
  1004. <Record>
  1005. <PropertyValue Property="Filterable" Bool="false"/>
  1006. </Record>
  1007. </Annotation>
  1008. <Annotation Term="Org.OData.Capabilities.V1.TopSupported" Bool="false"/>
  1009. <Annotation Term="Org.OData.Capabilities.V1.SkipSupported" Bool="false"/>
  1010. </Annotations>
  1011. <Annotations Target="microsoft.graph.subscription">
  1012. <Annotation Term="Org.OData.Capabilities.V1.ExpandRestrictions">
  1013. <Record>
  1014. <PropertyValue Property="Expandable" Bool="false"/>
  1015. </Record>
  1016. </Annotation>
  1017. <Annotation Term="Org.OData.Capabilities.V1.NavigationRestrictions">
  1018. <Record>
  1019. <PropertyValue Property="Referenceable" Bool="false"/>
  1020. </Record>
  1021. </Annotation>
  1022. <Annotation Term="Org.OData.Capabilities.V1.SelectRestrictions">
  1023. <Record>
  1024. <PropertyValue Property="Selectable" Bool="false"/>
  1025. </Record>
  1026. </Annotation>
  1027. <Annotation Term="Org.OData.Capabilities.V1.CountRestrictions">
  1028. <Record>
  1029. <PropertyValue Property="Countable" Bool="false"/>
  1030. </Record>
  1031. </Annotation>
  1032. <Annotation Term="Org.OData.Capabilities.V1.FilterRestrictions">
  1033. <Record>
  1034. <PropertyValue Property="Filterable" Bool="false"/>
  1035. </Record>
  1036. </Annotation>
  1037. <Annotation Term="Org.OData.Capabilities.V1.SortRestrictions">
  1038. <Record>
  1039. <PropertyValue Property="Sortable" Bool="false"/>
  1040. </Record>
  1041. </Annotation>
  1042. <Annotation Term="Org.OData.Capabilities.V1.SkipSupported" Bool="false"/>
  1043. <Annotation Term="Org.OData.Capabilities.V1.TopSupported" Bool="false"/>
  1044. </Annotations>
  1045. </Schema>
  1046. </edmx:DataServices>
  1047. </edmx:Edmx>