You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public OpenApiResponses(Microsoft.OpenApi.Models.OpenApiResponses openApiResponses) { }
947
959
}
960
+
public class OpenApiSchema : Microsoft.OpenApi.Interfaces.IOpenApiElement, Microsoft.OpenApi.Interfaces.IOpenApiExtensible, Microsoft.OpenApi.Interfaces.IOpenApiReferenceable, Microsoft.OpenApi.Interfaces.IOpenApiSerializable
961
+
{
962
+
public OpenApiSchema() { }
963
+
public OpenApiSchema(Microsoft.OpenApi.Models.OpenApiSchema schema) { }
964
+
public Microsoft.OpenApi.Models.OpenApiSchema AdditionalProperties { get; set; }
965
+
public bool AdditionalPropertiesAllowed { get; set; }
966
+
public System.Collections.Generic.IList<Microsoft.OpenApi.Models.OpenApiSchema> AllOf { get; set; }
967
+
public System.Collections.Generic.IList<Microsoft.OpenApi.Models.OpenApiSchema> AnyOf { get; set; }
968
+
public string Comment { get; set; }
969
+
public Microsoft.OpenApi.Any.OpenApiAny Default { get; set; }
970
+
public System.Collections.Generic.IDictionary<string, Microsoft.OpenApi.Models.OpenApiSchema> Definitions { get; set; }
971
+
public bool Deprecated { get; set; }
972
+
public string Description { get; set; }
973
+
public Microsoft.OpenApi.Models.OpenApiDiscriminator Discriminator { get; set; }
974
+
public string DynamicAnchor { get; set; }
975
+
public string DynamicRef { get; set; }
976
+
public System.Collections.Generic.IList<System.Text.Json.Nodes.JsonNode> Enum { get; set; }
977
+
public Microsoft.OpenApi.Any.OpenApiAny Example { get; set; }
978
+
public bool? ExclusiveMaximum { get; set; }
979
+
public bool? ExclusiveMinimum { get; set; }
980
+
public System.Collections.Generic.IDictionary<string, Microsoft.OpenApi.Interfaces.IOpenApiExtension> Extensions { get; set; }
981
+
public Microsoft.OpenApi.Models.OpenApiExternalDocs ExternalDocs { get; set; }
982
+
public string Format { get; set; }
983
+
public string Id { get; set; }
984
+
public Microsoft.OpenApi.Models.OpenApiSchema Items { get; set; }
985
+
public int? MaxItems { get; set; }
986
+
public int? MaxLength { get; set; }
987
+
public int? MaxProperties { get; set; }
988
+
public decimal? Maximum { get; set; }
989
+
public int? MinItems { get; set; }
990
+
public int? MinLength { get; set; }
991
+
public int? MinProperties { get; set; }
992
+
public decimal? Minimum { get; set; }
993
+
public decimal? MultipleOf { get; set; }
994
+
public Microsoft.OpenApi.Models.OpenApiSchema Not { get; set; }
995
+
public bool Nullable { get; set; }
996
+
public System.Collections.Generic.IList<Microsoft.OpenApi.Models.OpenApiSchema> OneOf { get; set; }
997
+
public string Pattern { get; set; }
998
+
public System.Collections.Generic.IDictionary<string, Microsoft.OpenApi.Models.OpenApiSchema> Properties { get; set; }
999
+
public bool ReadOnly { get; set; }
1000
+
public string RecursiveAnchor { get; set; }
1001
+
public string RecursiveRef { get; set; }
1002
+
public Microsoft.OpenApi.Models.OpenApiReference Reference { get; set; }
1003
+
public System.Collections.Generic.ISet<string> Required { get; set; }
1004
+
public string Schema { get; set; }
1005
+
public string Title { get; set; }
1006
+
public string Type { get; set; }
1007
+
public string[] TypeArray { get; set; }
1008
+
public bool UnEvaluatedProperties { get; set; }
1009
+
public bool UnevaluatedProperties { get; set; }
1010
+
public bool? UniqueItems { get; set; }
1011
+
public bool UnresolvedReference { get; set; }
1012
+
public decimal V31ExclusiveMaximum { get; set; }
1013
+
public decimal V31ExclusiveMinimum { get; set; }
1014
+
public string Vocabulary { get; set; }
1015
+
public bool WriteOnly { get; set; }
1016
+
public Microsoft.OpenApi.Models.OpenApiXml Xml { get; set; }
1017
+
public void SerializeAsV2(Microsoft.OpenApi.Writers.IOpenApiWriter writer) { }
1018
+
public void SerializeAsV2WithoutReference(Microsoft.OpenApi.Writers.IOpenApiWriter writer) { }
1019
+
public virtual void SerializeAsV3(Microsoft.OpenApi.Writers.IOpenApiWriter writer) { }
1020
+
public virtual void SerializeAsV31(Microsoft.OpenApi.Writers.IOpenApiWriter writer) { }
1021
+
public virtual void SerializeAsV31WithoutReference(Microsoft.OpenApi.Writers.IOpenApiWriter writer) { }
1022
+
public virtual void SerializeAsV3WithoutReference(Microsoft.OpenApi.Writers.IOpenApiWriter writer) { }
public class OpenApiSecurityRequirement : System.Collections.Generic.Dictionary<Microsoft.OpenApi.Models.OpenApiSecurityScheme, System.Collections.Generic.IList<string>>, Microsoft.OpenApi.Interfaces.IOpenApiElement, Microsoft.OpenApi.Interfaces.IOpenApiSerializable
0 commit comments