Home / Class/ VersionListResponse Class — anthropic-sdk-python Architecture

VersionListResponse Class — anthropic-sdk-python Architecture

Architecture documentation for the VersionListResponse class in version_list_response.py from the anthropic-sdk-python codebase.

Entity Profile

Dependency Diagram

graph TD
  0a2288b6_b258_3977_905a_d8e2f6ce171d["VersionListResponse"]
  17ce5647_6f06_0676_a4a5_e378a3f57cb1["BaseModel"]
  0a2288b6_b258_3977_905a_d8e2f6ce171d -->|extends| 17ce5647_6f06_0676_a4a5_e378a3f57cb1
  6f7bed36_803f_360b_afe9_3495b333f04c["version_list_response.py"]
  0a2288b6_b258_3977_905a_d8e2f6ce171d -->|defined in| 6f7bed36_803f_360b_afe9_3495b333f04c

Relationship Graph

Source Code

src/anthropic/types/beta/skills/version_list_response.py lines 8–49

class VersionListResponse(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").
    """

Extends

Frequently Asked Questions

What is the VersionListResponse class?
VersionListResponse is a class in the anthropic-sdk-python codebase, defined in src/anthropic/types/beta/skills/version_list_response.py.
Where is VersionListResponse defined?
VersionListResponse is defined in src/anthropic/types/beta/skills/version_list_response.py at line 8.
What does VersionListResponse extend?
VersionListResponse extends BaseModel.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free