Leapsome · Schema
Timesheet
People EnablementPerformance ManagementOKRsGoalsEngagement SurveysHRISSCIMEmployee Development1:1 MeetingsLearning
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Timesheet ID |
| user | object | |
| status | string | Current status of the timesheet |
| startDate | string | Start date of the timesheet period |
| endDate | string | End date of the timesheet period |
| hoursWorked | string | Total hours worked in the period (duration in ISO 8601 format) |
| compensableHours | string | Total compensable hours in the period (duration in ISO 8601 format) |
| overtimeHours | string | Total overtime hours in the period (duration in ISO 8601 format) |
| workDuration | string | Total work duration in the period (duration in ISO 8601 format) |
| projects | array | Projects the employee worked on in the timesheet period |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Timesheet",
"type": "object",
"properties": {
"id": {
"type": "string",
"pattern": "^[0-9a-f]{24}$",
"example": "58d55e3ffdc2eb20547edd0a",
"description": "Timesheet ID"
},
"user": {
"type": "object",
"properties": {
"id": {
"type": "string",
"pattern": "^[0-9a-f]{24}$",
"example": "58d55e3ffdc2eb20547edd0a"
},
"name": {
"type": "string"
},
"email": {
"type": "string",
"format": "email",
"example": "jane.doe@example.com",
"description": "Employee email address"
}
}
},
"status": {
"type": "string",
"enum": [
"open",
"pendingApproval",
"closed"
],
"example": "open",
"description": "Current status of the timesheet"
},
"startDate": {
"type": "string",
"format": "date-time",
"description": "Start date of the timesheet period"
},
"endDate": {
"type": "string",
"format": "date-time",
"description": "End date of the timesheet period"
},
"hoursWorked": {
"type": "string",
"example": "PT10H",
"description": "Total hours worked in the period (duration in ISO 8601 format)"
},
"compensableHours": {
"type": "string",
"example": "PT10H",
"description": "Total compensable hours in the period (duration in ISO 8601 format)"
},
"overtimeHours": {
"type": "string",
"example": "PT10H",
"description": "Total overtime hours in the period (duration in ISO 8601 format)"
},
"workDuration": {
"type": "string",
"example": "PT10H",
"description": "Total work duration in the period (duration in ISO 8601 format)"
},
"projects": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"pattern": "^[0-9a-f]{24}$"
},
"title": {
"type": "string"
}
}
},
"description": "Projects the employee worked on in the timesheet period"
}
}
}
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
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/leapsome-timesheet"
All schemas
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.