You are given a list of tasks where each task is represented as an object with the following properties:
Write a function in the programming language of your choice that takes this list of tasks and returns a valid ordering (schedule) of task ids such that:
If it is not possible to generate a valid ordering due to a cycle in the prerequisites, your function should report this by either raising an error or returning an appropriate indicator of the failure.
Assume that the input is provided as an array (or list) of task objects. Ensure that your solution is efficient and well-documented.