zones_route

APIs.ioEngineeringPlatform

Properties

Name Type Description
modified_on string The timestamp of when the override was last modified.
name object The type of route.
value object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-zones-route-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/zones_route",
  "title": "zones_route",
  "properties": {
    "modified_on": {
      "description": "The timestamp of when the override was last modified.",
      "example": "2014-01-01T05:20:00.12345Z",
      "format": "date-time",
      "readOnly": true,
      "type": "string"
    },
    "name": {
      "description": "The type of route.",
      "enum": [
        "forward_url"
      ],
      "example": "forward_url"
    },
    "value": {
      "properties": {
        "type": {
          "description": "The response type for the URL redirect.",
          "enum": [
            "temporary",
            "permanent"
          ],
          "example": "temporary"
        },
        "url": {
          "description": "The URL to redirect the request to.\nNotes: ${num} refers to the position of '*' in the constraint value.",
          "example": "http://www.example.com/somewhere/$1/astring/$2/anotherstring/$3",
          "type": "string"
        }
      }
    }
  },
  "type": "object"
}