Render · Schema

serviceDisk

CloudPlatformDeploymentInfrastructureDevOpsWeb ServicesDatabasesHosting

Properties

Name Type Description
name string
mountPath string
sizeGB integer Defaults to 1
View JSON Schema on GitHub

JSON Schema

render-servicedisk-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/serviceDisk",
  "title": "serviceDisk",
  "type": "object",
  "required": [
    "name",
    "mountPath"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "mountPath": {
      "type": "string"
    },
    "sizeGB": {
      "type": "integer",
      "minimum": 1,
      "description": "Defaults to 1"
    }
  }
}