From b8f4fabcc9dbe87701a50f50d86fa6a4a2fa3e5e Mon Sep 17 00:00:00 2001 From: Mark Dennis Date: Wed, 25 Feb 2026 11:22:15 +0000 Subject: [PATCH] fix: Restore article tags property to article_list_item schema for v2.14+ The tags property was present in v2.13 but accidentally omitted from the article_list_item schema in v2.14, v2.15, and Unstable specs. The API continues to return tags in these versions, so this restores the schema to match runtime behavior. Fixes #469453 Co-Authored-By: Claude Opus 4.6 --- descriptions/0/api.intercom.io.yaml | 2 ++ descriptions/2.14/api.intercom.io.yaml | 2 ++ descriptions/2.15/api.intercom.io.yaml | 2 ++ 3 files changed, 6 insertions(+) diff --git a/descriptions/0/api.intercom.io.yaml b/descriptions/0/api.intercom.io.yaml index 41c4bf0..bb6c020 100644 --- a/descriptions/0/api.intercom.io.yaml +++ b/descriptions/0/api.intercom.io.yaml @@ -16319,6 +16319,8 @@ components: translated_content: nullable: true "$ref": "#/components/schemas/article_translated_content" + tags: + "$ref": "#/components/schemas/tags" internal_article_list_item: title: Internal Articles type: object diff --git a/descriptions/2.14/api.intercom.io.yaml b/descriptions/2.14/api.intercom.io.yaml index 92ad609..b155a97 100644 --- a/descriptions/2.14/api.intercom.io.yaml +++ b/descriptions/2.14/api.intercom.io.yaml @@ -15053,6 +15053,8 @@ components: translated_content: nullable: true "$ref": "#/components/schemas/article_translated_content" + tags: + "$ref": "#/components/schemas/tags" internal_article_list_item: title: Internal Articles type: object diff --git a/descriptions/2.15/api.intercom.io.yaml b/descriptions/2.15/api.intercom.io.yaml index fb2ae82..909f18a 100644 --- a/descriptions/2.15/api.intercom.io.yaml +++ b/descriptions/2.15/api.intercom.io.yaml @@ -15625,6 +15625,8 @@ components: translated_content: nullable: true "$ref": "#/components/schemas/article_translated_content" + tags: + "$ref": "#/components/schemas/tags" internal_article_list_item: title: Internal Articles type: object