Response listing deployments.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/DeploymentListResponse", "title": "DeploymentListResponse", "type": "object", "description": "Response listing deployments.", "properties": { "object": { "type": "string", "enum": [ "list" ], "example": "list" }, "data": { "type": "array", "items": { "$ref": "#/components/schemas/Deployment" }, "example": [] } }, "required": [ "object", "data" ] }