StackOne · Schema

InterviewsPaginated

IntegrationsiPaaS

Properties

Name Type Description
data array
raw string
next_page string
View JSON Schema on GitHub

JSON Schema

stackone-interviewspaginated-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/InterviewsPaginated",
  "title": "InterviewsPaginated",
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Interview"
      }
    },
    "raw": {
      "type": "string"
    },
    "next_page": {
      "type": "string"
    }
  },
  "required": [
    "next_page",
    "data"
  ]
}