Agave · Schema

TimesheetList

Paginated list of timesheets.

AccountingConstructionIntegration

Properties

Name Type Description
data array
next_cursor string
count integer
View JSON Schema on GitHub

JSON Schema

unified-api-timesheet-list-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/agave/refs/heads/main/json-schema/unified-api-timesheet-list-schema.json",
  "title": "TimesheetList",
  "description": "Paginated list of timesheets.",
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Timesheet"
      },
      "example": [
        "example_value"
      ]
    },
    "next_cursor": {
      "type": "string",
      "example": "eyJpZCI6MTIzfQ=="
    },
    "count": {
      "type": "integer",
      "example": 500
    }
  }
}