Qlik Sense · Schema

ReloadList

Paginated list of reloads.

AnalyticsBusiness IntelligenceCloudData IntegrationVisualization

Properties

Name Type Description
data array
links object
View JSON Schema on GitHub

JSON Schema

qlik-sense-reloadlist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ReloadList",
  "title": "ReloadList",
  "type": "object",
  "description": "Paginated list of reloads.",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Reload"
      }
    },
    "links": {
      "type": "object",
      "properties": {
        "self": {
          "type": "object",
          "properties": {
            "href": {
              "type": "string"
            }
          }
        },
        "next": {
          "type": "object",
          "properties": {
            "href": {
              "type": "string"
            }
          }
        },
        "prev": {
          "type": "object",
          "properties": {
            "href": {
              "type": "string"
            }
          }
        }
      }
    }
  }
}