fix: Restore article tags to article_list_item for v2.14+#382
Merged
markdennis22 merged 1 commit intomainfrom Feb 25, 2026
Merged
fix: Restore article tags to article_list_item for v2.14+#382markdennis22 merged 1 commit intomainfrom
markdennis22 merged 1 commit intomainfrom
Conversation
….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 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Why?
A customer reported that article
tagswere documented in API v2.13 but dropped in v2.14+. The API still returns tags for these versions (confirmed via runtime trace ofArticleResponse), so the OpenAPI schema is out of sync with runtime behavior.How?
Adds the
tagsproperty (via existing$ref) back to thearticle_list_itemschema in v2.14, v2.15, and Unstable specs.Implementation Plan
Fix: Restore article tags to API docs v2.14+ (Issue #469453)
Context
A customer reported that article
tagswere documented in API v2.13 but dropped in v2.14. The API still returns tags for v2.14+ (confirmed via runtime trace ofArticleResponseand the versioning transformation system). The OpenAPI schema omitted thetagsproperty fromarticle_list_itemin v2.14, v2.15, and Unstable.Current status
tags: { $ref: "#/components/schemas/tags" }toarticle_list_itemWhere to verify tags after deployment
Tags are on the response schema (
article_list_item), NOT the request body. Check:/articles) → 200 response →data[].tagsarticle_list_item→tagsproperty/articles)Fixes https://github.com/intercom/intercom/issues/469453
Generated with Claude Code