5 references to NullableKeyword
Microsoft.AspNetCore.OpenApi (5)
Extensions\JsonNodeSchemaExtensions.cs (4)
176schema[OpenApiSchemaKeywords.NullableKeyword] = openApiSchema.Nullable || (schema[OpenApiSchemaKeywords.TypeKeyword] is JsonArray schemaType && schemaType.GetValues<string>().Contains("null")); 180schema[OpenApiSchemaKeywords.NullableKeyword] = underlyingType != null; 379schema[OpenApiSchemaKeywords.NullableKeyword] = true; 394schema[OpenApiSchemaKeywords.NullableKeyword] = true;
Schemas\OpenApiJsonSchema.Helpers.cs (1)
225case OpenApiSchemaKeywords.NullableKeyword: