RapidAPI · Schema

HubCollection

API MarketplaceAPI ManagementAPI TestingAPI GatewayAPI DesignEnterprise

Properties

Name Type Description
id string Unique identifier for the collection
title string Collection title
description string Description of the collection
apiCount integer Number of APIs in this collection
imageUrl string URL to the collection image
View JSON Schema on GitHub

JSON Schema

rapidapi-hubcollection-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/HubCollection",
  "title": "HubCollection",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the collection"
    },
    "title": {
      "type": "string",
      "description": "Collection title"
    },
    "description": {
      "type": "string",
      "description": "Description of the collection"
    },
    "apiCount": {
      "type": "integer",
      "description": "Number of APIs in this collection"
    },
    "imageUrl": {
      "type": "string",
      "format": "uri",
      "description": "URL to the collection image"
    }
  }
}