Render · Schema

routePut

CloudPlatformDeploymentInfrastructureDevOpsWeb ServicesDatabasesHosting

Properties

Name Type Description
type object
source string
destination string
View JSON Schema on GitHub

JSON Schema

render-routeput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/routePut",
  "title": "routePut",
  "type": "object",
  "required": [
    "type",
    "source",
    "destination"
  ],
  "properties": {
    "type": {
      "$ref": "#/components/schemas/routeType"
    },
    "source": {
      "type": "string",
      "example": "/:bar/foo"
    },
    "destination": {
      "type": "string",
      "example": "/foo/:bar"
    }
  }
}