From 4f5b8cb0d95079f63146d98462071196379fa4de Mon Sep 17 00:00:00 2001 From: Joris Goovaerts <1333336+CommCody@users.noreply.github.com> Date: Fri, 7 Nov 2025 16:27:11 +0100 Subject: [PATCH] Fixup EntityAssociation schemaconv.schema.json weaver check expects an EntityAssociation to be a string, but the schema says it should be an array. --- schemas/semconv.schema.json | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/schemas/semconv.schema.json b/schemas/semconv.schema.json index b2848fc1..c775ce7d 100644 --- a/schemas/semconv.schema.json +++ b/schemas/semconv.schema.json @@ -840,11 +840,8 @@ ] }, "EntityAssociation": { - "type": "array", - "items": { - "type": "string" - }, - "description": "list of entity associations." + "type": "string", + "description": "The name of the associated entity." } } } \ No newline at end of file