action opensuse_post_worker_cmd_checkconstraints { label: "Lists workers which match a constraints filter." description: "Given a project, package, repository and architecture, list workers which can build with that restrictions, and also match a constraints filter.\n\nThis endpoint doesn't create or modify any data.\n\nMore information about constraints can be found in the\n[user guide](https://openbuildservice.org/help/manuals/obs-user-guide/cha.obs.build_job_constraints.html).\n\nThis operation is the same as `POST /worker/command/run?cmd=checkconstraints`.\n" provider: opensuse method: POST path: "/worker?cmd=checkconstraints" encoding: json input: { type: "object" properties: { arch: { type: "string" } package: { type: "string" } project: { type: "string" } repository: { type: "string" } } required: ["arch", "package", "project", "repository"] additionalProperties: false } output: { type: "object" additionalProperties: true } }