|
1 | 1 | [assembly: System.Reflection.AssemblyMetadata("RepositoryUrl", "https://github.com/Microsoft/OpenAPI.NET")]
|
2 | 2 | [assembly: System.Runtime.CompilerServices.InternalsVisibleTo(@"Microsoft.OpenApi.Readers.Tests, PublicKey=0024000004800000940000000602000000240000525341310004000001000100957cb48387b2a5f54f5ce39255f18f26d32a39990db27cf48737afc6bc62759ba996b8a2bfb675d4e39f3d06ecb55a178b1b4031dcb2a767e29977d88cce864a0d16bfc1b3bebb0edf9fe285f10fffc0a85f93d664fa05af07faa3aad2e545182dbf787e3fd32b56aca95df1a3c4e75dec164a3f1a4c653d971b01ffc39eb3c4")]
|
3 | 3 | [assembly: System.Runtime.CompilerServices.InternalsVisibleTo(@"Microsoft.OpenApi.Tests, PublicKey=0024000004800000940000000602000000240000525341310004000001000100957cb48387b2a5f54f5ce39255f18f26d32a39990db27cf48737afc6bc62759ba996b8a2bfb675d4e39f3d06ecb55a178b1b4031dcb2a767e29977d88cce864a0d16bfc1b3bebb0edf9fe285f10fffc0a85f93d664fa05af07faa3aad2e545182dbf787e3fd32b56aca95df1a3c4e75dec164a3f1a4c653d971b01ffc39eb3c4")]
|
4 |
| -[assembly: System.Runtime.Versioning.TargetFramework(".NETStandard,Version=v2.0", FrameworkDisplayName="")] |
| 4 | +[assembly: System.Runtime.Versioning.TargetFramework(".NETStandard,Version=v2.0", FrameworkDisplayName=".NET Standard 2.0")] |
5 | 5 | namespace Microsoft.OpenApi.Any
|
6 | 6 | {
|
7 | 7 | public enum AnyType
|
@@ -424,6 +424,7 @@ namespace Microsoft.OpenApi.Models
|
424 | 424 | public const string Head = "head";
|
425 | 425 | public const string Headers = "headers";
|
426 | 426 | public const string Host = "host";
|
| 427 | + public const string Identifier = "identifier"; |
427 | 428 | public const string Implicit = "implicit";
|
428 | 429 | public const string In = "in";
|
429 | 430 | public const string Info = "info";
|
@@ -644,6 +645,7 @@ namespace Microsoft.OpenApi.Models
|
644 | 645 | public OpenApiLicense() { }
|
645 | 646 | public OpenApiLicense(Microsoft.OpenApi.Models.OpenApiLicense license) { }
|
646 | 647 | public System.Collections.Generic.IDictionary<string, Microsoft.OpenApi.Interfaces.IOpenApiExtension> Extensions { get; set; }
|
| 648 | + public string Identifier { get; set; } |
647 | 649 | public string Name { get; set; }
|
648 | 650 | public System.Uri Url { get; set; }
|
649 | 651 | public void SerializeAsV2(Microsoft.OpenApi.Writers.IOpenApiWriter writer) { }
|
@@ -780,13 +782,15 @@ namespace Microsoft.OpenApi.Models
|
780 | 782 | {
|
781 | 783 | public OpenApiReference() { }
|
782 | 784 | public OpenApiReference(Microsoft.OpenApi.Models.OpenApiReference reference) { }
|
| 785 | + public string Description { get; set; } |
783 | 786 | public string ExternalResource { get; set; }
|
784 | 787 | public Microsoft.OpenApi.Models.OpenApiDocument HostDocument { get; set; }
|
785 | 788 | public string Id { get; set; }
|
786 | 789 | public bool IsExternal { get; }
|
787 | 790 | public bool IsLocal { get; }
|
788 | 791 | public string ReferenceV2 { get; }
|
789 | 792 | public string ReferenceV3 { get; }
|
| 793 | + public string Summary { get; set; } |
790 | 794 | public Microsoft.OpenApi.Models.ReferenceType? Type { get; set; }
|
791 | 795 | public void SerializeAsV2(Microsoft.OpenApi.Writers.IOpenApiWriter writer) { }
|
792 | 796 | public void SerializeAsV3(Microsoft.OpenApi.Writers.IOpenApiWriter writer) { }
|
|
0 commit comments