VersionCreateResponse Class — anthropic-sdk-python Architecture
Architecture documentation for the VersionCreateResponse class in version_create_response.py from the anthropic-sdk-python codebase.
Entity Profile
Dependency Diagram
graph TD f908ff67_bd4c_08a3_ee5a_ee64b11668d9["VersionCreateResponse"] 17ce5647_6f06_0676_a4a5_e378a3f57cb1["BaseModel"] f908ff67_bd4c_08a3_ee5a_ee64b11668d9 -->|extends| 17ce5647_6f06_0676_a4a5_e378a3f57cb1 1d17d18b_088c_c047_776c_b4ca029bad8c["version_create_response.py"] f908ff67_bd4c_08a3_ee5a_ee64b11668d9 -->|defined in| 1d17d18b_088c_c047_776c_b4ca029bad8c
Relationship Graph
Source Code
src/anthropic/types/beta/skills/version_create_response.py lines 8–49
class VersionCreateResponse(BaseModel):
id: str
"""Unique identifier for the skill version.
The format and length of IDs may change over time.
"""
created_at: str
"""ISO 8601 timestamp of when the skill version was created."""
description: str
"""Description of the skill version.
This is extracted from the SKILL.md file in the skill upload.
"""
directory: str
"""Directory name of the skill version.
This is the top-level directory name that was extracted from the uploaded files.
"""
name: str
"""Human-readable name of the skill version.
This is extracted from the SKILL.md file in the skill upload.
"""
skill_id: str
"""Identifier for the skill that this version belongs to."""
type: str
"""Object type.
For Skill Versions, this is always `"skill_version"`.
"""
version: str
"""Version identifier for the skill.
Each version is identified by a Unix epoch timestamp (e.g., "1759178010641129").
"""
Domain
Extends
Source
Frequently Asked Questions
What is the VersionCreateResponse class?
VersionCreateResponse is a class in the anthropic-sdk-python codebase, defined in src/anthropic/types/beta/skills/version_create_response.py.
Where is VersionCreateResponse defined?
VersionCreateResponse is defined in src/anthropic/types/beta/skills/version_create_response.py at line 8.
What does VersionCreateResponse extend?
VersionCreateResponse extends BaseModel.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free