Clockodo Time Entry
Schema for a Clockodo time-tracking entry. An entry records time spent by a user on a customer/project/service combination, optionally with billable status, hourly rate, and free-text description. Entries underpin reporting, invoicing, and project-budget tracking in Clockodo.
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | Unique identifier of the entry. |
| users_id | integer | ID of the user who recorded the entry. |
| customers_id | integer | ID of the customer associated with the entry. |
| projects_id | integernull | ID of the project the entry is booked against. |
| services_id | integer | ID of the service performed. |
| time_since | string | Start time of the entry. |
| time_until | stringnull | End time of the entry. Null when the entry is still being timed by the stop-clock. |
| duration | integernull | Duration of the entry in seconds. |
| billable | integer | 0 = not billable, 1 = billable, 2 = already billed. |
| hourly_rate | numbernull | Effective hourly rate (in account currency). |
| text | stringnull | Free-text description of the work performed. |
| lumpsum | numbernull | Lump-sum amount when the entry is billed as a flat fee instead of by time. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://my.clockodo.com/schemas/entry.json",
"title": "Clockodo Time Entry",
"description": "Schema for a Clockodo time-tracking entry. An entry records time spent by a user on a customer/project/service combination, optionally with billable status, hourly rate, and free-text description. Entries underpin reporting, invoicing, and project-budget tracking in Clockodo.",
"type": "object",
"required": ["customers_id", "services_id", "users_id"],
"properties": {
"id": {
"type": "integer",
"description": "Unique identifier of the entry."
},
"users_id": {
"type": "integer",
"description": "ID of the user who recorded the entry."
},
"customers_id": {
"type": "integer",
"description": "ID of the customer associated with the entry."
},
"projects_id": {
"type": ["integer", "null"],
"description": "ID of the project the entry is booked against."
},
"services_id": {
"type": "integer",
"description": "ID of the service performed."
},
"time_since": {
"type": "string",
"format": "date-time",
"description": "Start time of the entry."
},
"time_until": {
"type": ["string", "null"],
"format": "date-time",
"description": "End time of the entry. Null when the entry is still being timed by the stop-clock."
},
"duration": {
"type": ["integer", "null"],
"description": "Duration of the entry in seconds."
},
"billable": {
"type": "integer",
"description": "0 = not billable, 1 = billable, 2 = already billed.",
"enum": [0, 1, 2]
},
"hourly_rate": {
"type": ["number", "null"],
"description": "Effective hourly rate (in account currency)."
},
"text": {
"type": ["string", "null"],
"description": "Free-text description of the work performed."
},
"lumpsum": {
"type": ["number", "null"],
"description": "Lump-sum amount when the entry is billed as a flat fee instead of by time."
}
},
"additionalProperties": true
}
Work with this as data
Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for schemas
4 MCP tools reach this
find_json_schemasBrowse and filter every JSON Schema in the catalog.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
curl "https://apis.io/api/v1/json-schemas/clockodo-entry"
curl "https://apis.io/api/v1/json-schemas?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.