Render · Schema

routePost

CloudPlatformDeploymentInfrastructureDevOpsWeb ServicesDatabasesHosting

Properties

Name Type Description
type object
source string
destination string
priority integer Redirect and Rewrite Rules are applied in priority order starting at 0. Defaults to last in the priority list.
View JSON Schema on GitHub

JSON Schema

render-routepost-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/routePost",
  "title": "routePost",
  "type": "object",
  "required": [
    "type",
    "source",
    "destination"
  ],
  "properties": {
    "type": {
      "$ref": "#/components/schemas/routeType"
    },
    "source": {
      "type": "string",
      "example": "/:bar/foo"
    },
    "destination": {
      "type": "string",
      "example": "/foo/:bar"
    },
    "priority": {
      "type": "integer",
      "description": "Redirect and Rewrite Rules are applied in priority order starting at 0. Defaults to last in the priority list."
    }
  }
}