action dataatwork_get_skills_autocomplete { label: "Skill Name Autocomplete" description: "Retrieves the names, descriptions, and UUIDs of all skills matching a given search criteria." provider: dataatwork method: GET path: "/skills/autocomplete" encoding: json input: { type: "object" properties: { begins_with: { type: "string" } contains: { type: "string" } ends_with: { type: "string" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }