Custom field definition MCP response
MCP tool response payload returned when agents retrieve or manage GovTribe workspace custom field definitions for pursuits.
- Data type: Custom field definition data type
- Returned by: Search custom field definitions MCP tool; Create custom field definition MCP tool; Update custom field definition MCP tool
Fields
| Field | Type | Attribute |
|---|---|---|
govtribe_id | string | GovTribe ID attribute |
govtribe_type | string | GovTribe type attribute |
name | string | Name attribute |
field_type | string | Field type attribute |
placeholder_text | string | Placeholder text attribute |
required | boolean | Required attribute |
fielded_model | string | Fielded model attribute |
created_at | string | Created at attribute |
updated_at | string | Updated at attribute |
creator | relationship object | Creator attribute |
Relationship Returns
| Field | Returns |
|---|---|
creator | User MCP response |
Example
{
"created_at": "2026-09-02T14:00:00Z",
"creator": {
"govtribe_id": "USER_ID",
"govtribe_type": "user",
"name": "Creator"
},
"field_type": "dollar",
"fielded_model": "PursuitModel",
"govtribe_id": "CUSTOM_FIELD_DEFINITION_ID",
"govtribe_type": "custom_field_definition",
"name": "Contract Ceiling",
"placeholder_text": "Enter the ceiling value",
"required": false,
"updated_at": "2026-09-02T14:00:00Z"
}