Tool details
| Field | Value |
|---|---|
| Name | veryfront__set_agent_push_runtime_service_availability |
| Group | Agents |
Playground
Input schema
input-schema.json
{
"type": "object",
"properties": {
"project_reference": {
"type": "string",
"minLength": 1,
"description": "Project identifier or slug that scopes the tool call."
},
"service_id": {
"type": "string",
"format": "uuid",
"description": "Provide the service id."
},
"availability": {
"type": "string",
"enum": [
"drained",
"active"
],
"description": "Provide the availability."
}
},
"required": [
"service_id",
"availability"
],
"additionalProperties": false,
"description": "Input schema for the set_agent_push_runtime_service_availability tool.",
"$schema": "http://json-schema.org/draft-07/schema#"
}
Output schema
output-schema.json
{
"type": "object",
"properties": {
"service_id": {
"type": "string",
"format": "uuid",
"description": "The service id associated with this tool result."
},
"project_id": {
"type": "string",
"format": "uuid",
"description": "Project identifier associated with this result."
},
"agent_id": {
"type": [
"string",
"null"
],
"description": "The agent id associated with this tool result."
},
"availability": {
"type": "string",
"enum": [
"drained",
"active"
],
"description": "The availability associated with this tool result."
},
"connection_status": {
"type": "string",
"enum": [
"online",
"offline",
"disabled"
],
"description": "The connection status associated with this tool result."
},
"updated_at": {
"type": "string",
"description": "Last update timestamp in ISO 8601 format."
}
},
"required": [
"service_id",
"project_id",
"agent_id",
"availability",
"connection_status",
"updated_at"
],
"additionalProperties": false,
"description": "Structured result returned by the set_agent_push_runtime_service_availability tool.",
"$schema": "http://json-schema.org/draft-07/schema#"
}