action dataatwork_get_jobs_id { label: "Job Title and Description" description: "Retrieves the name, description, and UUID of a job by specifying its O*NET SOC Code or UUID." provider: dataatwork method: GET path: "/jobs/{id}" encoding: json input: { type: "object" properties: { fips: { type: "string" } id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }