Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 29 additions & 7 deletions api-reference/openapi/releases.json
Original file line number Diff line number Diff line change
Expand Up @@ -1714,6 +1714,11 @@
"Artist": {
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid",
"description": "UUID of the artist account. Equal to account_id; use this (or account_id) for /api/artists/{id}/* sub-resources."
},
"account_id": {
"type": "string",
"format": "uuid",
Expand All @@ -1728,16 +1733,38 @@
"nullable": true,
"description": "Artist profile image URL"
},
"instruction": {
"type": "string",
"nullable": true,
"description": "Artist-specific agent instruction / system prompt"
},
"knowledges": {
"type": "array",
"description": "Artist knowledge-base entries",
"items": {
"type": "object",
"properties": {
"name": { "type": "string" },
"url": { "type": "string" },
"type": { "type": "string" }
}
}
},
"label": {
"type": "string",
"nullable": true,
"description": "Artist label / category"
},
"pinned": {
"type": "boolean",
"description": "Whether the account has pinned this artist"
},
"socials": {
"account_socials": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ArtistSocial"
},
"description": "Social media profiles linked to the artist"
"description": "Social media profiles linked to the artist (embedded in the /api/artists response)"
}
}
},
Expand Down Expand Up @@ -2880,11 +2907,6 @@
"SocialProfile": {
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid",
"description": "UUID of the artist's account_socials record"
},
"social_id": {
"type": "string",
"format": "uuid",
Expand Down