action dataatwork_get_skills_id { label: "Skill Name and Description" description: "Retrieves the name, description, and UUID of a job by specifying its UUID." provider: dataatwork method: GET path: "/skills/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }