RapidAPI · Schema

Location

API MarketplaceAPI ManagementAPI TestingAPI GatewayAPI DesignEnterprise

Properties

Name Type Description
id string Unique identifier for the location
name string Location display name
region string AWS region identifier
provider string Cloud provider hosting this location
View JSON Schema on GitHub

JSON Schema

rapidapi-location-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Location",
  "title": "Location",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the location"
    },
    "name": {
      "type": "string",
      "description": "Location display name"
    },
    "region": {
      "type": "string",
      "description": "AWS region identifier"
    },
    "provider": {
      "type": "string",
      "enum": [
        "aws",
        "azure",
        "custom"
      ],
      "description": "Cloud provider hosting this location"
    }
  }
}