Tool details
| Field | Value |
|---|---|
| Name | get_latest_release |
| Group | Releases |
Playground
Input schema
Input schema
{
"type": "object",
"properties": {
"project_reference": {
"type": "string",
"description": "Project ID or slug"
}
},
"required": [
"project_reference"
],
"additionalProperties": false,
"description": "Input schema for the get_latest_release tool.",
"$schema": "http://json-schema.org/draft-07/schema#"
}
Output schema
Output schema
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier for the returned record."
},
"name": {
"type": "string",
"description": "Human-readable name for the returned record."
},
"project_id": {
"type": "string",
"description": "Project identifier associated with this result."
},
"export_status": {
"type": "string",
"description": "The export status associated with this tool result."
},
"build_status": {
"type": "string",
"description": "The build status associated with this tool result."
},
"deploy_status": {
"type": "string",
"description": "The deploy status associated with this tool result."
},
"created_at": {
"type": "string",
"description": "Creation timestamp in ISO 8601 format."
},
"updated_at": {
"type": "string",
"description": "Last update timestamp in ISO 8601 format."
}
},
"required": [
"id",
"name",
"project_id",
"export_status",
"build_status",
"deploy_status",
"created_at",
"updated_at"
],
"additionalProperties": false,
"description": "Structured result returned by the get_latest_release tool.",
"$schema": "http://json-schema.org/draft-07/schema#"
}