Render · Schema

serverPort

CloudPlatformDeploymentInfrastructureDevOpsWeb ServicesDatabasesHosting

Properties

Name Type Description
port integer
protocol string
View JSON Schema on GitHub

JSON Schema

render-serverport-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/serverPort",
  "title": "serverPort",
  "type": "object",
  "required": [
    "port",
    "protocol"
  ],
  "properties": {
    "port": {
      "type": "integer",
      "example": 10000
    },
    "protocol": {
      "type": "string",
      "enum": [
        "TCP",
        "UDP"
      ]
    }
  }
}