RapidAPI · Schema

CollectionInput

API MarketplaceAPI ManagementAPI TestingAPI GatewayAPI DesignEnterprise

Properties

Name Type Description
title string Display title of the collection
description string Description of the collection
apis array List of API identifiers to include in the collection
View JSON Schema on GitHub

JSON Schema

rapidapi-collectioninput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CollectionInput",
  "title": "CollectionInput",
  "type": "object",
  "required": [
    "title"
  ],
  "properties": {
    "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 to include in the collection"
    }
  }
}