Pagination

ConstructionBIMProject ManagementAECCADArchitectureEngineeringField Management

Properties

Name Type Description
limit integer
offset integer
totalResults integer
nextUrl string
View JSON Schema on GitHub

JSON Schema

autodesk-construction-cloud-pagination-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Pagination",
  "title": "Pagination",
  "type": "object",
  "properties": {
    "limit": {
      "type": "integer"
    },
    "offset": {
      "type": "integer"
    },
    "totalResults": {
      "type": "integer"
    },
    "nextUrl": {
      "type": "string"
    }
  }
}