6 references to NullableKeyword
Microsoft.AspNetCore.OpenApi (6)
Extensions\JsonNodeSchemaExtensions.cs (5)
194schema[OpenApiSchemaKeywords.NullableKeyword] = openApiSchema.Nullable || (schema[OpenApiSchemaKeywords.TypeKeyword] is JsonArray schemaType && schemaType.GetValues<string>().Contains("null")); 198schema[OpenApiSchemaKeywords.NullableKeyword] = underlyingType != null; 339schema[OpenApiSchemaKeywords.NullableKeyword] = false; 440schema[OpenApiSchemaKeywords.NullableKeyword] = true; 455schema[OpenApiSchemaKeywords.NullableKeyword] = true;
Schemas\OpenApiJsonSchema.Helpers.cs (1)
223case OpenApiSchemaKeywords.NullableKeyword: