From 0ae42a79bfc9cb0e6f42bd3e4e4d7e56c1236cbe Mon Sep 17 00:00:00 2001 From: Vincent Biret Date: Wed, 6 Sep 2023 14:57:13 -0400 Subject: [PATCH 1/2] - removes duplicated openapi extensions --- .../Edm/ODataSegment.cs | 6 +- .../Edm/RecordExpressionExtensions.cs | 20 +- .../Generator/OpenApiErrorSchemaGenerator.cs | 2 +- .../Generator/OpenApiSchemaGenerator.cs | 7 +- .../OpenApiDeprecationExtension.cs | 48 +- .../OpenApiEnumFlagsExtension.cs | 31 +- .../OpenApiEnumValuesDescriptionExtension.cs | 74 - .../OpenApiPrimaryErrorMessageExtension.cs | 37 +- .../Operation/OperationHandler.cs | 3 +- .../PublicAPI.Unshipped.txt | 15 - .../Vocabulary/Core/RevisionRecord.cs | 6 +- .../OpenApiDeprecationExtensionTests.cs | 78 - .../OpenApiEnumFlagsExtensionTests.cs | 89 - ...nApiEnumValuesDescriptionExtensionTexts.cs | 75 - ...penApiPrimaryErrorMessageExtensionTests.cs | 56 - .../Resources/TripService.OpenApi.V2.json | 1567 ++++++++--------- .../Resources/TripService.OpenApi.V2.yaml | 1565 ++++++++-------- .../Resources/TripService.OpenApi.json | 1567 ++++++++--------- .../Resources/TripService.OpenApi.yaml | 1565 ++++++++-------- 19 files changed, 3166 insertions(+), 3645 deletions(-) delete mode 100644 src/Microsoft.OpenApi.OData.Reader/OpenApiExtensions/OpenApiEnumValuesDescriptionExtension.cs delete mode 100644 test/Microsoft.OpenAPI.OData.Reader.Tests/OpenApiExtensions/OpenApiDeprecationExtensionTests.cs delete mode 100644 test/Microsoft.OpenAPI.OData.Reader.Tests/OpenApiExtensions/OpenApiEnumFlagsExtensionTests.cs delete mode 100644 test/Microsoft.OpenAPI.OData.Reader.Tests/OpenApiExtensions/OpenApiEnumValuesDescriptionExtensionTexts.cs delete mode 100644 test/Microsoft.OpenAPI.OData.Reader.Tests/OpenApiExtensions/OpenApiPrimaryErrorMessageExtensionTests.cs diff --git a/src/Microsoft.OpenApi.OData.Reader/Edm/ODataSegment.cs b/src/Microsoft.OpenApi.OData.Reader/Edm/ODataSegment.cs index 2be64b5b..ddee0ed7 100644 --- a/src/Microsoft.OpenApi.OData.Reader/Edm/ODataSegment.cs +++ b/src/Microsoft.OpenApi.OData.Reader/Edm/ODataSegment.cs @@ -9,7 +9,6 @@ using Microsoft.OData.Edm; using Microsoft.OpenApi.OData.Common; using Microsoft.OData.Edm.Vocabularies; -using Microsoft.OpenApi.OData.OpenApiExtensions; namespace Microsoft.OpenApi.OData.Edm { @@ -109,7 +108,7 @@ public string GetPathItemName(OpenApiConvertSettings settings) return GetPathItemName(settings, new HashSet()); } /// - /// Profides a suffix for the operation id based on the operation path. + /// Provides a suffix for the operation id based on the operation path. /// /// Path to use to deduplicate. /// The settings. @@ -131,7 +130,8 @@ public string GetPathHash(OpenApiConvertSettings settings, ODataPath path = defa /// /// Provides any deprecation information for the segment. /// - public OpenApiDeprecationExtension Deprecation { get; set; } + [Obsolete("This property never returned any value or was used by the library.")] + public Microsoft.OpenApi.OData.OpenApiExtensions.OpenApiDeprecationExtension Deprecation { get; set; } /// /// Returns the list of this segment refers to. /// diff --git a/src/Microsoft.OpenApi.OData.Reader/Edm/RecordExpressionExtensions.cs b/src/Microsoft.OpenApi.OData.Reader/Edm/RecordExpressionExtensions.cs index d3064a5c..01cf7aea 100644 --- a/src/Microsoft.OpenApi.OData.Reader/Edm/RecordExpressionExtensions.cs +++ b/src/Microsoft.OpenApi.OData.Reader/Edm/RecordExpressionExtensions.cs @@ -29,7 +29,7 @@ internal static class RecordExpressionExtensions Utils.CheckArgumentNull(record, nameof(record)); Utils.CheckArgumentNull(propertyName, nameof(propertyName)); - return (record.Properties?.FirstOrDefault(e => e.Name == propertyName) is IEdmPropertyConstructor property && + return (record.Properties?.FirstOrDefault(e => propertyName.Equals(e.Name, StringComparison.Ordinal)) is IEdmPropertyConstructor property && property.Value is IEdmIntegerConstantExpression value) ? value.Value : null; @@ -46,7 +46,7 @@ public static string GetString(this IEdmRecordExpression record, string property Utils.CheckArgumentNull(record, nameof(record)); Utils.CheckArgumentNull(propertyName, nameof(propertyName)); - return (record.Properties?.FirstOrDefault(e => e.Name == propertyName) is IEdmPropertyConstructor property && + return (record.Properties?.FirstOrDefault(e => propertyName.Equals(e.Name, StringComparison.Ordinal)) is IEdmPropertyConstructor property && property.Value is IEdmStringConstantExpression value) ? value.Value : null; @@ -63,7 +63,7 @@ public static string GetString(this IEdmRecordExpression record, string property Utils.CheckArgumentNull(record, nameof(record)); Utils.CheckArgumentNull(propertyName, nameof(propertyName)); - return (record.Properties?.FirstOrDefault(e => e.Name == propertyName) is IEdmPropertyConstructor property && + return (record.Properties?.FirstOrDefault(e => propertyName.Equals(e.Name, StringComparison.Ordinal)) is IEdmPropertyConstructor property && property.Value is IEdmBooleanConstantExpression value) ? value.Value : null; @@ -80,7 +80,7 @@ public static string GetString(this IEdmRecordExpression record, string property Utils.CheckArgumentNull(record, nameof(record)); Utils.CheckArgumentNull(propertyName, nameof(propertyName)); - return (record.Properties?.FirstOrDefault(e => e.Name == propertyName) is IEdmPropertyConstructor property && + return (record.Properties?.FirstOrDefault(e => propertyName.Equals(e.Name, StringComparison.Ordinal)) is IEdmPropertyConstructor property && property.Value is IEdmDateConstantExpression value) ? value.Value : null; @@ -99,7 +99,7 @@ public static string GetString(this IEdmRecordExpression record, string property Utils.CheckArgumentNull(record, nameof(record)); Utils.CheckArgumentNull(propertyName, nameof(propertyName)); - return (record.Properties?.FirstOrDefault(e => e.Name == propertyName) is IEdmPropertyConstructor property && + return (record.Properties?.FirstOrDefault(e => propertyName.Equals(e.Name, StringComparison.Ordinal)) is IEdmPropertyConstructor property && property.Value is IEdmEnumMemberExpression value && value.EnumMembers != null && value.EnumMembers.Any() && @@ -121,7 +121,7 @@ public static T GetRecord(this IEdmRecordExpression record, string propertyNa Utils.CheckArgumentNull(record, nameof(record)); Utils.CheckArgumentNull(propertyName, nameof(propertyName)); - if (record.Properties?.FirstOrDefault(e => e.Name == propertyName) is IEdmPropertyConstructor property && + if (record.Properties?.FirstOrDefault(e => propertyName.Equals(e.Name, StringComparison.Ordinal)) is IEdmPropertyConstructor property && property.Value is IEdmRecordExpression recordValue) { T a = new(); @@ -143,7 +143,7 @@ public static string GetPropertyPath(this IEdmRecordExpression record, string pr Utils.CheckArgumentNull(record, nameof(record)); Utils.CheckArgumentNull(propertyName, nameof(propertyName)); - return (record.Properties?.FirstOrDefault(e => e.Name == propertyName) is IEdmPropertyConstructor property && + return (record.Properties?.FirstOrDefault(e => propertyName.Equals(e.Name, StringComparison.Ordinal)) is IEdmPropertyConstructor property && property.Value is IEdmPathExpression value) ? value.Path : null; @@ -160,7 +160,7 @@ public static IList GetCollectionPropertyPath(this IEdmRecordExpression Utils.CheckArgumentNull(record, nameof(record)); Utils.CheckArgumentNull(propertyName, nameof(propertyName)); - if (record.Properties?.FirstOrDefault(e => e.Name == propertyName) is IEdmPropertyConstructor property && + if (record.Properties?.FirstOrDefault(e => propertyName.Equals(e.Name, StringComparison.Ordinal)) is IEdmPropertyConstructor property && property.Value is IEdmCollectionExpression value && value.Elements != null) { IList properties = @@ -189,7 +189,7 @@ public static IList GetCollection(this IEdmRecordExpression record, stri Utils.CheckArgumentNull(record, nameof(record)); Utils.CheckArgumentNull(propertyName, nameof(propertyName)); - if (record.Properties?.FirstOrDefault(e => e.Name == propertyName) is IEdmPropertyConstructor property && + if (record.Properties?.FirstOrDefault(e => propertyName.Equals(e.Name, StringComparison.Ordinal)) is IEdmPropertyConstructor property && property.Value is IEdmCollectionExpression collection && collection.Elements != null) { IList items = collection.Elements @@ -215,7 +215,7 @@ public static IList GetCollection(this IEdmRecordExpression record, string Utils.CheckArgumentNull(record, nameof(record)); Utils.CheckArgumentNull(propertyName, nameof(propertyName)); - if (record.Properties?.FirstOrDefault(e => e.Name == propertyName) is IEdmPropertyConstructor property && + if (record.Properties?.FirstOrDefault(e => propertyName.Equals(e.Name, StringComparison.Ordinal)) is IEdmPropertyConstructor property && property.Value is IEdmCollectionExpression collection && collection.Elements != null) { IList items = new List(); diff --git a/src/Microsoft.OpenApi.OData.Reader/Generator/OpenApiErrorSchemaGenerator.cs b/src/Microsoft.OpenApi.OData.Reader/Generator/OpenApiErrorSchemaGenerator.cs index a5fa11c1..beeaa1d1 100644 --- a/src/Microsoft.OpenApi.OData.Reader/Generator/OpenApiErrorSchemaGenerator.cs +++ b/src/Microsoft.OpenApi.OData.Reader/Generator/OpenApiErrorSchemaGenerator.cs @@ -10,7 +10,7 @@ using Microsoft.OpenApi.Models; using Microsoft.OpenApi.OData.Common; using Microsoft.OpenApi.OData.Edm; -using Microsoft.OpenApi.OData.OpenApiExtensions; +using Microsoft.OpenApi.MicrosoftExtensions; namespace Microsoft.OpenApi.OData.Generator { diff --git a/src/Microsoft.OpenApi.OData.Reader/Generator/OpenApiSchemaGenerator.cs b/src/Microsoft.OpenApi.OData.Reader/Generator/OpenApiSchemaGenerator.cs index 8ed5853c..7511a8d1 100644 --- a/src/Microsoft.OpenApi.OData.Reader/Generator/OpenApiSchemaGenerator.cs +++ b/src/Microsoft.OpenApi.OData.Reader/Generator/OpenApiSchemaGenerator.cs @@ -15,7 +15,7 @@ using Microsoft.OpenApi.Exceptions; using System.Linq; using Microsoft.OpenApi.Interfaces; -using Microsoft.OpenApi.OData.OpenApiExtensions; +using Microsoft.OpenApi.MicrosoftExtensions; using Microsoft.OpenApi.OData.Vocabulary.Core; namespace Microsoft.OpenApi.OData.Generator @@ -324,9 +324,8 @@ public static OpenApiSchema CreateEnumTypeSchema(this ODataContext context, IEdm var enumFlagsExtension = new OpenApiEnumFlagsExtension { IsFlags = true, - Style = "simple" }; - schema.Extensions.Add(enumFlagsExtension.Name, enumFlagsExtension); + schema.Extensions.Add(OpenApiEnumFlagsExtension.Name, enumFlagsExtension); } var extension = (context.Settings.OpenApiSpecVersion == OpenApiSpecVersion.OpenApi2_0 || @@ -345,7 +344,7 @@ public static OpenApiSchema CreateEnumTypeSchema(this ODataContext context, IEdm } if(extension?.ValuesDescriptions.Any() ?? false) - schema.Extensions.Add(extension.Name, extension); + schema.Extensions.Add(OpenApiEnumValuesDescriptionExtension.Name, extension); schema.Title = enumType.Name; return schema; } diff --git a/src/Microsoft.OpenApi.OData.Reader/OpenApiExtensions/OpenApiDeprecationExtension.cs b/src/Microsoft.OpenApi.OData.Reader/OpenApiExtensions/OpenApiDeprecationExtension.cs index a062443d..6cab26a5 100644 --- a/src/Microsoft.OpenApi.OData.Reader/OpenApiExtensions/OpenApiDeprecationExtension.cs +++ b/src/Microsoft.OpenApi.OData.Reader/OpenApiExtensions/OpenApiDeprecationExtension.cs @@ -4,57 +4,23 @@ // ------------------------------------------------------------ using System; -using Microsoft.OpenApi.Interfaces; -using Microsoft.OpenApi.OData.Common; -using Microsoft.OpenApi.Writers; namespace Microsoft.OpenApi.OData.OpenApiExtensions; -/// -/// Extension element for OpenAPI to add deprecation information. x-ms-deprecation -/// -public class OpenApiDeprecationExtension : IOpenApiExtension +/// +[Obsolete("This class is deprecated. Use Microsoft.OpenApi.MicrosoftExtensions.OpenApiDeprecationExtension instead.")] +public class OpenApiDeprecationExtension : Microsoft.OpenApi.MicrosoftExtensions.OpenApiDeprecationExtension { /// - /// Name of the extension as used in the description. + /// Name of the extension use in OpenAPI document. /// - public string Name => "x-ms-deprecation"; + public new string Name => Microsoft.OpenApi.MicrosoftExtensions.OpenApiDeprecationExtension.Name; /// /// The date at which the element has been/will be removed entirely from the service. /// - public DateTime? RemovalDate { get; set; } + public new DateTime? RemovalDate { get => base.RemovalDate.HasValue ? base.RemovalDate.Value.DateTime : default; set => base.RemovalDate = value.HasValue ? new DateTimeOffset(value.Value) : default; } /// /// The date at which the element has been/will be deprecated. /// - public DateTime? Date { get; set; } - /// - /// The version this revision was introduced. - /// - public string Version { get; set; } - /// - /// The description of the revision. - /// - public string Description { get; set; } - /// - public void Write(IOpenApiWriter writer, OpenApiSpecVersion specVersion) - { - if(writer == null) - throw new ArgumentNullException(nameof(writer)); - - if(RemovalDate.HasValue || Date.HasValue || !string.IsNullOrEmpty(Version) || !string.IsNullOrEmpty(Description)) - { - writer.WriteStartObject(); - - if(RemovalDate.HasValue) - writer.WriteProperty(nameof(RemovalDate).ToFirstCharacterLowerCase(), RemovalDate.Value); - if(Date.HasValue) - writer.WriteProperty(nameof(Date).ToFirstCharacterLowerCase(), Date.Value); - if(!string.IsNullOrEmpty(Version)) - writer.WriteProperty(nameof(Version).ToFirstCharacterLowerCase(), Version); - if(!string.IsNullOrEmpty(Description)) - writer.WriteProperty(nameof(Description).ToFirstCharacterLowerCase(), Description); - - writer.WriteEndObject(); - } - } + public new DateTime? Date { get => base.Date.HasValue ? base.Date.Value.DateTime : default; set => base.Date = value.HasValue ? new DateTimeOffset(value.Value) : default; } } \ No newline at end of file diff --git a/src/Microsoft.OpenApi.OData.Reader/OpenApiExtensions/OpenApiEnumFlagsExtension.cs b/src/Microsoft.OpenApi.OData.Reader/OpenApiExtensions/OpenApiEnumFlagsExtension.cs index cc8dd86e..0929d483 100644 --- a/src/Microsoft.OpenApi.OData.Reader/OpenApiExtensions/OpenApiEnumFlagsExtension.cs +++ b/src/Microsoft.OpenApi.OData.Reader/OpenApiExtensions/OpenApiEnumFlagsExtension.cs @@ -4,38 +4,15 @@ // ------------------------------------------------------------ using System; -using Microsoft.OpenApi.Interfaces; -using Microsoft.OpenApi.OData.Common; -using Microsoft.OpenApi.Writers; namespace Microsoft.OpenApi.OData.OpenApiExtensions; -/// -/// Extension element for OpenAPI to add deprecation information. x-ms-enum-flags -/// -public class OpenApiEnumFlagsExtension : IOpenApiExtension +/// +[Obsolete("This class is deprecated. Use Microsoft.OpenApi.MicrosoftExtensions.OpenApiEnumFlagsExtension instead.")] +public class OpenApiEnumFlagsExtension : Microsoft.OpenApi.MicrosoftExtensions.OpenApiEnumFlagsExtension { /// /// Name of the extension as used in the description. /// - public string Name => "x-ms-enum-flags"; - /// - /// Whether the enum is a flagged enum. - /// - public bool IsFlags { get; set; } - /// - /// The serialization style of the flagged enum. - /// - public string Style { get; set; } - /// - public void Write(IOpenApiWriter writer, OpenApiSpecVersion specVersion) - { - if(writer == null) - throw new ArgumentNullException(nameof(writer)); - - writer.WriteStartObject(); - writer.WriteProperty(nameof(IsFlags).ToFirstCharacterLowerCase(), IsFlags); - writer.WriteProperty(nameof(Style).ToFirstCharacterLowerCase(),Style); - writer.WriteEndObject(); - } + public new string Name => Microsoft.OpenApi.MicrosoftExtensions.OpenApiEnumFlagsExtension.Name; } \ No newline at end of file diff --git a/src/Microsoft.OpenApi.OData.Reader/OpenApiExtensions/OpenApiEnumValuesDescriptionExtension.cs b/src/Microsoft.OpenApi.OData.Reader/OpenApiExtensions/OpenApiEnumValuesDescriptionExtension.cs deleted file mode 100644 index 13028562..00000000 --- a/src/Microsoft.OpenApi.OData.Reader/OpenApiExtensions/OpenApiEnumValuesDescriptionExtension.cs +++ /dev/null @@ -1,74 +0,0 @@ -// ------------------------------------------------------------ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License (MIT). See LICENSE in the repo root for license information. -// ------------------------------------------------------------ - -using System; -using System.Collections.Generic; -using System.Linq; -using Microsoft.OpenApi.Interfaces; -using Microsoft.OpenApi.OData.Common; -using Microsoft.OpenApi.Writers; - -namespace Microsoft.OpenApi.OData.OpenApiExtensions; - -/// -/// Extension element for OpenAPI to add enum values descriptions. -/// Based of the AutoRest specification https://github.com/Azure/autorest/blob/main/docs/extensions/readme.md#x-ms-enum -/// -internal class OpenApiEnumValuesDescriptionExtension : IOpenApiExtension -{ - /// - /// Name of the extension as used in the description. - /// - public string Name => "x-ms-enum"; - - /// - /// The of the enum. - /// - public string EnumName { get; set; } - - /// - /// Descriptions for the enum symbols, where the value MUST match the enum symbols in the main description - /// - public List ValuesDescriptions { get; set; } = new(); - - /// - public void Write(IOpenApiWriter writer, OpenApiSpecVersion specVersion) - { - if(writer == null) - throw new ArgumentNullException(nameof(writer)); - if((specVersion == OpenApiSpecVersion.OpenApi2_0 || specVersion == OpenApiSpecVersion.OpenApi3_0) && - !string.IsNullOrEmpty(EnumName) && - ValuesDescriptions.Any()) - { // when we upgrade to 3.1, we don't need to write this extension as JSON schema will support writing enum values - writer.WriteStartObject(); - writer.WriteProperty(nameof(Name).ToFirstCharacterLowerCase(), EnumName); - writer.WriteProperty("modelAsString", false); - writer.WriteRequiredCollection("values", ValuesDescriptions, (w, x) => { - w.WriteStartObject(); - w.WriteProperty(nameof(x.Value).ToFirstCharacterLowerCase(), x.Value); - w.WriteProperty(nameof(x.Description).ToFirstCharacterLowerCase(), x.Description); - w.WriteProperty(nameof(x.Name).ToFirstCharacterLowerCase(), x.Name); - w.WriteEndObject(); - }); - writer.WriteEndObject(); - } - } -} - -internal class EnumDescription : IOpenApiElement -{ - /// - /// The description for the enum symbol - /// - public string Description { get; set; } - /// - /// The symbol for the enum symbol to use for code-generation - /// - public string Name { get; set; } - /// - /// The symbol as described in the main enum schema. - /// - public string Value { get; set; } -} diff --git a/src/Microsoft.OpenApi.OData.Reader/OpenApiExtensions/OpenApiPrimaryErrorMessageExtension.cs b/src/Microsoft.OpenApi.OData.Reader/OpenApiExtensions/OpenApiPrimaryErrorMessageExtension.cs index 4aa4ed6e..81624e5b 100644 --- a/src/Microsoft.OpenApi.OData.Reader/OpenApiExtensions/OpenApiPrimaryErrorMessageExtension.cs +++ b/src/Microsoft.OpenApi.OData.Reader/OpenApiExtensions/OpenApiPrimaryErrorMessageExtension.cs @@ -4,42 +4,11 @@ // ------------------------------------------------------------ using System; -using Microsoft.OpenApi.Any; -using Microsoft.OpenApi.Interfaces; -using Microsoft.OpenApi.Writers; namespace Microsoft.OpenApi.OData.OpenApiExtensions; -/// -/// Extension element for OpenAPI to add tag the primary error message to use on error types. x-ms-primary-error-message -/// -public class OpenApiPrimaryErrorMessageExtension : IOpenApiExtension +/// +[Obsolete("This class is deprecated. Use Microsoft.OpenApi.MicrosoftExtensions.OpenApiPrimaryErrorMessageExtension instead.")] +public class OpenApiPrimaryErrorMessageExtension : Microsoft.OpenApi.MicrosoftExtensions.OpenApiPrimaryErrorMessageExtension { - /// - /// Name of the extension as used in the description. - /// - public static string Name => "x-ms-primary-error-message"; - /// - public void Write(IOpenApiWriter writer, OpenApiSpecVersion specVersion) - { - if(writer == null) - throw new ArgumentNullException(nameof(writer)); - writer.WriteValue(IsPrimaryErrorMessage); - } - /// - /// Whether this property is the primary error message to use on error types. - /// - public bool IsPrimaryErrorMessage { get; set; } - /// - /// Parses the to . - /// - /// The source object. - /// The . - public static OpenApiPrimaryErrorMessageExtension Parse(IOpenApiAny source) - { - if (source is not OpenApiBoolean rawObject) throw new ArgumentOutOfRangeException(nameof(source)); - return new OpenApiPrimaryErrorMessageExtension() { - IsPrimaryErrorMessage = rawObject.Value - }; - } } \ No newline at end of file diff --git a/src/Microsoft.OpenApi.OData.Reader/Operation/OperationHandler.cs b/src/Microsoft.OpenApi.OData.Reader/Operation/OperationHandler.cs index 7d47d8f8..e508b706 100644 --- a/src/Microsoft.OpenApi.OData.Reader/Operation/OperationHandler.cs +++ b/src/Microsoft.OpenApi.OData.Reader/Operation/OperationHandler.cs @@ -7,6 +7,7 @@ using System.Collections.Generic; using System.Linq; using Microsoft.OpenApi.Any; +using Microsoft.OpenApi.MicrosoftExtensions; using Microsoft.OpenApi.Models; using Microsoft.OpenApi.OData.Common; using Microsoft.OpenApi.OData.Edm; @@ -92,7 +93,7 @@ private void SetDeprecation(OpenApiOperation operation) { operation.Deprecated = true; var deprecationDetails = deprecationInfo.GetOpenApiExtension(); - operation.Extensions.Add(deprecationDetails.Name, deprecationDetails); + operation.Extensions.Add(OpenApiDeprecationExtension.Name, deprecationDetails); } } } diff --git a/src/Microsoft.OpenApi.OData.Reader/PublicAPI.Unshipped.txt b/src/Microsoft.OpenApi.OData.Reader/PublicAPI.Unshipped.txt index 2059591e..b3e73a61 100644 --- a/src/Microsoft.OpenApi.OData.Reader/PublicAPI.Unshipped.txt +++ b/src/Microsoft.OpenApi.OData.Reader/PublicAPI.Unshipped.txt @@ -51,20 +51,10 @@ Microsoft.OpenApi.OData.OpenApiConvertSettings.ShowExternalDocs.set -> void Microsoft.OpenApi.OData.OpenApiConvertSettings.UseSuccessStatusCodeRange.get -> bool Microsoft.OpenApi.OData.OpenApiConvertSettings.UseSuccessStatusCodeRange.set -> void Microsoft.OpenApi.OData.OpenApiExtensions.OpenApiEnumFlagsExtension -Microsoft.OpenApi.OData.OpenApiExtensions.OpenApiEnumFlagsExtension.IsFlags.get -> bool -Microsoft.OpenApi.OData.OpenApiExtensions.OpenApiEnumFlagsExtension.IsFlags.set -> void Microsoft.OpenApi.OData.OpenApiExtensions.OpenApiEnumFlagsExtension.Name.get -> string Microsoft.OpenApi.OData.OpenApiExtensions.OpenApiEnumFlagsExtension.OpenApiEnumFlagsExtension() -> void -Microsoft.OpenApi.OData.OpenApiExtensions.OpenApiEnumFlagsExtension.Style.get -> string -Microsoft.OpenApi.OData.OpenApiExtensions.OpenApiEnumFlagsExtension.Style.set -> void -Microsoft.OpenApi.OData.OpenApiExtensions.OpenApiEnumFlagsExtension.Write(Microsoft.OpenApi.Writers.IOpenApiWriter writer, Microsoft.OpenApi.OpenApiSpecVersion specVersion) -> void Microsoft.OpenApi.OData.OpenApiExtensions.OpenApiPrimaryErrorMessageExtension Microsoft.OpenApi.OData.OpenApiExtensions.OpenApiPrimaryErrorMessageExtension.OpenApiPrimaryErrorMessageExtension() -> void -Microsoft.OpenApi.OData.OpenApiExtensions.OpenApiPrimaryErrorMessageExtension.Write(Microsoft.OpenApi.Writers.IOpenApiWriter writer, Microsoft.OpenApi.OpenApiSpecVersion specVersion) -> void -static Microsoft.OpenApi.OData.OpenApiExtensions.OpenApiPrimaryErrorMessageExtension.Name.get -> string -Microsoft.OpenApi.OData.OpenApiExtensions.OpenApiPrimaryErrorMessageExtension.IsPrimaryErrorMessage.get -> bool -Microsoft.OpenApi.OData.OpenApiExtensions.OpenApiPrimaryErrorMessageExtension.IsPrimaryErrorMessage.set -> void -static Microsoft.OpenApi.OData.OpenApiExtensions.OpenApiPrimaryErrorMessageExtension.Parse(Microsoft.OpenApi.Any.IOpenApiAny source) -> Microsoft.OpenApi.OData.OpenApiExtensions.OpenApiPrimaryErrorMessageExtension Microsoft.OpenApi.OData.Vocabulary.Core.LinkRelKey Microsoft.OpenApi.OData.Vocabulary.Core.LinkRelKey.Action = 6 -> Microsoft.OpenApi.OData.Vocabulary.Core.LinkRelKey Microsoft.OpenApi.OData.Vocabulary.Core.LinkRelKey.Create = 2 -> Microsoft.OpenApi.OData.Vocabulary.Core.LinkRelKey @@ -333,13 +323,8 @@ Microsoft.OpenApi.OData.Edm.ODataSegment.Deprecation.set -> void Microsoft.OpenApi.OData.OpenApiExtensions.OpenApiDeprecationExtension Microsoft.OpenApi.OData.OpenApiExtensions.OpenApiDeprecationExtension.OpenApiDeprecationExtension() -> void Microsoft.OpenApi.OData.OpenApiExtensions.OpenApiDeprecationExtension.Name.get -> string -Microsoft.OpenApi.OData.OpenApiExtensions.OpenApiDeprecationExtension.Version.get -> string -Microsoft.OpenApi.OData.OpenApiExtensions.OpenApiDeprecationExtension.Version.set -> void -Microsoft.OpenApi.OData.OpenApiExtensions.OpenApiDeprecationExtension.Description.get -> string -Microsoft.OpenApi.OData.OpenApiExtensions.OpenApiDeprecationExtension.Description.set -> void Microsoft.OpenApi.OData.OpenApiExtensions.OpenApiDeprecationExtension.RemovalDate.get -> System.DateTime? Microsoft.OpenApi.OData.OpenApiExtensions.OpenApiDeprecationExtension.RemovalDate.set -> void Microsoft.OpenApi.OData.OpenApiExtensions.OpenApiDeprecationExtension.Date.get -> System.DateTime? Microsoft.OpenApi.OData.OpenApiExtensions.OpenApiDeprecationExtension.Date.set -> void -Microsoft.OpenApi.OData.OpenApiExtensions.OpenApiDeprecationExtension.Write(Microsoft.OpenApi.Writers.IOpenApiWriter writer, Microsoft.OpenApi.OpenApiSpecVersion specVersion) -> void Microsoft.OpenApi.OData.Common.OpenApiOperationExtensions diff --git a/src/Microsoft.OpenApi.OData.Reader/Vocabulary/Core/RevisionRecord.cs b/src/Microsoft.OpenApi.OData.Reader/Vocabulary/Core/RevisionRecord.cs index b0694845..27a36a45 100644 --- a/src/Microsoft.OpenApi.OData.Reader/Vocabulary/Core/RevisionRecord.cs +++ b/src/Microsoft.OpenApi.OData.Reader/Vocabulary/Core/RevisionRecord.cs @@ -1,7 +1,7 @@ using System; using Microsoft.OData.Edm.Vocabularies; using Microsoft.OpenApi.OData.Edm; -using Microsoft.OpenApi.OData.OpenApiExtensions; +using Microsoft.OpenApi.MicrosoftExtensions; namespace Microsoft.OpenApi.OData.Vocabulary.Core; @@ -37,8 +37,8 @@ internal OpenApiDeprecationExtension GetOpenApiExtension() { return new OpenApiDeprecationExtension { - Date = Date, - RemovalDate = RemovalDate, + Date = Date.HasValue ? new DateTimeOffset(Date.Value, TimeSpan.Zero) : default, + RemovalDate = RemovalDate.HasValue ? new DateTimeOffset(RemovalDate.Value, TimeSpan.Zero) : default, Description = Description, Version = Version, }; diff --git a/test/Microsoft.OpenAPI.OData.Reader.Tests/OpenApiExtensions/OpenApiDeprecationExtensionTests.cs b/test/Microsoft.OpenAPI.OData.Reader.Tests/OpenApiExtensions/OpenApiDeprecationExtensionTests.cs deleted file mode 100644 index add99cbd..00000000 --- a/test/Microsoft.OpenAPI.OData.Reader.Tests/OpenApiExtensions/OpenApiDeprecationExtensionTests.cs +++ /dev/null @@ -1,78 +0,0 @@ -// ------------------------------------------------------------ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License (MIT). See LICENSE in the repo root for license information. -// ------------------------------------------------------------ - -using System; -using System.IO; -using Microsoft.OpenApi.Writers; -using Xunit; - -namespace Microsoft.OpenApi.OData.OpenApiExtensions.Tests; - -public class OpenApiDeprecationExtensionTests -{ - [Fact] - public void ExtensionNameMatchesExpected() - { - // Arrange - OpenApiDeprecationExtension extension = new(); - - // Act - string name = extension.Name; - string expectedName = "x-ms-deprecation"; - - // Assert - Assert.Equal(expectedName, name); - } - - [Fact] - public void WritesNothingWhenNoValues() - { - // Arrange - OpenApiDeprecationExtension extension = new(); - using TextWriter sWriter = new StringWriter(); - OpenApiJsonWriter writer = new(sWriter); - - // Act - extension.Write(writer, OpenApiSpecVersion.OpenApi3_0); - string result = sWriter.ToString(); - - // Assert - Assert.Null(extension.Date); - Assert.Null(extension.RemovalDate); - Assert.Null(extension.Version); - Assert.Null(extension.Description); - Assert.Empty(result); - } - - [Fact] - public void WritesAllValues() - { - // Arrange - OpenApiDeprecationExtension extension = new() { - Date = new DateTime(2020, 1, 1), - RemovalDate = new DateTime(2021, 1, 1), - Version = "1.0.0", - Description = "This is a test" - }; - using TextWriter sWriter = new StringWriter(); - OpenApiJsonWriter writer = new(sWriter); - - // Act - extension.Write(writer, OpenApiSpecVersion.OpenApi3_0); - string result = sWriter.ToString(); - - // Assert - Assert.NotNull(extension.Date); - Assert.NotNull(extension.RemovalDate); - Assert.NotNull(extension.Version); - Assert.NotNull(extension.Description); - Assert.Contains("2021-01-01T00:00:00.000000", result); - Assert.Contains("removalDate", result); - Assert.Contains("version", result); - Assert.Contains("1.0.0", result); - Assert.Contains("description", result); - Assert.Contains("This is a test", result); - } -} \ No newline at end of file diff --git a/test/Microsoft.OpenAPI.OData.Reader.Tests/OpenApiExtensions/OpenApiEnumFlagsExtensionTests.cs b/test/Microsoft.OpenAPI.OData.Reader.Tests/OpenApiExtensions/OpenApiEnumFlagsExtensionTests.cs deleted file mode 100644 index e6266dfb..00000000 --- a/test/Microsoft.OpenAPI.OData.Reader.Tests/OpenApiExtensions/OpenApiEnumFlagsExtensionTests.cs +++ /dev/null @@ -1,89 +0,0 @@ -// ------------------------------------------------------------ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License (MIT). See LICENSE in the repo root for license information. -// ------------------------------------------------------------ - -using System.IO; -using Microsoft.OpenApi.Writers; -using Xunit; - -namespace Microsoft.OpenApi.OData.OpenApiExtensions.Tests; - -public class OpenApiEnumFlagsExtensionTests -{ - [Fact] - public void ExtensionNameMatchesExpected() - { - // Arrange - OpenApiEnumFlagsExtension extension = new(); - - // Act - string name = extension.Name; - string expectedName = "x-ms-enum-flags"; - - // Assert - Assert.Equal(expectedName, name); - } - - [Fact] - public void WritesDefaultValues() - { - // Arrange - OpenApiEnumFlagsExtension extension = new(); - using TextWriter sWriter = new StringWriter(); - OpenApiJsonWriter writer = new(sWriter); - - // Act - extension.Write(writer, OpenApiSpecVersion.OpenApi3_0); - string result = sWriter.ToString(); - - // Assert - Assert.False(extension.IsFlags); - Assert.Null(extension.Style); - Assert.Contains("\"isFlags\": false", result); - Assert.DoesNotContain("\"style\"", result); - } - - [Fact] - public void WritesAllDefaultValues() - { - // Arrange - OpenApiEnumFlagsExtension extension = new() { - IsFlags = true - }; - using TextWriter sWriter = new StringWriter(); - OpenApiJsonWriter writer = new(sWriter); - - // Act - extension.Write(writer, OpenApiSpecVersion.OpenApi3_0); - string result = sWriter.ToString(); - - // Assert - Assert.True(extension.IsFlags); - Assert.Null(extension.Style); - Assert.Contains("\"isFlags\": true", result); - Assert.DoesNotContain("\"style\":", result); - } - - [Fact] - public void WritesAllValues() - { - // Arrange - OpenApiEnumFlagsExtension extension = new() { - IsFlags = true, - Style = "simple" - }; - using TextWriter sWriter = new StringWriter(); - OpenApiJsonWriter writer = new(sWriter); - - // Act - extension.Write(writer, OpenApiSpecVersion.OpenApi3_0); - string result = sWriter.ToString(); - - // Assert - Assert.True(extension.IsFlags); - Assert.NotNull(extension.Style); - Assert.Contains("\"isFlags\": true", result); - Assert.Contains("\"style\": \"simple\"", result); - } -} \ No newline at end of file diff --git a/test/Microsoft.OpenAPI.OData.Reader.Tests/OpenApiExtensions/OpenApiEnumValuesDescriptionExtensionTexts.cs b/test/Microsoft.OpenAPI.OData.Reader.Tests/OpenApiExtensions/OpenApiEnumValuesDescriptionExtensionTexts.cs deleted file mode 100644 index 1c1feeb9..00000000 --- a/test/Microsoft.OpenAPI.OData.Reader.Tests/OpenApiExtensions/OpenApiEnumValuesDescriptionExtensionTexts.cs +++ /dev/null @@ -1,75 +0,0 @@ -// ------------------------------------------------------------ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License (MIT). See LICENSE in the repo root for license information. -// ------------------------------------------------------------ - -using System.Collections.Generic; -using System.IO; -using Microsoft.OpenApi.Writers; -using Xunit; - -namespace Microsoft.OpenApi.OData.OpenApiExtensions.Tests; - -public class OpenApiEnumValuesDescriptionExtensionTexts -{ - [Fact] - public void ExtensionNameMatchesExpected() - { - // Arrange - OpenApiEnumValuesDescriptionExtension extension = new(); - - // Act - string name = extension.Name; - string expectedName = "x-ms-enum"; - - // Assert - Assert.Equal(expectedName, name); - } - - [Fact] - public void WritesNothingWhenNoValues() - { - // Arrange - OpenApiEnumValuesDescriptionExtension extension = new(); - using TextWriter sWriter = new StringWriter(); - OpenApiJsonWriter writer = new(sWriter); - - // Act - extension.Write(writer, OpenApiSpecVersion.OpenApi3_0); - string result = sWriter.ToString(); - - // Assert - Assert.Null(extension.EnumName); - Assert.Empty(extension.ValuesDescriptions); - Assert.Empty(result); - } - [Fact] - public void WritesEnumDescription() - { - // Arrange - OpenApiEnumValuesDescriptionExtension extension = new(); - extension.EnumName = "TestEnum"; - extension.ValuesDescriptions = new() - { - new() { - Description = "TestDescription", - Value = "TestValue", - Name = "TestName" - } - }; - using TextWriter sWriter = new StringWriter(); - OpenApiJsonWriter writer = new(sWriter); - - // Act - extension.Write(writer, OpenApiSpecVersion.OpenApi3_0); - string result = sWriter.ToString(); - - // Assert - Assert.Contains("values", result); - Assert.Contains("modelAsString\": false", result); - Assert.Contains("name\": \"TestEnum", result); - Assert.Contains("description\": \"TestDescription", result); - Assert.Contains("value\": \"TestValue", result); - Assert.Contains("name\": \"TestName", result); - } -} \ No newline at end of file diff --git a/test/Microsoft.OpenAPI.OData.Reader.Tests/OpenApiExtensions/OpenApiPrimaryErrorMessageExtensionTests.cs b/test/Microsoft.OpenAPI.OData.Reader.Tests/OpenApiExtensions/OpenApiPrimaryErrorMessageExtensionTests.cs deleted file mode 100644 index 6b400671..00000000 --- a/test/Microsoft.OpenAPI.OData.Reader.Tests/OpenApiExtensions/OpenApiPrimaryErrorMessageExtensionTests.cs +++ /dev/null @@ -1,56 +0,0 @@ -// ------------------------------------------------------------ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License (MIT). See LICENSE in the repo root for license information. -// ------------------------------------------------------------ - -using System; -using System.IO; -using Microsoft.OpenApi.Any; -using Microsoft.OpenApi.Writers; -using Xunit; - -namespace Microsoft.OpenApi.OData.OpenApiExtensions.Tests; - -public class OpenApiPrimaryErrorMessageExtensionTests -{ - [Fact] - public void ExtensionNameMatchesExpected() - { - // Act - string name = OpenApiPrimaryErrorMessageExtension.Name; - string expectedName = "x-ms-primary-error-message"; - - // Assert - Assert.Equal(expectedName, name); - } - [Fact] - public void WritesValue() - { - // Arrange - OpenApiPrimaryErrorMessageExtension extension = new() { - IsPrimaryErrorMessage = true - }; - using TextWriter sWriter = new StringWriter(); - OpenApiJsonWriter writer = new(sWriter); - - // Act - extension.Write(writer, OpenApiSpecVersion.OpenApi3_0); - string result = sWriter.ToString(); - - // Assert - Assert.True(extension.IsPrimaryErrorMessage); - Assert.Equal("true", result); - } - [Fact] - public void ParsesValue() - { - // Arrange - var value = new OpenApiBoolean(true); - - // Act - var extension = OpenApiPrimaryErrorMessageExtension.Parse(value); - - // Assert - Assert.True(extension.IsPrimaryErrorMessage); - } -} diff --git a/test/Microsoft.OpenAPI.OData.Reader.Tests/Resources/TripService.OpenApi.V2.json b/test/Microsoft.OpenAPI.OData.Reader.Tests/Resources/TripService.OpenApi.V2.json index b48b8ec7..6fd5f0e6 100644 --- a/test/Microsoft.OpenAPI.OData.Reader.Tests/Resources/TripService.OpenApi.V2.json +++ b/test/Microsoft.OpenAPI.OData.Reader.Tests/Resources/TripService.OpenApi.V2.json @@ -1338,8 +1338,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -1375,8 +1375,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -1458,8 +1458,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -1497,8 +1497,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -1542,8 +1542,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -1574,8 +1574,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -1599,8 +1599,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -1629,8 +1629,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -1703,8 +1703,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -1741,8 +1741,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -1778,8 +1778,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -1807,8 +1807,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -1838,8 +1838,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -1921,8 +1921,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -1960,8 +1960,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -2005,8 +2005,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -2037,8 +2037,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -2062,8 +2062,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -2092,8 +2092,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -2150,8 +2150,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -2186,8 +2186,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -2210,8 +2210,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -2283,8 +2283,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -2356,8 +2356,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -2471,8 +2471,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -2523,8 +2523,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -2614,8 +2614,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -2661,8 +2661,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -2714,8 +2714,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -2754,8 +2754,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -2789,8 +2789,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -2827,8 +2827,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -2893,8 +2893,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -2937,8 +2937,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -2971,8 +2971,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -3052,8 +3052,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -3133,8 +3133,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -3166,8 +3166,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -3241,8 +3241,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -3269,8 +3269,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -3385,8 +3385,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -3418,8 +3418,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -3533,8 +3533,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -3566,8 +3566,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -3624,8 +3624,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -3660,8 +3660,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -3684,8 +3684,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -3757,8 +3757,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -3831,8 +3831,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -3869,8 +3869,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -3906,8 +3906,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -3935,8 +3935,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -3966,8 +3966,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -4049,8 +4049,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -4088,8 +4088,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -4133,8 +4133,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -4165,8 +4165,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -4190,8 +4190,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -4220,8 +4220,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -4278,8 +4278,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -4314,8 +4314,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -4338,8 +4338,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -4411,8 +4411,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -4526,8 +4526,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -4578,8 +4578,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -4669,8 +4669,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -4716,8 +4716,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -4769,8 +4769,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -4809,8 +4809,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -4844,8 +4844,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -4882,8 +4882,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -4948,8 +4948,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -4992,8 +4992,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -5026,8 +5026,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -5107,8 +5107,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -5140,8 +5140,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -5215,8 +5215,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -5243,8 +5243,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -5359,8 +5359,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -5392,8 +5392,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -5507,8 +5507,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -5555,8 +5555,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -5646,8 +5646,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -5693,8 +5693,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -5746,8 +5746,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -5786,8 +5786,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -5821,8 +5821,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -5859,8 +5859,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -5925,8 +5925,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -5969,8 +5969,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -6003,8 +6003,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -6036,8 +6036,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -6111,8 +6111,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -6139,8 +6139,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -6249,8 +6249,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -6293,8 +6293,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -6376,8 +6376,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -6425,8 +6425,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -6468,8 +6468,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -6599,8 +6599,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -6706,8 +6706,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -6772,8 +6772,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -6817,8 +6817,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -6891,8 +6891,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -6930,8 +6930,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -6970,8 +6970,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -6995,8 +6995,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -7092,8 +7092,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -7123,8 +7123,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -7197,8 +7197,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -7271,8 +7271,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -7309,8 +7309,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -7346,8 +7346,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -7375,8 +7375,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -7406,8 +7406,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -7489,8 +7489,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -7528,8 +7528,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -7573,8 +7573,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -7611,8 +7611,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -7636,8 +7636,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -7672,8 +7672,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -7730,8 +7730,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -7766,8 +7766,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -7790,8 +7790,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -7863,8 +7863,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -7978,8 +7978,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -8026,8 +8026,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -8117,8 +8117,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -8164,8 +8164,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -8217,8 +8217,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -8263,8 +8263,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -8298,8 +8298,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -8342,8 +8342,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -8408,8 +8408,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -8452,8 +8452,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -8486,8 +8486,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -8519,8 +8519,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -8594,8 +8594,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -8622,8 +8622,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -8738,8 +8738,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -8790,8 +8790,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -8881,8 +8881,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -8928,8 +8928,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -8981,8 +8981,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -9021,8 +9021,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -9056,8 +9056,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -9094,8 +9094,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -9160,8 +9160,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -9204,8 +9204,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -9238,8 +9238,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -9319,8 +9319,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -9352,8 +9352,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -9427,8 +9427,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -9455,8 +9455,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -9571,8 +9571,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -9604,8 +9604,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -9649,8 +9649,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -9759,8 +9759,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -9803,8 +9803,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -9886,8 +9886,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -9935,8 +9935,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -9978,8 +9978,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -10109,8 +10109,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -10216,8 +10216,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -10282,8 +10282,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -10327,8 +10327,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -10401,8 +10401,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -10440,8 +10440,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -10480,8 +10480,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -10511,8 +10511,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -10546,8 +10546,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -10656,8 +10656,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -10700,8 +10700,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -10783,8 +10783,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -10832,8 +10832,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -10875,8 +10875,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -11006,8 +11006,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -11113,8 +11113,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -11179,8 +11179,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -11224,8 +11224,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -11298,8 +11298,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -11337,8 +11337,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -11377,8 +11377,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -12021,8 +12021,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/bestfriend", "description": "The bestfriend API is deprecated and will stop returning data on March 2023. Please use the new friends API." }, @@ -12067,8 +12067,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/bestfriend", "description": "The bestfriend API is deprecated and will stop returning data on March 2023. Please use the new friends API." }, @@ -12110,8 +12110,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/bestfriend", "description": "The bestfriend API is deprecated and will stop returning data on March 2023. Please use the new friends API." }, @@ -12147,8 +12147,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/bestfriend", "description": "The bestfriend API is deprecated and will stop returning data on March 2023. Please use the new friends API." }, @@ -12186,8 +12186,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/bestfriend", "description": "The bestfriend API is deprecated and will stop returning data on March 2023. Please use the new friends API." }, @@ -12277,8 +12277,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/bestfriend", "description": "The bestfriend API is deprecated and will stop returning data on March 2023. Please use the new friends API." } @@ -12324,8 +12324,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/bestfriend", "description": "The bestfriend API is deprecated and will stop returning data on March 2023. Please use the new friends API." } @@ -12377,8 +12377,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/bestfriend", "description": "The bestfriend API is deprecated and will stop returning data on March 2023. Please use the new friends API." } @@ -12423,8 +12423,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/bestfriend", "description": "The bestfriend API is deprecated and will stop returning data on March 2023. Please use the new friends API." } @@ -12458,8 +12458,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/bestfriend", "description": "The bestfriend API is deprecated and will stop returning data on March 2023. Please use the new friends API." } @@ -12502,8 +12502,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/bestfriend", "description": "The bestfriend API is deprecated and will stop returning data on March 2023. Please use the new friends API." } @@ -12568,8 +12568,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/bestfriend", "description": "The bestfriend API is deprecated and will stop returning data on March 2023. Please use the new friends API." } @@ -12612,8 +12612,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/bestfriend", "description": "The bestfriend API is deprecated and will stop returning data on March 2023. Please use the new friends API." } @@ -12646,8 +12646,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/bestfriend", "description": "The bestfriend API is deprecated and will stop returning data on March 2023. Please use the new friends API." } @@ -12727,8 +12727,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/bestfriend", "description": "The bestfriend API is deprecated and will stop returning data on March 2023. Please use the new friends API." } @@ -12808,8 +12808,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/bestfriend", "description": "The bestfriend API is deprecated and will stop returning data on March 2023. Please use the new friends API." } @@ -14302,8 +14302,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/trips", "description": "The GetFriendsTrips API is deprecated and will stop returning data on March 2023. Please use the new trips API on friends." }, @@ -15424,8 +15424,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -15466,8 +15466,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -15554,8 +15554,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -15599,8 +15599,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -15638,8 +15638,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -15729,8 +15729,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -15776,8 +15776,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -15829,8 +15829,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -15869,8 +15869,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -15904,8 +15904,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -15942,8 +15942,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -16024,8 +16024,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -16070,8 +16070,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -16117,8 +16117,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -16154,8 +16154,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -16193,8 +16193,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -16284,8 +16284,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -16331,8 +16331,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -16384,8 +16384,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -16424,8 +16424,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -16459,8 +16459,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -16497,8 +16497,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -16563,8 +16563,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -16607,8 +16607,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -16641,8 +16641,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -16722,8 +16722,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -16803,8 +16803,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -16926,8 +16926,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -16986,8 +16986,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -17085,8 +17085,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -17140,8 +17140,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -17201,8 +17201,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -17249,8 +17249,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -17292,8 +17292,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -17338,8 +17338,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -17412,8 +17412,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -17464,8 +17464,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -17506,8 +17506,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -17595,8 +17595,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -17684,8 +17684,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -17725,8 +17725,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -17808,8 +17808,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -17844,8 +17844,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -17968,8 +17968,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -18009,8 +18009,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -18132,8 +18132,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -18173,8 +18173,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -18239,8 +18239,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -18283,8 +18283,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -18317,8 +18317,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -18404,8 +18404,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -18486,8 +18486,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -18532,8 +18532,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -18579,8 +18579,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -18616,8 +18616,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -18655,8 +18655,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -18746,8 +18746,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -18793,8 +18793,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -18846,8 +18846,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -18886,8 +18886,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -18921,8 +18921,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -18959,8 +18959,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -19025,8 +19025,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -19069,8 +19069,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -19103,8 +19103,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -19184,8 +19184,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -19307,8 +19307,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -19367,8 +19367,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -19466,8 +19466,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -19521,8 +19521,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -19582,8 +19582,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -19630,8 +19630,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -19673,8 +19673,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -19719,8 +19719,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -19793,8 +19793,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -19845,8 +19845,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -19887,8 +19887,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -19976,8 +19976,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -20017,8 +20017,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -20100,8 +20100,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -20136,8 +20136,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -20260,8 +20260,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -20301,8 +20301,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -20424,8 +20424,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -20480,8 +20480,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -20579,8 +20579,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -20634,8 +20634,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -20695,8 +20695,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -20743,8 +20743,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -20786,8 +20786,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -20832,8 +20832,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -20906,8 +20906,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -20958,8 +20958,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -21000,8 +21000,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -21041,8 +21041,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -21124,8 +21124,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -21160,8 +21160,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -21278,8 +21278,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -21330,8 +21330,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -21421,8 +21421,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -21478,8 +21478,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -21529,8 +21529,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -21668,8 +21668,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -21783,8 +21783,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -21857,8 +21857,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -21910,8 +21910,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -21992,8 +21992,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -22039,8 +22039,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -22087,8 +22087,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -22122,8 +22122,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -22227,8 +22227,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -22266,8 +22266,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -22354,8 +22354,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -22436,8 +22436,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -22482,8 +22482,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -22529,8 +22529,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -22566,8 +22566,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -22605,8 +22605,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -22696,8 +22696,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -22743,8 +22743,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -22796,8 +22796,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -22842,8 +22842,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -22877,8 +22877,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -22921,8 +22921,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -22987,8 +22987,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -23031,8 +23031,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -23065,8 +23065,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -23146,8 +23146,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -23269,8 +23269,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -23325,8 +23325,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -23424,8 +23424,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -23479,8 +23479,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -23540,8 +23540,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -23594,8 +23594,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -23637,8 +23637,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -23689,8 +23689,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -23763,8 +23763,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -23815,8 +23815,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -23857,8 +23857,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -23898,8 +23898,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -23981,8 +23981,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -24017,8 +24017,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -24141,8 +24141,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -24201,8 +24201,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -24300,8 +24300,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -24355,8 +24355,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -24416,8 +24416,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -24464,8 +24464,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -24507,8 +24507,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -24553,8 +24553,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -24627,8 +24627,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -24679,8 +24679,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -24721,8 +24721,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -24810,8 +24810,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -24851,8 +24851,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -24934,8 +24934,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -24970,8 +24970,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -25094,8 +25094,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -25135,8 +25135,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -25188,8 +25188,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -25306,8 +25306,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -25358,8 +25358,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -25449,8 +25449,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -25506,8 +25506,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -25557,8 +25557,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -25696,8 +25696,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -25811,8 +25811,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -25885,8 +25885,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -25938,8 +25938,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -26020,8 +26020,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -26067,8 +26067,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -26115,8 +26115,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -26154,8 +26154,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -26197,8 +26197,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -26315,8 +26315,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -26367,8 +26367,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -26458,8 +26458,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -26515,8 +26515,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -26566,8 +26566,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -26705,8 +26705,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -26820,8 +26820,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -26894,8 +26894,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -26947,8 +26947,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -27029,8 +27029,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -27076,8 +27076,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -27124,8 +27124,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -27163,8 +27163,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -27284,8 +27284,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -27323,8 +27323,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -27444,8 +27444,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -27483,8 +27483,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -27924,8 +27924,7 @@ ], "type": "string", "x-ms-enum-flags": { - "isFlags": true, - "style": "simple" + "isFlags": true } }, "Edm.Geography": { diff --git a/test/Microsoft.OpenAPI.OData.Reader.Tests/Resources/TripService.OpenApi.V2.yaml b/test/Microsoft.OpenAPI.OData.Reader.Tests/Resources/TripService.OpenApi.V2.yaml index f7e9a04f..60a5ae2f 100644 --- a/test/Microsoft.OpenAPI.OData.Reader.Tests/Resources/TripService.OpenApi.V2.yaml +++ b/test/Microsoft.OpenAPI.OData.Reader.Tests/Resources/TripService.OpenApi.V2.yaml @@ -899,8 +899,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -925,8 +925,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -978,8 +978,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. patch: @@ -1005,8 +1005,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. post: @@ -1036,8 +1036,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. /Me/AddressInfo/$count: @@ -1056,8 +1056,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-description: Provides operations to count the resources in the collection. @@ -1074,8 +1074,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-description: Casts the previous resource to EventLocation. @@ -1093,8 +1093,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-description: Provides operations to count the resources in the collection. @@ -1149,8 +1149,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -1176,8 +1176,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -1203,8 +1203,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -1223,8 +1223,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -1245,8 +1245,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -1298,8 +1298,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. patch: @@ -1325,8 +1325,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. post: @@ -1356,8 +1356,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. /Me/BestFriend/AddressInfo/$count: @@ -1376,8 +1376,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-description: Provides operations to count the resources in the collection. @@ -1394,8 +1394,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-description: Casts the previous resource to EventLocation. @@ -1413,8 +1413,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-description: Provides operations to count the resources in the collection. @@ -1453,8 +1453,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. patch: @@ -1478,8 +1478,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. /Me/BestFriend/HomeAddress/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation: @@ -1495,8 +1495,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-description: Casts the previous resource to EventLocation. @@ -1550,8 +1550,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-description: Casts the previous resource to Employee. @@ -1605,8 +1605,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-description: Casts the previous resource to Manager. @@ -1690,8 +1690,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -1727,8 +1727,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -1786,8 +1786,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. patch: @@ -1819,8 +1819,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. post: @@ -1856,8 +1856,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. '/Me/Friends/{UserName}/AddressInfo/$count': @@ -1882,8 +1882,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-description: Provides operations to count the resources in the collection. @@ -1907,8 +1907,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-description: Casts the previous resource to EventLocation. @@ -1932,8 +1932,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-description: Provides operations to count the resources in the collection. @@ -1978,8 +1978,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. patch: @@ -2009,8 +2009,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. '/Me/Friends/{UserName}/HomeAddress/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation': @@ -2033,8 +2033,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-description: Casts the previous resource to EventLocation. @@ -2094,8 +2094,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-description: Casts the previous resource to Employee. @@ -2155,8 +2155,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-description: Casts the previous resource to Manager. @@ -2176,8 +2176,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-description: Provides operations to count the resources in the collection. @@ -2229,8 +2229,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -2248,8 +2248,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -2334,8 +2334,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-description: Casts the previous resource to Employee. @@ -2355,8 +2355,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-description: Provides operations to count the resources in the collection. @@ -2440,8 +2440,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-description: Casts the previous resource to Manager. @@ -2461,8 +2461,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-description: Provides operations to count the resources in the collection. @@ -2501,8 +2501,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. patch: @@ -2526,8 +2526,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. /Me/HomeAddress/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation: @@ -2543,8 +2543,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-description: Casts the previous resource to EventLocation. @@ -2598,8 +2598,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-description: Casts the previous resource to Employee. @@ -2654,8 +2654,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -2681,8 +2681,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -2708,8 +2708,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -2728,8 +2728,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -2750,8 +2750,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -2803,8 +2803,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. patch: @@ -2830,8 +2830,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. post: @@ -2861,8 +2861,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. /Me/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee/BestFriend/AddressInfo/$count: @@ -2881,8 +2881,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-description: Provides operations to count the resources in the collection. @@ -2899,8 +2899,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-description: Casts the previous resource to EventLocation. @@ -2918,8 +2918,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-description: Provides operations to count the resources in the collection. @@ -2958,8 +2958,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. patch: @@ -2983,8 +2983,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. /Me/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee/BestFriend/HomeAddress/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation: @@ -3000,8 +3000,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-description: Casts the previous resource to EventLocation. @@ -3055,8 +3055,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-description: Casts the previous resource to Manager. @@ -3140,8 +3140,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -3177,8 +3177,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -3236,8 +3236,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. patch: @@ -3269,8 +3269,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. post: @@ -3306,8 +3306,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. '/Me/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee/Friends/{UserName}/AddressInfo/$count': @@ -3332,8 +3332,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-description: Provides operations to count the resources in the collection. @@ -3357,8 +3357,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-description: Casts the previous resource to EventLocation. @@ -3382,8 +3382,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-description: Provides operations to count the resources in the collection. @@ -3428,8 +3428,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. patch: @@ -3459,8 +3459,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. '/Me/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee/Friends/{UserName}/HomeAddress/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation': @@ -3483,8 +3483,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-description: Casts the previous resource to EventLocation. @@ -3544,8 +3544,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-description: Casts the previous resource to Manager. @@ -3565,8 +3565,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-description: Provides operations to count the resources in the collection. @@ -3618,8 +3618,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -3637,8 +3637,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -3723,8 +3723,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-description: Casts the previous resource to Manager. @@ -3744,8 +3744,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-description: Provides operations to count the resources in the collection. @@ -3829,8 +3829,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -3863,8 +3863,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -3922,8 +3922,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. patch: @@ -3955,8 +3955,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. post: @@ -3992,8 +3992,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. '/Me/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee/Peers/{UserName}/AddressInfo/$count': @@ -4018,8 +4018,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-description: Provides operations to count the resources in the collection. @@ -4043,8 +4043,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-description: Casts the previous resource to EventLocation. @@ -4068,8 +4068,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-description: Provides operations to count the resources in the collection. @@ -4114,8 +4114,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. patch: @@ -4145,8 +4145,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. '/Me/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee/Peers/{UserName}/HomeAddress/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation': @@ -4169,8 +4169,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-description: Casts the previous resource to EventLocation. @@ -4190,8 +4190,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-description: Provides operations to count the resources in the collection. @@ -4243,8 +4243,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -4262,8 +4262,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -4340,8 +4340,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -4371,8 +4371,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -4433,8 +4433,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -4469,8 +4469,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -4501,8 +4501,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -4598,8 +4598,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: function @@ -4672,8 +4672,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -4721,8 +4721,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -4752,8 +4752,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-description: Provides operations to count the resources in the collection. @@ -4802,8 +4802,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -4830,8 +4830,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -4856,8 +4856,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-description: Provides operations to count the resources in the collection. @@ -4874,8 +4874,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: function @@ -4943,8 +4943,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: function @@ -4964,8 +4964,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: action @@ -5020,8 +5020,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-description: Casts the previous resource to Manager. @@ -5076,8 +5076,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -5103,8 +5103,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -5130,8 +5130,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -5150,8 +5150,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -5172,8 +5172,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -5225,8 +5225,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. patch: @@ -5252,8 +5252,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. post: @@ -5283,8 +5283,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. /Me/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager/BestFriend/AddressInfo/$count: @@ -5307,8 +5307,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-description: Provides operations to count the resources in the collection. @@ -5325,8 +5325,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-description: Casts the previous resource to EventLocation. @@ -5348,8 +5348,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-description: Provides operations to count the resources in the collection. @@ -5388,8 +5388,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. patch: @@ -5413,8 +5413,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. /Me/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager/BestFriend/HomeAddress/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation: @@ -5430,8 +5430,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-description: Casts the previous resource to EventLocation. @@ -5485,8 +5485,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-description: Casts the previous resource to Employee. @@ -5570,8 +5570,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -5604,8 +5604,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -5663,8 +5663,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. patch: @@ -5696,8 +5696,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. post: @@ -5733,8 +5733,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. '/Me/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager/DirectReports/{UserName}/AddressInfo/$count': @@ -5763,8 +5763,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-description: Provides operations to count the resources in the collection. @@ -5788,8 +5788,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-description: Casts the previous resource to EventLocation. @@ -5817,8 +5817,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-description: Provides operations to count the resources in the collection. @@ -5863,8 +5863,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. patch: @@ -5894,8 +5894,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. '/Me/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager/DirectReports/{UserName}/HomeAddress/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation': @@ -5918,8 +5918,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-description: Casts the previous resource to EventLocation. @@ -5939,8 +5939,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-description: Provides operations to count the resources in the collection. @@ -5992,8 +5992,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -6011,8 +6011,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -6097,8 +6097,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -6134,8 +6134,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -6193,8 +6193,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. patch: @@ -6226,8 +6226,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. post: @@ -6263,8 +6263,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. '/Me/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager/Friends/{UserName}/AddressInfo/$count': @@ -6289,8 +6289,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-description: Provides operations to count the resources in the collection. @@ -6314,8 +6314,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-description: Casts the previous resource to EventLocation. @@ -6339,8 +6339,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-description: Provides operations to count the resources in the collection. @@ -6385,8 +6385,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. patch: @@ -6416,8 +6416,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. '/Me/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager/Friends/{UserName}/HomeAddress/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation': @@ -6440,8 +6440,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-description: Casts the previous resource to EventLocation. @@ -6501,8 +6501,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-description: Casts the previous resource to Employee. @@ -6522,8 +6522,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-description: Provides operations to count the resources in the collection. @@ -6575,8 +6575,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -6594,8 +6594,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -6680,8 +6680,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-description: Casts the previous resource to Employee. @@ -6701,8 +6701,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-description: Provides operations to count the resources in the collection. @@ -6732,8 +6732,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: action @@ -6810,8 +6810,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -6841,8 +6841,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -6903,8 +6903,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -6939,8 +6939,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -6971,8 +6971,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -7068,8 +7068,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: function @@ -7142,8 +7142,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -7191,8 +7191,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -7222,8 +7222,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-description: Provides operations to count the resources in the collection. @@ -7272,8 +7272,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -7300,8 +7300,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -7326,8 +7326,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-description: Provides operations to count the resources in the collection. @@ -7347,8 +7347,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: action @@ -7372,8 +7372,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: function @@ -7450,8 +7450,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -7481,8 +7481,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -7543,8 +7543,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -7579,8 +7579,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -7611,8 +7611,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -7708,8 +7708,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: function @@ -7782,8 +7782,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -7831,8 +7831,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -7862,8 +7862,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-description: Provides operations to count the resources in the collection. @@ -7912,8 +7912,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -7940,8 +7940,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -7966,8 +7966,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-description: Provides operations to count the resources in the collection. @@ -8411,8 +8411,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/bestfriend description: The bestfriend API is deprecated and will stop returning data on March 2023. Please use the new friends API. x-ms-docs-operation-type: operation @@ -8444,8 +8444,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/bestfriend description: The bestfriend API is deprecated and will stop returning data on March 2023. Please use the new friends API. x-ms-docs-operation-type: operation @@ -8475,8 +8475,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/bestfriend description: The bestfriend API is deprecated and will stop returning data on March 2023. Please use the new friends API. x-ms-docs-operation-type: operation @@ -8501,8 +8501,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/bestfriend description: The bestfriend API is deprecated and will stop returning data on March 2023. Please use the new friends API. x-ms-docs-operation-type: operation @@ -8529,8 +8529,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/bestfriend description: The bestfriend API is deprecated and will stop returning data on March 2023. Please use the new friends API. x-ms-docs-operation-type: operation @@ -8588,8 +8588,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/bestfriend description: The bestfriend API is deprecated and will stop returning data on March 2023. Please use the new friends API. patch: @@ -8621,8 +8621,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/bestfriend description: The bestfriend API is deprecated and will stop returning data on March 2023. Please use the new friends API. post: @@ -8658,8 +8658,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/bestfriend description: The bestfriend API is deprecated and will stop returning data on March 2023. Please use the new friends API. '/NewComePeople/{UserName}/BestFriend/AddressInfo/$count': @@ -8688,8 +8688,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/bestfriend description: The bestfriend API is deprecated and will stop returning data on March 2023. Please use the new friends API. x-description: Provides operations to count the resources in the collection. @@ -8713,8 +8713,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/bestfriend description: The bestfriend API is deprecated and will stop returning data on March 2023. Please use the new friends API. x-description: Casts the previous resource to EventLocation. @@ -8742,8 +8742,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/bestfriend description: The bestfriend API is deprecated and will stop returning data on March 2023. Please use the new friends API. x-description: Provides operations to count the resources in the collection. @@ -8788,8 +8788,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/bestfriend description: The bestfriend API is deprecated and will stop returning data on March 2023. Please use the new friends API. patch: @@ -8819,8 +8819,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/bestfriend description: The bestfriend API is deprecated and will stop returning data on March 2023. Please use the new friends API. '/NewComePeople/{UserName}/BestFriend/HomeAddress/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation': @@ -8843,8 +8843,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/bestfriend description: The bestfriend API is deprecated and will stop returning data on March 2023. Please use the new friends API. x-description: Casts the previous resource to EventLocation. @@ -8904,8 +8904,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/bestfriend description: The bestfriend API is deprecated and will stop returning data on March 2023. Please use the new friends API. x-description: Casts the previous resource to Employee. @@ -8965,8 +8965,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/bestfriend description: The bestfriend API is deprecated and will stop returning data on March 2023. Please use the new friends API. x-description: Casts the previous resource to Manager. @@ -10003,8 +10003,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/trips description: The GetFriendsTrips API is deprecated and will stop returning data on March 2023. Please use the new trips API on friends. x-ms-docs-operation-type: function @@ -10789,8 +10789,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. post: @@ -10818,8 +10818,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -10884,8 +10884,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -10916,8 +10916,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -10944,8 +10944,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -11003,8 +11003,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. patch: @@ -11036,8 +11036,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. post: @@ -11073,8 +11073,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/AddressInfo/$count': @@ -11099,8 +11099,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Provides operations to count the resources in the collection. @@ -11124,8 +11124,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Casts the previous resource to EventLocation. @@ -11149,8 +11149,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Provides operations to count the resources in the collection. @@ -11211,8 +11211,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -11244,8 +11244,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -11278,8 +11278,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -11304,8 +11304,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -11332,8 +11332,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -11391,8 +11391,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. patch: @@ -11424,8 +11424,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. post: @@ -11461,8 +11461,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/BestFriend/AddressInfo/$count': @@ -11487,8 +11487,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Provides operations to count the resources in the collection. @@ -11512,8 +11512,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Casts the previous resource to EventLocation. @@ -11537,8 +11537,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Provides operations to count the resources in the collection. @@ -11583,8 +11583,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. patch: @@ -11614,8 +11614,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/BestFriend/HomeAddress/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation': @@ -11638,8 +11638,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Casts the previous resource to EventLocation. @@ -11699,8 +11699,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Casts the previous resource to Employee. @@ -11760,8 +11760,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Casts the previous resource to Manager. @@ -11851,8 +11851,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -11894,8 +11894,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -11959,8 +11959,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. patch: @@ -11998,8 +11998,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. post: @@ -12041,8 +12041,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Friends/{UserName1}/AddressInfo/$count': @@ -12073,8 +12073,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Provides operations to count the resources in the collection. @@ -12104,8 +12104,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Casts the previous resource to EventLocation. @@ -12135,8 +12135,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Provides operations to count the resources in the collection. @@ -12187,8 +12187,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. patch: @@ -12224,8 +12224,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Friends/{UserName1}/HomeAddress/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation': @@ -12254,8 +12254,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Casts the previous resource to EventLocation. @@ -12321,8 +12321,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Casts the previous resource to Employee. @@ -12388,8 +12388,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Casts the previous resource to Manager. @@ -12415,8 +12415,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Provides operations to count the resources in the collection. @@ -12474,8 +12474,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -12499,8 +12499,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -12591,8 +12591,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Casts the previous resource to Employee. @@ -12618,8 +12618,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Provides operations to count the resources in the collection. @@ -12709,8 +12709,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Casts the previous resource to Manager. @@ -12736,8 +12736,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Provides operations to count the resources in the collection. @@ -12782,8 +12782,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. patch: @@ -12813,8 +12813,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/HomeAddress/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation': @@ -12837,8 +12837,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Casts the previous resource to EventLocation. @@ -12902,8 +12902,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Casts the previous resource to Employee. @@ -12964,8 +12964,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -12997,8 +12997,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -13031,8 +13031,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -13057,8 +13057,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -13085,8 +13085,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -13144,8 +13144,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. patch: @@ -13177,8 +13177,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. post: @@ -13214,8 +13214,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee/BestFriend/AddressInfo/$count': @@ -13240,8 +13240,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Provides operations to count the resources in the collection. @@ -13265,8 +13265,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Casts the previous resource to EventLocation. @@ -13290,8 +13290,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Provides operations to count the resources in the collection. @@ -13336,8 +13336,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. patch: @@ -13367,8 +13367,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee/BestFriend/HomeAddress/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation': @@ -13391,8 +13391,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Casts the previous resource to EventLocation. @@ -13452,8 +13452,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Casts the previous resource to Manager. @@ -13543,8 +13543,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -13586,8 +13586,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -13651,8 +13651,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. patch: @@ -13690,8 +13690,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. post: @@ -13733,8 +13733,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee/Friends/{UserName1}/AddressInfo/$count': @@ -13765,8 +13765,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Provides operations to count the resources in the collection. @@ -13796,8 +13796,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Casts the previous resource to EventLocation. @@ -13827,8 +13827,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Provides operations to count the resources in the collection. @@ -13879,8 +13879,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. patch: @@ -13916,8 +13916,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee/Friends/{UserName1}/HomeAddress/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation': @@ -13946,8 +13946,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Casts the previous resource to EventLocation. @@ -14013,8 +14013,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Casts the previous resource to Manager. @@ -14040,8 +14040,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Provides operations to count the resources in the collection. @@ -14099,8 +14099,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -14124,8 +14124,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -14216,8 +14216,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Casts the previous resource to Manager. @@ -14243,8 +14243,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Provides operations to count the resources in the collection. @@ -14334,8 +14334,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -14374,8 +14374,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -14439,8 +14439,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. patch: @@ -14478,8 +14478,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. post: @@ -14521,8 +14521,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee/Peers/{UserName1}/AddressInfo/$count': @@ -14553,8 +14553,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Provides operations to count the resources in the collection. @@ -14584,8 +14584,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Casts the previous resource to EventLocation. @@ -14615,8 +14615,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Provides operations to count the resources in the collection. @@ -14667,8 +14667,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. patch: @@ -14704,8 +14704,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee/Peers/{UserName1}/HomeAddress/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation': @@ -14734,8 +14734,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Casts the previous resource to EventLocation. @@ -14761,8 +14761,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Provides operations to count the resources in the collection. @@ -14820,8 +14820,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -14845,8 +14845,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -14929,8 +14929,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -14966,8 +14966,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -15034,8 +15034,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -15076,8 +15076,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -15114,8 +15114,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -15217,8 +15217,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: function @@ -15297,8 +15297,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -15352,8 +15352,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -15389,8 +15389,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Provides operations to count the resources in the collection. @@ -15445,8 +15445,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -15479,8 +15479,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -15511,8 +15511,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Provides operations to count the resources in the collection. @@ -15536,8 +15536,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: function @@ -15611,8 +15611,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: function @@ -15638,8 +15638,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: action @@ -15704,8 +15704,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Casts the previous resource to Manager. @@ -15766,8 +15766,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -15799,8 +15799,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -15833,8 +15833,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -15859,8 +15859,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -15887,8 +15887,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -15946,8 +15946,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. patch: @@ -15979,8 +15979,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. post: @@ -16016,8 +16016,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager/BestFriend/AddressInfo/$count': @@ -16046,8 +16046,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Provides operations to count the resources in the collection. @@ -16071,8 +16071,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Casts the previous resource to EventLocation. @@ -16100,8 +16100,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Provides operations to count the resources in the collection. @@ -16146,8 +16146,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. patch: @@ -16177,8 +16177,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager/BestFriend/HomeAddress/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation': @@ -16201,8 +16201,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Casts the previous resource to EventLocation. @@ -16262,8 +16262,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Casts the previous resource to Employee. @@ -16353,8 +16353,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -16393,8 +16393,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -16458,8 +16458,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. patch: @@ -16497,8 +16497,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. post: @@ -16540,8 +16540,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager/DirectReports/{UserName1}/AddressInfo/$count': @@ -16576,8 +16576,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Provides operations to count the resources in the collection. @@ -16607,8 +16607,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Casts the previous resource to EventLocation. @@ -16642,8 +16642,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Provides operations to count the resources in the collection. @@ -16694,8 +16694,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. patch: @@ -16731,8 +16731,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager/DirectReports/{UserName1}/HomeAddress/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation': @@ -16761,8 +16761,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Casts the previous resource to EventLocation. @@ -16788,8 +16788,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Provides operations to count the resources in the collection. @@ -16847,8 +16847,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -16872,8 +16872,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -16964,8 +16964,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -17007,8 +17007,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -17072,8 +17072,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. patch: @@ -17111,8 +17111,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. post: @@ -17154,8 +17154,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager/Friends/{UserName1}/AddressInfo/$count': @@ -17186,8 +17186,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Provides operations to count the resources in the collection. @@ -17217,8 +17217,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Casts the previous resource to EventLocation. @@ -17248,8 +17248,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Provides operations to count the resources in the collection. @@ -17300,8 +17300,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. patch: @@ -17337,8 +17337,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager/Friends/{UserName1}/HomeAddress/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation': @@ -17367,8 +17367,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Casts the previous resource to EventLocation. @@ -17434,8 +17434,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Casts the previous resource to Employee. @@ -17461,8 +17461,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Provides operations to count the resources in the collection. @@ -17520,8 +17520,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -17545,8 +17545,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -17637,8 +17637,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Casts the previous resource to Employee. @@ -17664,8 +17664,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Provides operations to count the resources in the collection. @@ -17701,8 +17701,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: action @@ -17785,8 +17785,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -17822,8 +17822,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -17890,8 +17890,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -17932,8 +17932,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -17970,8 +17970,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -18073,8 +18073,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: function @@ -18153,8 +18153,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -18208,8 +18208,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -18245,8 +18245,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Provides operations to count the resources in the collection. @@ -18301,8 +18301,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -18335,8 +18335,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -18367,8 +18367,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Provides operations to count the resources in the collection. @@ -18394,8 +18394,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: action @@ -18425,8 +18425,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: function @@ -18509,8 +18509,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -18546,8 +18546,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -18614,8 +18614,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -18656,8 +18656,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -18694,8 +18694,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -18797,8 +18797,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: function @@ -18877,8 +18877,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -18932,8 +18932,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -18969,8 +18969,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Provides operations to count the resources in the collection. @@ -19025,8 +19025,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -19059,8 +19059,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -19091,8 +19091,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Provides operations to count the resources in the collection. @@ -19116,8 +19116,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Provides operations to count the resources in the collection. @@ -19205,8 +19205,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Casts the previous resource to Employee. @@ -19230,8 +19230,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Provides operations to count the resources in the collection. @@ -19319,8 +19319,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Casts the previous resource to Manager. @@ -19344,8 +19344,8 @@ paths: $ref: '#/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-description: Provides operations to count the resources in the collection. @@ -19627,7 +19627,6 @@ definitions: type: string x-ms-enum-flags: isFlags: true - style: simple Edm.Geography: $ref: '#/definitions/Edm.Geometry' Edm.GeographyPoint: diff --git a/test/Microsoft.OpenAPI.OData.Reader.Tests/Resources/TripService.OpenApi.json b/test/Microsoft.OpenAPI.OData.Reader.Tests/Resources/TripService.OpenApi.json index d748228e..b20b1dce 100644 --- a/test/Microsoft.OpenAPI.OData.Reader.Tests/Resources/TripService.OpenApi.json +++ b/test/Microsoft.OpenAPI.OData.Reader.Tests/Resources/TripService.OpenApi.json @@ -1535,8 +1535,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -1569,8 +1569,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -1666,8 +1666,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -1702,8 +1702,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -1748,8 +1748,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -1781,8 +1781,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -1806,8 +1806,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -1836,8 +1836,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -1921,8 +1921,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -1956,8 +1956,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -1994,8 +1994,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -2021,8 +2021,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -2054,8 +2054,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -2151,8 +2151,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -2187,8 +2187,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -2233,8 +2233,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -2266,8 +2266,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -2291,8 +2291,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -2321,8 +2321,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -2389,8 +2389,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -2422,8 +2422,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -2447,8 +2447,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -2531,8 +2531,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -2615,8 +2615,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -2745,8 +2745,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -2803,8 +2803,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -2910,8 +2910,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -2958,8 +2958,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -3014,8 +3014,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -3057,8 +3057,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -3094,8 +3094,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -3134,8 +3134,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -3212,8 +3212,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -3257,8 +3257,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -3294,8 +3294,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -3388,8 +3388,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -3482,8 +3482,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -3515,8 +3515,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -3595,8 +3595,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -3621,8 +3621,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -3752,8 +3752,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -3785,8 +3785,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -3915,8 +3915,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -3948,8 +3948,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -4016,8 +4016,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -4049,8 +4049,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -4074,8 +4074,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -4158,8 +4158,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -4243,8 +4243,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -4278,8 +4278,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -4316,8 +4316,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -4343,8 +4343,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -4376,8 +4376,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -4473,8 +4473,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -4509,8 +4509,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -4555,8 +4555,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -4588,8 +4588,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -4613,8 +4613,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -4643,8 +4643,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -4711,8 +4711,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -4744,8 +4744,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -4769,8 +4769,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -4853,8 +4853,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -4983,8 +4983,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -5041,8 +5041,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -5148,8 +5148,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -5196,8 +5196,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -5252,8 +5252,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -5295,8 +5295,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -5332,8 +5332,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -5372,8 +5372,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -5450,8 +5450,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -5495,8 +5495,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -5532,8 +5532,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -5626,8 +5626,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -5659,8 +5659,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -5739,8 +5739,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -5765,8 +5765,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -5896,8 +5896,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -5929,8 +5929,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -6059,8 +6059,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -6113,8 +6113,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -6220,8 +6220,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -6268,8 +6268,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -6324,8 +6324,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -6367,8 +6367,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -6404,8 +6404,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -6444,8 +6444,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -6522,8 +6522,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -6567,8 +6567,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -6604,8 +6604,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -6637,8 +6637,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -6717,8 +6717,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -6743,8 +6743,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -6876,8 +6876,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -6918,8 +6918,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -7014,8 +7014,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -7064,8 +7064,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -7111,8 +7111,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -7263,8 +7263,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -7387,8 +7387,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -7461,8 +7461,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -7508,8 +7508,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -7589,8 +7589,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -7630,8 +7630,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -7678,8 +7678,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -7703,8 +7703,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -7812,8 +7812,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -7841,8 +7841,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -7926,8 +7926,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -8011,8 +8011,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -8046,8 +8046,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -8084,8 +8084,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -8111,8 +8111,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -8144,8 +8144,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -8241,8 +8241,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -8277,8 +8277,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -8323,8 +8323,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -8370,8 +8370,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -8395,8 +8395,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -8439,8 +8439,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -8507,8 +8507,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -8540,8 +8540,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -8565,8 +8565,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -8649,8 +8649,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -8779,8 +8779,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -8833,8 +8833,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -8940,8 +8940,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -8988,8 +8988,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -9044,8 +9044,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -9101,8 +9101,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -9138,8 +9138,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -9192,8 +9192,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -9270,8 +9270,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -9315,8 +9315,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -9352,8 +9352,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -9385,8 +9385,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -9465,8 +9465,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -9491,8 +9491,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -9622,8 +9622,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -9680,8 +9680,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -9787,8 +9787,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -9835,8 +9835,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -9891,8 +9891,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -9934,8 +9934,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -9971,8 +9971,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -10011,8 +10011,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -10089,8 +10089,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -10134,8 +10134,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -10171,8 +10171,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -10265,8 +10265,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -10298,8 +10298,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -10378,8 +10378,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -10404,8 +10404,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -10535,8 +10535,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -10568,8 +10568,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -10618,8 +10618,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -10751,8 +10751,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -10793,8 +10793,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -10889,8 +10889,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -10939,8 +10939,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -10986,8 +10986,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -11138,8 +11138,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -11262,8 +11262,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -11336,8 +11336,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -11383,8 +11383,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -11464,8 +11464,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -11505,8 +11505,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -11553,8 +11553,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -11582,8 +11582,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -11619,8 +11619,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -11752,8 +11752,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -11794,8 +11794,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -11890,8 +11890,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -11940,8 +11940,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -11987,8 +11987,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -12139,8 +12139,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -12263,8 +12263,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -12337,8 +12337,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -12384,8 +12384,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -12465,8 +12465,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -12506,8 +12506,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." }, @@ -12554,8 +12554,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/me", "description": "The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API." } @@ -13285,8 +13285,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/bestfriend", "description": "The bestfriend API is deprecated and will stop returning data on March 2023. Please use the new friends API." }, @@ -13332,8 +13332,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/bestfriend", "description": "The bestfriend API is deprecated and will stop returning data on March 2023. Please use the new friends API." }, @@ -13378,8 +13378,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/bestfriend", "description": "The bestfriend API is deprecated and will stop returning data on March 2023. Please use the new friends API." }, @@ -13417,8 +13417,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/bestfriend", "description": "The bestfriend API is deprecated and will stop returning data on March 2023. Please use the new friends API." }, @@ -13460,8 +13460,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/bestfriend", "description": "The bestfriend API is deprecated and will stop returning data on March 2023. Please use the new friends API." }, @@ -13567,8 +13567,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/bestfriend", "description": "The bestfriend API is deprecated and will stop returning data on March 2023. Please use the new friends API." } @@ -13615,8 +13615,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/bestfriend", "description": "The bestfriend API is deprecated and will stop returning data on March 2023. Please use the new friends API." } @@ -13671,8 +13671,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/bestfriend", "description": "The bestfriend API is deprecated and will stop returning data on March 2023. Please use the new friends API." } @@ -13728,8 +13728,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/bestfriend", "description": "The bestfriend API is deprecated and will stop returning data on March 2023. Please use the new friends API." } @@ -13765,8 +13765,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/bestfriend", "description": "The bestfriend API is deprecated and will stop returning data on March 2023. Please use the new friends API." } @@ -13819,8 +13819,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/bestfriend", "description": "The bestfriend API is deprecated and will stop returning data on March 2023. Please use the new friends API." } @@ -13897,8 +13897,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/bestfriend", "description": "The bestfriend API is deprecated and will stop returning data on March 2023. Please use the new friends API." } @@ -13942,8 +13942,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/bestfriend", "description": "The bestfriend API is deprecated and will stop returning data on March 2023. Please use the new friends API." } @@ -13979,8 +13979,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/bestfriend", "description": "The bestfriend API is deprecated and will stop returning data on March 2023. Please use the new friends API." } @@ -14073,8 +14073,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/bestfriend", "description": "The bestfriend API is deprecated and will stop returning data on March 2023. Please use the new friends API." } @@ -14167,8 +14167,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/bestfriend", "description": "The bestfriend API is deprecated and will stop returning data on March 2023. Please use the new friends API." } @@ -15874,8 +15874,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/trips", "description": "The GetFriendsTrips API is deprecated and will stop returning data on March 2023. Please use the new trips API on friends." }, @@ -17166,8 +17166,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -17206,8 +17206,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -17315,8 +17315,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -17361,8 +17361,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -17404,8 +17404,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -17511,8 +17511,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -17559,8 +17559,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -17615,8 +17615,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -17658,8 +17658,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -17695,8 +17695,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -17735,8 +17735,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -17830,8 +17830,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -17877,8 +17877,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -17927,8 +17927,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -17966,8 +17966,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -18009,8 +18009,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -18116,8 +18116,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -18164,8 +18164,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -18220,8 +18220,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -18263,8 +18263,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -18300,8 +18300,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -18340,8 +18340,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -18418,8 +18418,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -18463,8 +18463,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -18500,8 +18500,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -18594,8 +18594,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -18688,8 +18688,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -18828,8 +18828,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -18896,8 +18896,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -19013,8 +19013,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -19071,8 +19071,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -19137,8 +19137,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -19190,8 +19190,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -19237,8 +19237,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -19287,8 +19287,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -19375,8 +19375,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -19430,8 +19430,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -19477,8 +19477,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -19581,8 +19581,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -19685,8 +19685,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -19728,8 +19728,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -19818,8 +19818,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -19856,8 +19856,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -19997,8 +19997,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -20040,8 +20040,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -20180,8 +20180,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -20223,8 +20223,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -20301,8 +20301,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -20346,8 +20346,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -20383,8 +20383,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -20491,8 +20491,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -20586,8 +20586,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -20633,8 +20633,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -20683,8 +20683,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -20722,8 +20722,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -20765,8 +20765,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -20872,8 +20872,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -20920,8 +20920,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -20976,8 +20976,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -21019,8 +21019,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -21056,8 +21056,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -21096,8 +21096,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -21174,8 +21174,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -21219,8 +21219,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -21256,8 +21256,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -21350,8 +21350,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -21490,8 +21490,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -21558,8 +21558,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -21675,8 +21675,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -21733,8 +21733,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -21799,8 +21799,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -21852,8 +21852,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -21899,8 +21899,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -21949,8 +21949,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -22037,8 +22037,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -22092,8 +22092,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -22139,8 +22139,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -22243,8 +22243,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -22286,8 +22286,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -22376,8 +22376,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -22414,8 +22414,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -22555,8 +22555,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -22598,8 +22598,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -22738,8 +22738,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -22802,8 +22802,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -22919,8 +22919,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -22977,8 +22977,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -23043,8 +23043,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -23096,8 +23096,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -23143,8 +23143,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -23193,8 +23193,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -23281,8 +23281,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -23336,8 +23336,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -23383,8 +23383,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -23426,8 +23426,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -23516,8 +23516,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -23554,8 +23554,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -23697,8 +23697,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -23751,8 +23751,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -23857,8 +23857,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -23917,8 +23917,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -23974,8 +23974,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -24136,8 +24136,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -24270,8 +24270,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -24354,8 +24354,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -24411,8 +24411,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -24502,8 +24502,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -24553,8 +24553,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -24611,8 +24611,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -24648,8 +24648,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -24767,8 +24767,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -24808,8 +24808,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -24917,8 +24917,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -25012,8 +25012,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -25059,8 +25059,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -25109,8 +25109,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -25148,8 +25148,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -25191,8 +25191,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -25298,8 +25298,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -25346,8 +25346,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -25402,8 +25402,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -25459,8 +25459,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -25496,8 +25496,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -25550,8 +25550,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -25628,8 +25628,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -25673,8 +25673,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -25710,8 +25710,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -25804,8 +25804,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -25944,8 +25944,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -26008,8 +26008,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -26125,8 +26125,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -26183,8 +26183,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -26249,8 +26249,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -26316,8 +26316,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -26363,8 +26363,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -26427,8 +26427,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -26515,8 +26515,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -26570,8 +26570,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -26617,8 +26617,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -26660,8 +26660,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -26750,8 +26750,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -26788,8 +26788,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -26929,8 +26929,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -26997,8 +26997,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -27114,8 +27114,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -27172,8 +27172,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -27238,8 +27238,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -27291,8 +27291,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -27338,8 +27338,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -27388,8 +27388,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -27476,8 +27476,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -27531,8 +27531,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -27578,8 +27578,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -27682,8 +27682,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -27725,8 +27725,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -27815,8 +27815,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -27853,8 +27853,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -27994,8 +27994,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -28037,8 +28037,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -28099,8 +28099,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -28242,8 +28242,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -28296,8 +28296,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -28402,8 +28402,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -28462,8 +28462,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -28519,8 +28519,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -28681,8 +28681,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -28815,8 +28815,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -28899,8 +28899,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -28956,8 +28956,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -29047,8 +29047,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -29098,8 +29098,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -29156,8 +29156,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -29197,8 +29197,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -29244,8 +29244,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -29387,8 +29387,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -29441,8 +29441,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -29547,8 +29547,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -29607,8 +29607,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -29664,8 +29664,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -29826,8 +29826,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -29960,8 +29960,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -30044,8 +30044,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -30101,8 +30101,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -30192,8 +30192,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -30243,8 +30243,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." }, @@ -30301,8 +30301,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -30348,8 +30348,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -30492,8 +30492,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -30539,8 +30539,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -30683,8 +30683,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -30730,8 +30730,8 @@ }, "deprecated": true, "x-ms-deprecation": { - "removalDate": "2023-03-15T00:00:00.0000000", - "date": "2021-08-24T00:00:00.0000000", + "removalDate": "2023-03-15T00:00:00.0000000+00:00", + "date": "2021-08-24T00:00:00.0000000+00:00", "version": "2021-05/people", "description": "The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API." } @@ -31296,8 +31296,7 @@ ], "type": "string", "x-ms-enum-flags": { - "isFlags": true, - "style": "simple" + "isFlags": true } }, "Edm.Geography": { diff --git a/test/Microsoft.OpenAPI.OData.Reader.Tests/Resources/TripService.OpenApi.yaml b/test/Microsoft.OpenAPI.OData.Reader.Tests/Resources/TripService.OpenApi.yaml index 5e7f3fbc..efb0bfae 100644 --- a/test/Microsoft.OpenAPI.OData.Reader.Tests/Resources/TripService.OpenApi.yaml +++ b/test/Microsoft.OpenAPI.OData.Reader.Tests/Resources/TripService.OpenApi.yaml @@ -1014,8 +1014,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -1038,8 +1038,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -1102,8 +1102,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. patch: @@ -1127,8 +1127,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. post: @@ -1158,8 +1158,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. /Me/AddressInfo/$count: @@ -1179,8 +1179,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. /Me/AddressInfo/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation: @@ -1197,8 +1197,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. /Me/AddressInfo/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation/$count: @@ -1216,8 +1216,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. /Me/BestFriend: @@ -1280,8 +1280,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -1305,8 +1305,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -1332,8 +1332,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -1352,8 +1352,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -1375,8 +1375,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -1439,8 +1439,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. patch: @@ -1464,8 +1464,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. post: @@ -1495,8 +1495,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. /Me/BestFriend/AddressInfo/$count: @@ -1516,8 +1516,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. /Me/BestFriend/AddressInfo/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation: @@ -1534,8 +1534,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. /Me/BestFriend/AddressInfo/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation/$count: @@ -1553,8 +1553,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. /Me/BestFriend/HomeAddress: @@ -1600,8 +1600,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. patch: @@ -1623,8 +1623,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. /Me/BestFriend/HomeAddress/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation: @@ -1641,8 +1641,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. /Me/BestFriend/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee: @@ -1704,8 +1704,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. /Me/BestFriend/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager: @@ -1767,8 +1767,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. /Me/Friends: @@ -1864,8 +1864,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -1904,8 +1904,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -1975,8 +1975,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. patch: @@ -2008,8 +2008,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. post: @@ -2046,8 +2046,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. '/Me/Friends/{UserName}/AddressInfo/$count': @@ -2074,8 +2074,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. '/Me/Friends/{UserName}/AddressInfo/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation': @@ -2100,8 +2100,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. '/Me/Friends/{UserName}/AddressInfo/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation/$count': @@ -2126,8 +2126,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. '/Me/Friends/{UserName}/HomeAddress': @@ -2180,8 +2180,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. patch: @@ -2211,8 +2211,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. '/Me/Friends/{UserName}/HomeAddress/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation': @@ -2237,8 +2237,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. '/Me/Friends/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee': @@ -2307,8 +2307,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. '/Me/Friends/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager': @@ -2377,8 +2377,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. /Me/Friends/$count: @@ -2398,8 +2398,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. /Me/Friends/$ref: @@ -2455,8 +2455,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -2474,8 +2474,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -2572,8 +2572,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. /Me/Friends/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee/$count: @@ -2593,8 +2593,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. /Me/Friends/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager: @@ -2690,8 +2690,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. /Me/Friends/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager/$count: @@ -2711,8 +2711,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. /Me/HomeAddress: @@ -2758,8 +2758,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. patch: @@ -2781,8 +2781,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. /Me/HomeAddress/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation: @@ -2799,8 +2799,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. /Me/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee: @@ -2862,8 +2862,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. /Me/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee/BestFriend: @@ -2926,8 +2926,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -2951,8 +2951,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -2978,8 +2978,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -2998,8 +2998,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -3021,8 +3021,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -3085,8 +3085,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. patch: @@ -3110,8 +3110,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. post: @@ -3141,8 +3141,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. /Me/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee/BestFriend/AddressInfo/$count: @@ -3162,8 +3162,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. /Me/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee/BestFriend/AddressInfo/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation: @@ -3180,8 +3180,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. /Me/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee/BestFriend/AddressInfo/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation/$count: @@ -3199,8 +3199,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. /Me/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee/BestFriend/HomeAddress: @@ -3246,8 +3246,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. patch: @@ -3269,8 +3269,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. /Me/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee/BestFriend/HomeAddress/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation: @@ -3287,8 +3287,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. /Me/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee/BestFriend/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager: @@ -3350,8 +3350,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. /Me/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee/Friends: @@ -3447,8 +3447,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -3487,8 +3487,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -3558,8 +3558,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. patch: @@ -3591,8 +3591,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. post: @@ -3629,8 +3629,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. '/Me/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee/Friends/{UserName}/AddressInfo/$count': @@ -3657,8 +3657,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. '/Me/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee/Friends/{UserName}/AddressInfo/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation': @@ -3683,8 +3683,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. '/Me/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee/Friends/{UserName}/AddressInfo/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation/$count': @@ -3709,8 +3709,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. '/Me/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee/Friends/{UserName}/HomeAddress': @@ -3763,8 +3763,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. patch: @@ -3794,8 +3794,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. '/Me/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee/Friends/{UserName}/HomeAddress/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation': @@ -3820,8 +3820,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. '/Me/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee/Friends/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager': @@ -3890,8 +3890,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. /Me/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee/Friends/$count: @@ -3911,8 +3911,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. /Me/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee/Friends/$ref: @@ -3968,8 +3968,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -3987,8 +3987,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -4085,8 +4085,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. /Me/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee/Friends/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager/$count: @@ -4106,8 +4106,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. /Me/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee/Peers: @@ -4203,8 +4203,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -4240,8 +4240,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -4311,8 +4311,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. patch: @@ -4344,8 +4344,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. post: @@ -4382,8 +4382,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. '/Me/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee/Peers/{UserName}/AddressInfo/$count': @@ -4410,8 +4410,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. '/Me/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee/Peers/{UserName}/AddressInfo/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation': @@ -4436,8 +4436,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. '/Me/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee/Peers/{UserName}/AddressInfo/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation/$count': @@ -4462,8 +4462,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. '/Me/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee/Peers/{UserName}/HomeAddress': @@ -4516,8 +4516,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. patch: @@ -4547,8 +4547,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. '/Me/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee/Peers/{UserName}/HomeAddress/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation': @@ -4573,8 +4573,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. /Me/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee/Peers/$count: @@ -4594,8 +4594,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. /Me/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee/Peers/$ref: @@ -4651,8 +4651,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -4670,8 +4670,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -4765,8 +4765,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -4794,8 +4794,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -4865,8 +4865,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -4901,8 +4901,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -4935,8 +4935,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -5044,8 +5044,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: function @@ -5131,8 +5131,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -5184,8 +5184,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -5216,8 +5216,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. '/Me/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee/Trips/{TripId}/PlanItems/$ref': @@ -5271,8 +5271,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -5301,8 +5301,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -5332,8 +5332,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. /Me/Microsoft.OData.Service.Sample.TrippinInMemory.Models.GetFavoriteAirline(): @@ -5350,8 +5350,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: function @@ -5428,8 +5428,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: function @@ -5449,8 +5449,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: action @@ -5513,8 +5513,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. /Me/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager/BestFriend: @@ -5577,8 +5577,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -5602,8 +5602,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -5629,8 +5629,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -5649,8 +5649,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -5672,8 +5672,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -5736,8 +5736,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. patch: @@ -5761,8 +5761,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. post: @@ -5792,8 +5792,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. /Me/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager/BestFriend/AddressInfo/$count: @@ -5822,8 +5822,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. /Me/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager/BestFriend/AddressInfo/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation: @@ -5840,8 +5840,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. /Me/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager/BestFriend/AddressInfo/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation/$count: @@ -5868,8 +5868,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. /Me/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager/BestFriend/HomeAddress: @@ -5915,8 +5915,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. patch: @@ -5938,8 +5938,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. /Me/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager/BestFriend/HomeAddress/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation: @@ -5956,8 +5956,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. /Me/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager/BestFriend/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee: @@ -6019,8 +6019,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. /Me/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager/DirectReports: @@ -6116,8 +6116,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -6153,8 +6153,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -6224,8 +6224,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. patch: @@ -6257,8 +6257,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. post: @@ -6295,8 +6295,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. '/Me/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager/DirectReports/{UserName}/AddressInfo/$count': @@ -6332,8 +6332,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. '/Me/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager/DirectReports/{UserName}/AddressInfo/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation': @@ -6358,8 +6358,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. '/Me/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager/DirectReports/{UserName}/AddressInfo/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation/$count': @@ -6393,8 +6393,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. '/Me/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager/DirectReports/{UserName}/HomeAddress': @@ -6447,8 +6447,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. patch: @@ -6478,8 +6478,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. '/Me/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager/DirectReports/{UserName}/HomeAddress/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation': @@ -6504,8 +6504,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. /Me/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager/DirectReports/$count: @@ -6525,8 +6525,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. /Me/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager/DirectReports/$ref: @@ -6582,8 +6582,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -6601,8 +6601,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -6699,8 +6699,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -6739,8 +6739,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -6810,8 +6810,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. patch: @@ -6843,8 +6843,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. post: @@ -6881,8 +6881,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. '/Me/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager/Friends/{UserName}/AddressInfo/$count': @@ -6909,8 +6909,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. '/Me/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager/Friends/{UserName}/AddressInfo/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation': @@ -6935,8 +6935,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. '/Me/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager/Friends/{UserName}/AddressInfo/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation/$count': @@ -6961,8 +6961,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. '/Me/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager/Friends/{UserName}/HomeAddress': @@ -7015,8 +7015,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. patch: @@ -7046,8 +7046,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. '/Me/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager/Friends/{UserName}/HomeAddress/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation': @@ -7072,8 +7072,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. '/Me/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager/Friends/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee': @@ -7142,8 +7142,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. /Me/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager/Friends/$count: @@ -7163,8 +7163,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. /Me/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager/Friends/$ref: @@ -7220,8 +7220,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -7239,8 +7239,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -7337,8 +7337,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. /Me/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager/Friends/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee/$count: @@ -7358,8 +7358,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. /Me/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Hire: @@ -7390,8 +7390,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: action @@ -7485,8 +7485,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -7514,8 +7514,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -7585,8 +7585,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -7621,8 +7621,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -7655,8 +7655,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -7764,8 +7764,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: function @@ -7851,8 +7851,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -7904,8 +7904,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -7936,8 +7936,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. '/Me/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager/Trips/{TripId}/PlanItems/$ref': @@ -7991,8 +7991,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -8021,8 +8021,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -8052,8 +8052,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. /Me/Microsoft.OData.Service.Sample.TrippinInMemory.Models.ShareTrip: @@ -8073,8 +8073,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: action @@ -8099,8 +8099,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: function @@ -8194,8 +8194,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -8223,8 +8223,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -8294,8 +8294,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -8330,8 +8330,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -8364,8 +8364,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -8473,8 +8473,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: function @@ -8560,8 +8560,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -8613,8 +8613,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -8645,8 +8645,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. '/Me/Trips/{TripId}/PlanItems/$ref': @@ -8700,8 +8700,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -8730,8 +8730,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. x-ms-docs-operation-type: operation @@ -8761,8 +8761,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/me description: The Me API is deprecated and will stop returning data on March 2023. Please use the new me2 API. /NewComePeople: @@ -9263,8 +9263,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/bestfriend description: The bestfriend API is deprecated and will stop returning data on March 2023. Please use the new friends API. x-ms-docs-operation-type: operation @@ -9296,8 +9296,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/bestfriend description: The bestfriend API is deprecated and will stop returning data on March 2023. Please use the new friends API. x-ms-docs-operation-type: operation @@ -9328,8 +9328,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/bestfriend description: The bestfriend API is deprecated and will stop returning data on March 2023. Please use the new friends API. x-ms-docs-operation-type: operation @@ -9356,8 +9356,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/bestfriend description: The bestfriend API is deprecated and will stop returning data on March 2023. Please use the new friends API. x-ms-docs-operation-type: operation @@ -9386,8 +9386,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/bestfriend description: The bestfriend API is deprecated and will stop returning data on March 2023. Please use the new friends API. x-ms-docs-operation-type: operation @@ -9457,8 +9457,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/bestfriend description: The bestfriend API is deprecated and will stop returning data on March 2023. Please use the new friends API. patch: @@ -9490,8 +9490,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/bestfriend description: The bestfriend API is deprecated and will stop returning data on March 2023. Please use the new friends API. post: @@ -9528,8 +9528,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/bestfriend description: The bestfriend API is deprecated and will stop returning data on March 2023. Please use the new friends API. '/NewComePeople/{UserName}/BestFriend/AddressInfo/$count': @@ -9565,8 +9565,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/bestfriend description: The bestfriend API is deprecated and will stop returning data on March 2023. Please use the new friends API. '/NewComePeople/{UserName}/BestFriend/AddressInfo/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation': @@ -9591,8 +9591,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/bestfriend description: The bestfriend API is deprecated and will stop returning data on March 2023. Please use the new friends API. '/NewComePeople/{UserName}/BestFriend/AddressInfo/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation/$count': @@ -9626,8 +9626,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/bestfriend description: The bestfriend API is deprecated and will stop returning data on March 2023. Please use the new friends API. '/NewComePeople/{UserName}/BestFriend/HomeAddress': @@ -9680,8 +9680,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/bestfriend description: The bestfriend API is deprecated and will stop returning data on March 2023. Please use the new friends API. patch: @@ -9711,8 +9711,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/bestfriend description: The bestfriend API is deprecated and will stop returning data on March 2023. Please use the new friends API. '/NewComePeople/{UserName}/BestFriend/HomeAddress/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation': @@ -9737,8 +9737,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/bestfriend description: The bestfriend API is deprecated and will stop returning data on March 2023. Please use the new friends API. '/NewComePeople/{UserName}/BestFriend/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee': @@ -9807,8 +9807,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/bestfriend description: The bestfriend API is deprecated and will stop returning data on March 2023. Please use the new friends API. '/NewComePeople/{UserName}/BestFriend/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager': @@ -9877,8 +9877,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/bestfriend description: The bestfriend API is deprecated and will stop returning data on March 2023. Please use the new friends API. '/NewComePeople/{UserName}/Friends': @@ -11055,8 +11055,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/trips description: The GetFriendsTrips API is deprecated and will stop returning data on March 2023. Please use the new trips API on friends. x-ms-docs-operation-type: function @@ -11948,8 +11948,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. post: @@ -11975,8 +11975,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -12055,8 +12055,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -12087,8 +12087,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -12117,8 +12117,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -12188,8 +12188,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. patch: @@ -12221,8 +12221,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. post: @@ -12259,8 +12259,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/AddressInfo/$count': @@ -12287,8 +12287,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/AddressInfo/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation': @@ -12313,8 +12313,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/AddressInfo/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation/$count': @@ -12339,8 +12339,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/BestFriend': @@ -12410,8 +12410,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -12443,8 +12443,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -12478,8 +12478,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -12506,8 +12506,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -12536,8 +12536,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -12607,8 +12607,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. patch: @@ -12640,8 +12640,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. post: @@ -12678,8 +12678,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/BestFriend/AddressInfo/$count': @@ -12706,8 +12706,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/BestFriend/AddressInfo/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation': @@ -12732,8 +12732,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/BestFriend/AddressInfo/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation/$count': @@ -12758,8 +12758,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/BestFriend/HomeAddress': @@ -12812,8 +12812,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. patch: @@ -12843,8 +12843,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/BestFriend/HomeAddress/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation': @@ -12869,8 +12869,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/BestFriend/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee': @@ -12939,8 +12939,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/BestFriend/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager': @@ -13009,8 +13009,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Friends': @@ -13113,8 +13113,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -13160,8 +13160,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -13238,8 +13238,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. patch: @@ -13278,8 +13278,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. post: @@ -13323,8 +13323,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Friends/{UserName1}/AddressInfo/$count': @@ -13358,8 +13358,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Friends/{UserName1}/AddressInfo/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation': @@ -13391,8 +13391,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Friends/{UserName1}/AddressInfo/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation/$count': @@ -13424,8 +13424,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Friends/{UserName1}/HomeAddress': @@ -13485,8 +13485,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. patch: @@ -13523,8 +13523,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Friends/{UserName1}/HomeAddress/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation': @@ -13556,8 +13556,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Friends/{UserName1}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee': @@ -13633,8 +13633,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Friends/{UserName1}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager': @@ -13710,8 +13710,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Friends/$count': @@ -13738,8 +13738,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Friends/$ref': @@ -13802,8 +13802,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -13829,8 +13829,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -13934,8 +13934,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Friends/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee/$count': @@ -13962,8 +13962,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Friends/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager': @@ -14066,8 +14066,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Friends/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager/$count': @@ -14094,8 +14094,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/HomeAddress': @@ -14148,8 +14148,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. patch: @@ -14179,8 +14179,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/HomeAddress/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation': @@ -14205,8 +14205,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee': @@ -14284,8 +14284,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee/BestFriend': @@ -14355,8 +14355,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -14388,8 +14388,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -14423,8 +14423,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -14451,8 +14451,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -14481,8 +14481,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -14552,8 +14552,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. patch: @@ -14585,8 +14585,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. post: @@ -14623,8 +14623,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee/BestFriend/AddressInfo/$count': @@ -14651,8 +14651,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee/BestFriend/AddressInfo/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation': @@ -14677,8 +14677,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee/BestFriend/AddressInfo/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation/$count': @@ -14703,8 +14703,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee/BestFriend/HomeAddress': @@ -14757,8 +14757,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. patch: @@ -14788,8 +14788,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee/BestFriend/HomeAddress/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation': @@ -14814,8 +14814,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee/BestFriend/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager': @@ -14884,8 +14884,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee/Friends': @@ -14988,8 +14988,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -15035,8 +15035,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -15113,8 +15113,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. patch: @@ -15153,8 +15153,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. post: @@ -15198,8 +15198,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee/Friends/{UserName1}/AddressInfo/$count': @@ -15233,8 +15233,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee/Friends/{UserName1}/AddressInfo/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation': @@ -15266,8 +15266,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee/Friends/{UserName1}/AddressInfo/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation/$count': @@ -15299,8 +15299,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee/Friends/{UserName1}/HomeAddress': @@ -15360,8 +15360,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. patch: @@ -15398,8 +15398,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee/Friends/{UserName1}/HomeAddress/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation': @@ -15431,8 +15431,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee/Friends/{UserName1}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager': @@ -15508,8 +15508,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee/Friends/$count': @@ -15536,8 +15536,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee/Friends/$ref': @@ -15600,8 +15600,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -15627,8 +15627,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -15732,8 +15732,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee/Friends/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager/$count': @@ -15760,8 +15760,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee/Peers': @@ -15864,8 +15864,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -15908,8 +15908,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -15986,8 +15986,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. patch: @@ -16026,8 +16026,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. post: @@ -16071,8 +16071,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee/Peers/{UserName1}/AddressInfo/$count': @@ -16106,8 +16106,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee/Peers/{UserName1}/AddressInfo/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation': @@ -16139,8 +16139,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee/Peers/{UserName1}/AddressInfo/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation/$count': @@ -16172,8 +16172,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee/Peers/{UserName1}/HomeAddress': @@ -16233,8 +16233,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. patch: @@ -16271,8 +16271,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee/Peers/{UserName1}/HomeAddress/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation': @@ -16304,8 +16304,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee/Peers/$count': @@ -16332,8 +16332,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee/Peers/$ref': @@ -16396,8 +16396,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -16423,8 +16423,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -16525,8 +16525,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -16562,8 +16562,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -16640,8 +16640,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -16683,8 +16683,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -16724,8 +16724,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -16840,8 +16840,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: function @@ -16934,8 +16934,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -16994,8 +16994,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -17033,8 +17033,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee/Trips/{TripId}/PlanItems/$ref': @@ -17095,8 +17095,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -17132,8 +17132,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -17170,8 +17170,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.GetFavoriteAirline()': @@ -17196,8 +17196,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: function @@ -17281,8 +17281,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: function @@ -17310,8 +17310,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: action @@ -17390,8 +17390,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager/BestFriend': @@ -17461,8 +17461,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -17494,8 +17494,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -17529,8 +17529,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -17557,8 +17557,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -17587,8 +17587,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -17658,8 +17658,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. patch: @@ -17691,8 +17691,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. post: @@ -17729,8 +17729,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager/BestFriend/AddressInfo/$count': @@ -17766,8 +17766,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager/BestFriend/AddressInfo/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation': @@ -17792,8 +17792,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager/BestFriend/AddressInfo/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation/$count': @@ -17827,8 +17827,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager/BestFriend/HomeAddress': @@ -17881,8 +17881,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. patch: @@ -17912,8 +17912,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager/BestFriend/HomeAddress/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation': @@ -17938,8 +17938,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager/BestFriend/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee': @@ -18008,8 +18008,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager/DirectReports': @@ -18112,8 +18112,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -18156,8 +18156,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -18234,8 +18234,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. patch: @@ -18274,8 +18274,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. post: @@ -18319,8 +18319,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager/DirectReports/{UserName1}/AddressInfo/$count': @@ -18363,8 +18363,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager/DirectReports/{UserName1}/AddressInfo/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation': @@ -18396,8 +18396,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager/DirectReports/{UserName1}/AddressInfo/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation/$count': @@ -18438,8 +18438,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager/DirectReports/{UserName1}/HomeAddress': @@ -18499,8 +18499,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. patch: @@ -18537,8 +18537,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager/DirectReports/{UserName1}/HomeAddress/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation': @@ -18570,8 +18570,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager/DirectReports/$count': @@ -18598,8 +18598,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager/DirectReports/$ref': @@ -18662,8 +18662,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -18689,8 +18689,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -18794,8 +18794,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -18841,8 +18841,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -18919,8 +18919,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. patch: @@ -18959,8 +18959,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. post: @@ -19004,8 +19004,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager/Friends/{UserName1}/AddressInfo/$count': @@ -19039,8 +19039,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager/Friends/{UserName1}/AddressInfo/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation': @@ -19072,8 +19072,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager/Friends/{UserName1}/AddressInfo/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation/$count': @@ -19105,8 +19105,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager/Friends/{UserName1}/HomeAddress': @@ -19166,8 +19166,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. patch: @@ -19204,8 +19204,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager/Friends/{UserName1}/HomeAddress/Microsoft.OData.Service.Sample.TrippinInMemory.Models.EventLocation': @@ -19237,8 +19237,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager/Friends/{UserName1}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee': @@ -19314,8 +19314,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager/Friends/$count': @@ -19342,8 +19342,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager/Friends/$ref': @@ -19406,8 +19406,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -19433,8 +19433,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -19538,8 +19538,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager/Friends/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee/$count': @@ -19566,8 +19566,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Hire': @@ -19606,8 +19606,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: action @@ -19708,8 +19708,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -19745,8 +19745,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -19823,8 +19823,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -19866,8 +19866,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -19907,8 +19907,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -20023,8 +20023,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: function @@ -20117,8 +20117,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -20177,8 +20177,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -20216,8 +20216,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager/Trips/{TripId}/PlanItems/$ref': @@ -20278,8 +20278,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -20315,8 +20315,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -20353,8 +20353,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Microsoft.OData.Service.Sample.TrippinInMemory.Models.ShareTrip': @@ -20382,8 +20382,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: action @@ -20415,8 +20415,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: function @@ -20517,8 +20517,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -20554,8 +20554,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -20632,8 +20632,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -20675,8 +20675,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -20716,8 +20716,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -20832,8 +20832,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: function @@ -20926,8 +20926,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -20986,8 +20986,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -21025,8 +21025,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. '/People/{UserName}/Trips/{TripId}/PlanItems/$ref': @@ -21087,8 +21087,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -21124,8 +21124,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. x-ms-docs-operation-type: operation @@ -21162,8 +21162,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. /People/$count: @@ -21192,8 +21192,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. /People/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee: @@ -21298,8 +21298,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. /People/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Employee/$count: @@ -21328,8 +21328,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. /People/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager: @@ -21434,8 +21434,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. /People/Microsoft.OData.Service.Sample.TrippinInMemory.Models.Manager/$count: @@ -21464,8 +21464,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2023-03-15T00:00:00.0000000' - date: '2021-08-24T00:00:00.0000000' + removalDate: '2023-03-15T00:00:00.0000000+00:00' + date: '2021-08-24T00:00:00.0000000+00:00' version: 2021-05/people description: The People API is deprecated and will stop returning data on March 2023. Please use the new newPeople API. /ResetDataSource: @@ -21807,7 +21807,6 @@ components: type: string x-ms-enum-flags: isFlags: true - style: simple Edm.Geography: $ref: '#/components/schemas/Edm.Geometry' Edm.GeographyPoint: From 0edd8f8eab4b053dbc187a3284e02d8cf6ce67d4 Mon Sep 17 00:00:00 2001 From: Vincent Biret Date: Thu, 7 Sep 2023 15:47:13 -0400 Subject: [PATCH 2/2] - bumps Openapi.net version --- .../Microsoft.OpenAPI.OData.Reader.csproj | 2 +- src/OoasGui/OoasGui.csproj | 2 +- .../Microsoft.OpenAPI.OData.Reader.Tests.csproj | 2 +- tool/UpdateDocs/UpdateDocs.csproj | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Microsoft.OpenApi.OData.Reader/Microsoft.OpenAPI.OData.Reader.csproj b/src/Microsoft.OpenApi.OData.Reader/Microsoft.OpenAPI.OData.Reader.csproj index 2285fef2..70399d98 100644 --- a/src/Microsoft.OpenApi.OData.Reader/Microsoft.OpenAPI.OData.Reader.csproj +++ b/src/Microsoft.OpenApi.OData.Reader/Microsoft.OpenAPI.OData.Reader.csproj @@ -45,7 +45,7 @@ runtime; build; native; contentfiles; analyzers; buildtransitive - + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/src/OoasGui/OoasGui.csproj b/src/OoasGui/OoasGui.csproj index e613e5b0..4b25fbd3 100644 --- a/src/OoasGui/OoasGui.csproj +++ b/src/OoasGui/OoasGui.csproj @@ -17,7 +17,7 @@ - + \ No newline at end of file diff --git a/test/Microsoft.OpenAPI.OData.Reader.Tests/Microsoft.OpenAPI.OData.Reader.Tests.csproj b/test/Microsoft.OpenAPI.OData.Reader.Tests/Microsoft.OpenAPI.OData.Reader.Tests.csproj index fc5310ac..2c973780 100644 --- a/test/Microsoft.OpenAPI.OData.Reader.Tests/Microsoft.OpenAPI.OData.Reader.Tests.csproj +++ b/test/Microsoft.OpenAPI.OData.Reader.Tests/Microsoft.OpenAPI.OData.Reader.Tests.csproj @@ -71,7 +71,7 @@ all - + all diff --git a/tool/UpdateDocs/UpdateDocs.csproj b/tool/UpdateDocs/UpdateDocs.csproj index df5f7a51..97a5a4c7 100644 --- a/tool/UpdateDocs/UpdateDocs.csproj +++ b/tool/UpdateDocs/UpdateDocs.csproj @@ -13,6 +13,6 @@ - + \ No newline at end of file