From f59fddef67673e7f25f681e6f85727ed1705155f Mon Sep 17 00:00:00 2001 From: Jesse Turner Date: Mon, 30 Mar 2026 16:24:02 -0400 Subject: [PATCH] fix(schema): add executionRoleArn to JSON schema The executionRoleArn field was added to the Zod schema in #729 but the JSON schema was not updated to match. Co-Authored-By: Claude Opus 4.6 --- schemas/agentcore.schema.v1.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/schemas/agentcore.schema.v1.json b/schemas/agentcore.schema.v1.json index 9da99933..04546e39 100644 --- a/schemas/agentcore.schema.v1.json +++ b/schemas/agentcore.schema.v1.json @@ -141,6 +141,10 @@ "type": "string" } }, + "executionRoleArn": { + "description": "ARN of an existing IAM execution role to use instead of creating a new one.", + "type": "string" + }, "authorizerType": { "type": "string", "enum": ["AWS_IAM", "CUSTOM_JWT"]