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