QueryList

QueryList schema

AnalyticsCustomer ExperienceDigital MarketingPersonalizationCampaign ManagementJourney Orchestration

Properties

Name Type Description
queries array
_page object
View JSON Schema on GitHub

JSON Schema

experience-platform-api-query-list-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adobe-experience-cloud/refs/heads/main/json-schema/experience-platform-api-query-list-schema.json",
  "title": "QueryList",
  "description": "QueryList schema",
  "type": "object",
  "properties": {
    "queries": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "dbName": {
            "type": "string"
          },
          "sql": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "state": {
            "type": "string",
            "enum": [
              "SUBMITTED",
              "IN_PROGRESS",
              "SUCCESS",
              "FAILED"
            ]
          },
          "created": {
            "type": "string",
            "format": "date-time"
          },
          "updated": {
            "type": "string",
            "format": "date-time"
          },
          "rowCount": {
            "type": "integer"
          }
        }
      }
    },
    "_page": {
      "type": "object",
      "properties": {
        "totalCount": {
          "type": "integer"
        }
      }
    }
  }
}