RapidAPI · Schema

Environment

API MarketplaceAPI ManagementAPI TestingAPI GatewayAPI DesignEnterprise

Properties

Name Type Description
id string Unique identifier for the environment
name string Environment name
variables object Key-value pairs of environment variables
createdAt string Timestamp when the environment was created
View JSON Schema on GitHub

JSON Schema

rapidapi-environment-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Environment",
  "title": "Environment",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the environment"
    },
    "name": {
      "type": "string",
      "description": "Environment name"
    },
    "variables": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      },
      "description": "Key-value pairs of environment variables"
    },
    "createdAt": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the environment was created"
    }
  }
}