{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ModifyDependentsRequest", "title": "ModifyDependentsRequest", "description": "A set of dependent tasks.", "type": "object", "properties": { "dependents": { "description": "An array of task gids that are dependents of the given task.", "type": "array", "items": { "type": "string" } } }, "example": { "dependents": [ "133713", "184253" ] } }