Add ISO 8601 date-time format to tool registry timestamp fields#318
Merged
Conversation
Timestamp fields in tool registry API responses now serialize as ISO 8601 strings rather than RFC 2822. Annotate created_at and updated_at with format: date-time in the list and get endpoints to reflect this and align with all other entity schemas in the spec. https://claude.ai/code/session_01MipGjubYjsLwydUSmQx82j
|
Preview deployment for your docs. Learn more about Mintlify Previews.
💡 Tip: Enable Workflows to automatically generate PRs for you. |
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.
Tool registry API responses now return timestamps as ISO 8601 strings (e.g.
2026-05-21T15:54:28.961051) following the migration of tool registry endpoints to Pydantic serialization.Changes
GET /api/public/v2/tool-registry: Added"format": "date-time"tocreated_atandupdated_atin the response schema for items in thetool_registriesarrayGET /api/public/v2/tool-registry/{identifier}: Addedcreated_atandupdated_atfields (with"format": "date-time") to thetool_registryresponse object, which were missing from the spec despite being returned by the APIThese changes align the tool registry schema with all other entity schemas in the spec (e.g.
Evaluation,Folder,SkillCollection) which already annotate timestamps withformat: date-time.https://claude.ai/code/session_01MipGjubYjsLwydUSmQx82j
Generated by Claude Code