Render · Schema

headerInput

CloudPlatformDeploymentInfrastructureDevOpsWeb ServicesDatabasesHosting

Properties

Name Type Description
path string The request path to add the header to. Wildcards will cause headers to be applied to all matching paths.
name string Header name
value string Header value
View JSON Schema on GitHub

JSON Schema

render-headerinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/headerInput",
  "title": "headerInput",
  "type": "object",
  "required": [
    "path",
    "name",
    "value"
  ],
  "properties": {
    "path": {
      "type": "string",
      "description": "The request path to add the header to. Wildcards will cause headers to be applied to all matching paths.",
      "example": "/static/*"
    },
    "name": {
      "type": "string",
      "description": "Header name",
      "example": "Cache-Control"
    },
    "value": {
      "type": "string",
      "description": "Header value",
      "example": "public, max-age=604800"
    }
  }
}