commercetools · Schema

SubscriptionPagedQueryResponse

Paginated response containing a list of subscriptions.

CommerceComposable CommerceE-CommerceGraphQLRESTSDK

Properties

Name Type Description
limit integer
offset integer
count integer
total integer
results array
View JSON Schema on GitHub

JSON Schema

commercetools-subscriptionpagedqueryresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SubscriptionPagedQueryResponse",
  "title": "SubscriptionPagedQueryResponse",
  "type": "object",
  "description": "Paginated response containing a list of subscriptions.",
  "required": [
    "limit",
    "offset",
    "count",
    "total",
    "results"
  ],
  "properties": {
    "limit": {
      "type": "integer"
    },
    "offset": {
      "type": "integer"
    },
    "count": {
      "type": "integer"
    },
    "total": {
      "type": "integer"
    },
    "results": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Subscription"
      }
    }
  }
}