@@ -15,52 +15,31 @@ namespace Microsoft.OpenApi.Models
15
15
/// <summary>
16
16
/// Request Body Object
17
17
/// </summary>
18
- public class OpenApiRequestBody : IOpenApiReferenceable , IOpenApiExtensible
18
+ public class OpenApiRequestBody : IOpenApiReferenceable , IOpenApiExtensible , IOpenApiRequestBody
19
19
{
20
- /// <summary>
21
- /// Indicates if object is populated with data or is just a reference to the data
22
- /// </summary>
23
- public bool UnresolvedReference { get ; set ; }
24
-
25
- /// <summary>
26
- /// Reference object.
27
- /// </summary>
28
- public OpenApiReference Reference { get ; set ; }
29
-
30
- /// <summary>
31
- /// A brief description of the request body. This could contain examples of use.
32
- /// CommonMark syntax MAY be used for rich text representation.
33
- /// </summary>
34
- public virtual string Description { get ; set ; }
20
+ /// <inheritdoc />
21
+ public string Description { get ; set ; }
35
22
36
- /// <summary>
37
- /// Determines if the request body is required in the request. Defaults to false.
38
- /// </summary>
39
- public virtual bool Required { get ; set ; }
23
+ /// <inheritdoc />
24
+ public bool Required { get ; set ; }
40
25
41
- /// <summary>
42
- /// REQUIRED. The content of the request body. The key is a media type or media type range and the value describes it.
43
- /// For requests that match multiple keys, only the most specific key is applicable. e.g. text/plain overrides text/*
44
- /// </summary>
45
- public virtual IDictionary < string , OpenApiMediaType > Content { get ; set ; } = new Dictionary < string , OpenApiMediaType > ( ) ;
26
+ /// <inheritdoc />
27
+ public IDictionary < string , OpenApiMediaType > Content { get ; set ; } = new Dictionary < string , OpenApiMediaType > ( ) ;
46
28
47
- /// <summary>
48
- /// This object MAY be extended with Specification Extensions.
49
- /// </summary>
50
- public virtual IDictionary < string , IOpenApiExtension > Extensions { get ; set ; } = new Dictionary < string , IOpenApiExtension > ( ) ;
29
+ /// <inheritdoc />
30
+ public IDictionary < string , IOpenApiExtension > Extensions { get ; set ; } = new Dictionary < string , IOpenApiExtension > ( ) ;
51
31
52
32
/// <summary>
53
33
/// Parameter-less constructor
54
34
/// </summary>
55
35
public OpenApiRequestBody ( ) { }
56
36
57
37
/// <summary>
58
- /// Initializes a copy instance of an <see cref="OpenApiRequestBody "/> object
38
+ /// Initializes a copy instance of an <see cref="IOpenApiRequestBody "/> object
59
39
/// </summary>
60
- public OpenApiRequestBody ( OpenApiRequestBody requestBody )
40
+ public OpenApiRequestBody ( IOpenApiRequestBody requestBody )
61
41
{
62
- UnresolvedReference = requestBody ? . UnresolvedReference ?? UnresolvedReference ;
63
- Reference = requestBody ? . Reference != null ? new ( requestBody ? . Reference ) : null ;
42
+ Utils . CheckArgumentNull ( requestBody ) ;
64
43
Description = requestBody ? . Description ?? Description ;
65
44
Required = requestBody ? . Required ?? Required ;
66
45
Content = requestBody ? . Content != null ? new Dictionary < string , OpenApiMediaType > ( requestBody . Content ) : null ;
@@ -70,20 +49,20 @@ public OpenApiRequestBody(OpenApiRequestBody requestBody)
70
49
/// <summary>
71
50
/// Serialize <see cref="OpenApiRequestBody"/> to Open Api v3.1
72
51
/// </summary>
73
- public virtual void SerializeAsV31 ( IOpenApiWriter writer )
52
+ public void SerializeAsV31 ( IOpenApiWriter writer )
74
53
{
75
54
SerializeInternal ( writer , OpenApiSpecVersion . OpenApi3_1 , ( writer , element ) => element . SerializeAsV31 ( writer ) ) ;
76
55
}
77
56
78
57
/// <summary>
79
58
/// Serialize <see cref="OpenApiRequestBody"/> to Open Api v3.0
80
59
/// </summary>
81
- public virtual void SerializeAsV3 ( IOpenApiWriter writer )
60
+ public void SerializeAsV3 ( IOpenApiWriter writer )
82
61
{
83
62
SerializeInternal ( writer , OpenApiSpecVersion . OpenApi3_0 , ( writer , element ) => element . SerializeAsV3 ( writer ) ) ;
84
63
}
85
64
86
- internal virtual void SerializeInternal ( IOpenApiWriter writer , OpenApiSpecVersion version ,
65
+ internal void SerializeInternal ( IOpenApiWriter writer , OpenApiSpecVersion version ,
87
66
Action < IOpenApiWriter , IOpenApiSerializable > callback )
88
67
{
89
68
Utils . CheckArgumentNull ( writer ) ;
@@ -113,7 +92,8 @@ public void SerializeAsV2(IOpenApiWriter writer)
113
92
// RequestBody object does not exist in V2.
114
93
}
115
94
116
- internal virtual IOpenApiParameter ConvertToBodyParameter ( IOpenApiWriter writer )
95
+ /// <inheritdoc/>
96
+ public IOpenApiParameter ConvertToBodyParameter ( IOpenApiWriter writer )
117
97
{
118
98
var bodyParameter = new OpenApiBodyParameter
119
99
{
@@ -135,22 +115,23 @@ internal virtual IOpenApiParameter ConvertToBodyParameter(IOpenApiWriter writer)
135
115
return bodyParameter ;
136
116
}
137
117
138
- internal IEnumerable < OpenApiFormDataParameter > ConvertToFormDataParameters ( )
118
+ /// <inheritdoc/>
119
+ public IEnumerable < IOpenApiParameter > ConvertToFormDataParameters ( IOpenApiWriter writer )
139
120
{
140
121
if ( Content == null || ! Content . Any ( ) )
141
122
yield break ;
142
123
143
124
foreach ( var property in Content . First ( ) . Value . Schema . Properties )
144
125
{
145
126
var paramSchema = property . Value ;
146
- if ( "string" . Equals ( paramSchema . Type . ToIdentifier ( ) , StringComparison . OrdinalIgnoreCase )
127
+ if ( ( paramSchema . Type & JsonSchemaType . String ) == JsonSchemaType . String
147
128
&& ( "binary" . Equals ( paramSchema . Format , StringComparison . OrdinalIgnoreCase )
148
129
|| "base64" . Equals ( paramSchema . Format , StringComparison . OrdinalIgnoreCase ) ) )
149
130
{
150
131
paramSchema . Type = "file" . ToJsonSchemaType ( ) ;
151
132
paramSchema . Format = null ;
152
133
}
153
- yield return new ( )
134
+ yield return new OpenApiFormDataParameter ( )
154
135
{
155
136
Description = property . Value . Description ,
156
137
Name = property . Key ,
0 commit comments