RapidAPI · Schema

ProjectInput

API MarketplaceAPI ManagementAPI TestingAPI GatewayAPI DesignEnterprise

Properties

Name Type Description
name string Project name
description string Project description
apiType string The type of API being designed
View JSON Schema on GitHub

JSON Schema

rapidapi-projectinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProjectInput",
  "title": "ProjectInput",
  "type": "object",
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Project name"
    },
    "description": {
      "type": "string",
      "description": "Project description"
    },
    "apiType": {
      "type": "string",
      "enum": [
        "rest",
        "graphql",
        "soap"
      ],
      "description": "The type of API being designed"
    }
  }
}