RapidAPI · Schema

Collection

API MarketplaceAPI ManagementAPI TestingAPI GatewayAPI DesignEnterprise

Properties

Name Type Description
id string Unique identifier for the collection
title string Display title of the collection
description string Description of the collection
apis array List of API identifiers in this collection
createdAt string Timestamp when the collection was created
View JSON Schema on GitHub

JSON Schema

rapidapi-collection-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Collection",
  "title": "Collection",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the collection"
    },
    "title": {
      "type": "string",
      "description": "Display title of the collection"
    },
    "description": {
      "type": "string",
      "description": "Description of the collection"
    },
    "apis": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "List of API identifiers in this collection"
    },
    "createdAt": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the collection was created"
    }
  }
}