5 references to Schema
Microsoft.AspNetCore.OpenApi (5)
Schemas\OpenApiJsonSchema.cs (1)
46/// <see cref="Schema"/>.
Schemas\OpenApiJsonSchema.Helpers.cs (4)
226schema.Items = valueConverter.Read(ref reader, typeof(OpenApiJsonSchema), options)?.Schema; 278schema.Properties = props?.ToDictionary(p => p.Key, p => p.Value.Schema as IOpenApiSchema); 288schema.AdditionalProperties = additionalPropsConverter.Read(ref reader, typeof(OpenApiJsonSchema), options)?.Schema; 294schema.AnyOf = schemas?.Select(s => s.Schema as IOpenApiSchema).ToList();