6 references to ToJsonNode
Microsoft.Extensions.AI.Abstractions (6)
src\Shared\JsonSchemaExporter\JsonSchemaExporter.cs (1)
84return schema.ToJsonNode(exporterOptions);
src\Shared\JsonSchemaExporter\JsonSchemaExporter.JsonSchema.cs (5)
346properties.Add(property.Key, property.Value.ToJsonNode(options)); 365objSchema.Add(JsonSchemaConstants.ItemsPropertyName, Items.ToJsonNode(options)); 370objSchema.Add(JsonSchemaConstants.AdditionalPropertiesPropertyName, AdditionalProperties.ToJsonNode(options)); 380objSchema.Add(JsonSchemaConstants.NotPropertyName, Not.ToJsonNode(options)); 388anyOfArray.Add(schema.ToJsonNode(options));