5 references to ItemsPropertyName
Microsoft.Extensions.AI.Abstractions (5)
Utilities\AIJsonUtilities.Schema.Create.cs (2)
294if (ctx.TypeInfo.Kind is JsonTypeInfoKind.Enumerable && !objSchema.ContainsKey(ItemsPropertyName)) 296objSchema.Add(ItemsPropertyName, new JsonObject());
Utilities\AIJsonUtilities.Schema.Transform.cs (3)
82if (schemaObj.TryGetPropertyValue(ItemsPropertyName, out JsonNode? itemsSchema)) 84path?.Add(ItemsPropertyName); 85schemaObj[ItemsPropertyName] = TransformSchemaCore(itemsSchema, transformOptions, path);