Render · Schema

backgroundWorkerDetails

CloudPlatformDeploymentInfrastructureDevOpsWeb ServicesDatabasesHosting

Properties

Name Type Description
autoscaling object
disk object
env object
envSpecificDetails object
numInstances integer For a *manually* scaled service, this is the number of instances the service is scaled to. DOES NOT indicate the number of running instances for an *autoscaled* service.
parentServer object
plan object
pullRequestPreviewsEnabled object
previews object
region object
runtime object
sshAddress object
buildPlan object
maxShutdownDelaySeconds object
View JSON Schema on GitHub

JSON Schema

render-backgroundworkerdetails-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/backgroundWorkerDetails",
  "title": "backgroundWorkerDetails",
  "type": "object",
  "required": [
    "env",
    "runtime",
    "envSpecificDetails",
    "plan",
    "region",
    "numInstances",
    "buildPlan"
  ],
  "properties": {
    "autoscaling": {
      "$ref": "#/components/schemas/webServiceDetails/properties/autoscaling"
    },
    "disk": {
      "$ref": "#/components/schemas/webServiceDetails/properties/disk"
    },
    "env": {
      "$ref": "#/components/schemas/serviceEnv"
    },
    "envSpecificDetails": {
      "$ref": "#/components/schemas/envSpecificDetails"
    },
    "numInstances": {
      "type": "integer",
      "description": "For a *manually* scaled service, this is the number of instances the service is scaled to. DOES NOT indicate the number of running instances for an *autoscaled* service."
    },
    "parentServer": {
      "$ref": "#/components/schemas/resource"
    },
    "plan": {
      "$ref": "#/components/schemas/plan"
    },
    "pullRequestPreviewsEnabled": {
      "$ref": "#/components/schemas/pullRequestPreviewsEnabled"
    },
    "previews": {
      "$ref": "#/components/schemas/previews"
    },
    "region": {
      "$ref": "#/components/schemas/region"
    },
    "runtime": {
      "$ref": "#/components/schemas/serviceRuntime"
    },
    "sshAddress": {
      "$ref": "#/components/schemas/sshAddress"
    },
    "buildPlan": {
      "$ref": "#/components/schemas/buildPlan"
    },
    "maxShutdownDelaySeconds": {
      "$ref": "#/components/schemas/maxShutdownDelaySeconds"
    }
  }
}