action vocadb_post_api_songs_id_ratings { label: "post_api_songs_id_ratings" provider: vocadb method: POST path: "/api/songs/{id}/ratings" encoding: json input: { type: "object" properties: { id: { type: "integer" format: "int32" } rating: { type: "string" enum: ["Nothing", "Dislike", "Like", "Favorite"] } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }