File size: 793 Bytes
cf3884b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | {
"name": "list_deployments",
"description": "List all deployments for a project",
"inputSchema": {
"type": "object",
"properties": {
"projectId": {
"type": "string",
"description": "The project ID to list deployments for."
},
"teamId": {
"type": "string",
"description": "The team ID to list deployments for."
},
"since": {
"type": "number",
"description": "Get deployments created after this timestamp."
},
"until": {
"type": "number",
"description": "Get deployments created before this timestamp."
}
},
"required": [
"projectId",
"teamId"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
}
} |