get_deployment_schedule
Retrieve schedule details for a Prefect deployment by providing its UUID to manage workflow automation timing and execution patterns.
Instructions
Get a deployment's schedule.
Args: deployment_id: The deployment UUID
Returns: Schedule details
Input Schema
Name | Required | Description | Default |
---|---|---|---|
deployment_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"deployment_id": {
"title": "Deployment Id",
"type": "string"
}
},
"required": [
"deployment_id"
],
"type": "object"
}