7 references to Schema
Microsoft.AspNetCore.OpenApi (7)
Schemas\OpenApiJsonSchema.cs (1)
49/// <see cref="Schema"/>.
Schemas\OpenApiJsonSchema.Helpers.cs (5)
234schema.Items = valueConverter.Read(ref reader, typeof(OpenApiJsonSchema), options)?.Schema; 296schema.Properties = props?.ToDictionary(p => p.Key, p => p.Value.Schema as IOpenApiSchema); 306schema.AdditionalProperties = additionalPropsConverter.Read(ref reader, typeof(OpenApiJsonSchema), options)?.Schema; 312schema.AnyOf = anyOfSchemas?.Select(s => s.Schema as IOpenApiSchema).ToList(); 318schema.OneOf = oneOfSchemas?.Select(s => s.Schema as IOpenApiSchema).ToList();
Services\Schemas\OpenApiSchemaService.cs (1)
245var schema = deserializedSchema.Schema;