action etmdb_job_search_read { label: "Return job details search result" description: "Return job details search result\n\n### Response Class (Status 200)\n\n* __{job_title}__: Used as a key word to search jobs,\n\nFor more details on how job are listed [see here][ref].\n[ref]: https://etmdb.com/en/job-list/-updated_date" provider: etmdb method: GET path: "/api/v1/job/search/{job_title}" encoding: json input: { type: "object" properties: { job_title: { type: "string" } } required: ["job_title"] additionalProperties: false } output: { type: "object" additionalProperties: true } }