The whole hunk
from line 14, old and new numbered
/
lines
from line 14
1414
1515- `version: string`
1616
17 Version identifier for the skill.
17 Identifies the skill version by its version ID.
1818
19 Each version is identified by a Unix epoch timestamp (e.g., "1759178010641129").
19 Requests carrying the `skills-2025-10-02` beta header address versions by their Unix epoch timestamp instead (e.g., "1759178010641129").
2020
2121## Headers
2222
from line 112
112112
113113## Returns
114114
115- `id: string`
115- `BetaDeletedSkillVersion object`
116116
117 Version identifier for the skill.
117 - `id: string`
118118
119 Each version is identified by a Unix epoch timestamp (e.g., "1759178010641129").
119 Unique identifier for this Skill Version. The id addresses the version in
120 paths and pins it in references.
120121
121- `type: string`
122 - `type: "skill_version_deleted"`
122123
123 Deleted object type.
124 Deleted object type.
124125
125 For Skill Versions, this is always `"skill_version_deleted"`.
126 For Skill Versions, this is always `"skill_version_deleted"`.
126127
127 default: skill_version_deleted
128 default: skill_version_deleted
128129
129130## Example
130131
from line 133
132133curl https://api.anthropic.com/v1/skills/$SKILL_ID/versions/$VERSION \
133134 -X DELETE \
134135 -H 'anthropic-version: 2023-06-01' \
135 -H 'anthropic-beta: skills-2025-10-02' \
136136 -H "X-Api-Key: $ANTHROPIC_API_KEY"
137137```
138138
from line 140
140140
141141```json
142142{
143 "id": "1759178010641129",
144 "type": "type"
143 "id": "id",
144 "type": "skill_version_deleted"
145145}
146146```
147147