Pagination

NHTSA Pagination schema

GovernmentTransportationTruckingAviationVehicle SafetyTransitOpen Data

Properties

Name Type Description
count integer
currentUrl string
max integer
nextUrl string
offset integer
order string
previousUrl string
sort string
total integer
View JSON Schema on GitHub

JSON Schema

pagination.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.nhtsa.gov/schemas/Pagination.json",
  "title": "Pagination",
  "description": "NHTSA Pagination schema",
  "properties": {
    "count": {
      "type": "integer"
    },
    "currentUrl": {
      "type": "string"
    },
    "max": {
      "type": "integer"
    },
    "nextUrl": {
      "type": "string"
    },
    "offset": {
      "type": "integer"
    },
    "order": {
      "type": "string"
    },
    "previousUrl": {
      "type": "string"
    },
    "sort": {
      "type": "string"
    },
    "total": {
      "type": "integer"
    }
  },
  "type": "object"
}