Axway · Schema

ResponseMetadata

API ManagementEnterpriseIntegrationSecurity

Properties

Name Type Description
count number Number of results included in the response.
limit number Number of results per page.
matched number Total number of matched results.
page number Page of results.
pages number Total number of pages of results.
skip number Number of results skipped in pagination.
View JSON Schema on GitHub

JSON Schema

axway-responsemetadata-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ResponseMetadata",
  "title": "ResponseMetadata",
  "type": "object",
  "properties": {
    "count": {
      "type": "number",
      "description": "Number of results included in the response.",
      "example": 1.0
    },
    "limit": {
      "type": "number",
      "description": "Number of results per page.",
      "example": 1.0
    },
    "matched": {
      "type": "number",
      "description": "Total number of matched results.",
      "example": 1.0
    },
    "page": {
      "type": "number",
      "description": "Page of results.",
      "example": 1.0
    },
    "pages": {
      "type": "number",
      "description": "Total number of pages of results.",
      "example": 1.0
    },
    "skip": {
      "type": "number",
      "description": "Number of results skipped in pagination.",
      "example": 1.0
    }
  }
}