messagebird · Schema

PurchasedNumberList

Properties

Name Type Description
items array
count integer The number of items returned.
totalCount integer The total number of purchased numbers.
offset integer The offset applied.
limit integer The limit applied.
View JSON Schema on GitHub

JSON Schema

messagebird-purchasednumberlist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PurchasedNumberList",
  "title": "PurchasedNumberList",
  "type": "object",
  "properties": {
    "items": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/PurchasedNumber"
      }
    },
    "count": {
      "type": "integer",
      "description": "The number of items returned."
    },
    "totalCount": {
      "type": "integer",
      "description": "The total number of purchased numbers."
    },
    "offset": {
      "type": "integer",
      "description": "The offset applied."
    },
    "limit": {
      "type": "integer",
      "description": "The limit applied."
    }
  }
}