Heroku · Schema

Dyno

Application DeploymentCloud PlatformDevOpsPaaS

Properties

Name Type Description
id string
name string
app object
attach_url string
command string
created_at string
release object
size string
state string
type string
updated_at string
View JSON Schema on GitHub

JSON Schema

heroku-dyno-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Dyno",
  "title": "Dyno",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid"
    },
    "name": {
      "type": "string"
    },
    "app": {
      "type": "object",
      "properties": {
        "id": {
          "type": "string",
          "format": "uuid"
        },
        "name": {
          "type": "string"
        }
      }
    },
    "attach_url": {
      "type": "string",
      "nullable": true
    },
    "command": {
      "type": "string"
    },
    "created_at": {
      "type": "string",
      "format": "date-time"
    },
    "release": {
      "type": "object",
      "properties": {
        "id": {
          "type": "string",
          "format": "uuid"
        },
        "version": {
          "type": "integer"
        }
      }
    },
    "size": {
      "type": "string"
    },
    "state": {
      "type": "string",
      "enum": [
        "crashed",
        "down",
        "idle",
        "starting",
        "up"
      ]
    },
    "type": {
      "type": "string"
    },
    "updated_at": {
      "type": "string",
      "format": "date-time"
    }
  }
}