25 references to JsonSchemaConstants
Microsoft.Extensions.AI.Abstractions (25)
src\Shared\JsonSchemaExporter\JsonSchemaExporter.cs (6)
144state.PushSchemaNode(JsonSchemaConstants.AnyOfPropertyName); 264state.PushSchemaNode(JsonSchemaConstants.PropertiesPropertyName); 351state.PushSchemaNode(JsonSchemaConstants.ItemsPropertyName); 369state.PushSchemaNode(JsonSchemaConstants.PropertiesPropertyName); 371state.PushSchemaNode(JsonSchemaConstants.ItemsPropertyName); 413state.PushSchemaNode(JsonSchemaConstants.AdditionalPropertiesPropertyName);
src\Shared\JsonSchemaExporter\JsonSchemaExporter.JsonSchema.cs (19)
338objSchema.Add(JsonSchemaConstants.SchemaPropertyName, Schema); 343objSchema.Add(JsonSchemaConstants.TitlePropertyName, Title); 348objSchema.Add(JsonSchemaConstants.DescriptionPropertyName, Description); 353objSchema.Add(JsonSchemaConstants.RefPropertyName, Ref); 358objSchema.Add(JsonSchemaConstants.CommentPropertyName, Comment); 363objSchema.Add(JsonSchemaConstants.TypePropertyName, type); 368objSchema.Add(JsonSchemaConstants.FormatPropertyName, Format); 373objSchema.Add(JsonSchemaConstants.PatternPropertyName, Pattern); 378objSchema.Add(JsonSchemaConstants.ConstPropertyName, Constant); 389objSchema.Add(JsonSchemaConstants.PropertiesPropertyName, properties); 400objSchema.Add(JsonSchemaConstants.RequiredPropertyName, requiredArray); 405objSchema.Add(JsonSchemaConstants.ItemsPropertyName, Items.ToJsonNode(options)); 410objSchema.Add(JsonSchemaConstants.AdditionalPropertiesPropertyName, AdditionalProperties.ToJsonNode(options)); 415objSchema.Add(JsonSchemaConstants.EnumPropertyName, Enum); 420objSchema.Add(JsonSchemaConstants.NotPropertyName, Not.ToJsonNode(options)); 431objSchema.Add(JsonSchemaConstants.AnyOfPropertyName, anyOfArray); 436objSchema.Add(JsonSchemaConstants.DefaultPropertyName, DefaultValue); 441objSchema.Add(JsonSchemaConstants.MinLengthPropertyName, (JsonNode)minLength); 446objSchema.Add(JsonSchemaConstants.MaxLengthPropertyName, (JsonNode)maxLength);