{
  "$id": "schema.json",
  "type": "object",
  "schema": "http://json-schema.org/draft-07/schema#",
  "translate": true,
  "dynamicfields": true,
  "properties": {
    "ph_request_type": {
      "type": "string",
      "description": "type of request (internal to adapter)",
      "default": "reportDaily",
      "enum": [
        "reportDaily",
        "reportUsers",
        "reportMeetings",
        "reportMeetingDetails",
        "reportMeetingParticipants",
        "reportMeetingPolls",
        "reportWebinarDetails",
        "reportWebinarParticipants",
        "reportWebinarPolls",
        "reportWebinarQA",
        "reportTelephone",
        "reportCloudRecording"
      ],
      "external_name": "ph_request_type"
    },
    "pageSize": {
      "type": "number",
      "description": "The number of records returned within a single API call",
      "parse": false,
      "encode": false,
      "encrypt": {
        "type": "AES",
        "key": ""
      },
      "external_name": "page_size"
    },
    "pageNumber": {
      "type": "number",
      "description": "Current page number of returned records",
      "parse": false,
      "encode": false,
      "encrypt": {
        "type": "AES",
        "key": ""
      },
      "external_name": "page_number"
    },
    "nextPageToken": {
      "type": "string",
      "description": "Next page token is used to paginate through large result sets. A next page token will be returned whenever the set of available results exceed the current page size. The ...(description truncated)",
      "parse": false,
      "encode": false,
      "encrypt": {
        "type": "AES",
        "key": ""
      },
      "external_name": "next_page_token"
    }
  },
  "definitions": {}
}