StackOne · Schema

NotesPaginated

IntegrationsiPaaS

Properties

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

JSON Schema

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