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