action gitlab_get_v3_projects_id_issues_issue_id_notes_note_id_award_emoji_awa { label: "Get a specific award emoji" description: "This feature was introduced in 8.9" provider: gitlab method: GET path: "/v3/projects/{id}/issues/{issue_id}/notes/{note_id}/award_emoji/{award_id}" encoding: json input: { type: "object" properties: { award_id: { type: "string" } id: { type: "string" } issue_id: { type: "string" } note_id: { type: "string" } } required: ["award_id", "id", "issue_id", "note_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }