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

VersionRetrieveResponse Class — anthropic-sdk-python Architecture

Architecture documentation for the VersionRetrieveResponse class in version_retrieve_response.py from the anthropic-sdk-python codebase.

Entity Profile

Dependency Diagram

graph TD
  afe7703a_af1f_24a7_4585_11d4db26afdb["VersionRetrieveResponse"]
  17ce5647_6f06_0676_a4a5_e378a3f57cb1["BaseModel"]
  afe7703a_af1f_24a7_4585_11d4db26afdb -->|extends| 17ce5647_6f06_0676_a4a5_e378a3f57cb1
  a2e37711_06f5_d3a1_a3c4_d0511497095a["version_retrieve_response.py"]
  afe7703a_af1f_24a7_4585_11d4db26afdb -->|defined in| a2e37711_06f5_d3a1_a3c4_d0511497095a

Relationship Graph

Source Code

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

class VersionRetrieveResponse(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 VersionRetrieveResponse class?
VersionRetrieveResponse is a class in the anthropic-sdk-python codebase, defined in src/anthropic/types/beta/skills/version_retrieve_response.py.
Where is VersionRetrieveResponse defined?
VersionRetrieveResponse is defined in src/anthropic/types/beta/skills/version_retrieve_response.py at line 8.
What does VersionRetrieveResponse extend?
VersionRetrieveResponse extends BaseModel.

Analyze Your Own Codebase

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

Try Supermodel Free