action vocadb_get_api_songs_lyrics_lyrics_id { label: "get_api_songs_lyrics_lyricsId" provider: vocadb method: GET path: "/api/songs/lyrics/{lyricsId}" encoding: json input: { type: "object" properties: { lyricsId: { type: "integer" format: "int32" } } required: ["lyricsId"] additionalProperties: false } output: { type: "object" properties: { cultureCode: { type: "string" } id: { type: "integer" format: "int32" } source: { type: "string" } translationType: { type: "string" enum: ["Original", "Romanized", "Translation"] } url: { type: "string" } value: { type: "string" } } additionalProperties: false } }