Heroku · Schema

Formation

Application DeploymentCloud PlatformDevOpsPaaS

Properties

Name Type Description
id string
type string Process type name (web, worker, etc.)
command string
quantity integer
size string
app object
created_at string
updated_at string
View JSON Schema on GitHub

JSON Schema

heroku-formation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Formation",
  "title": "Formation",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid"
    },
    "type": {
      "type": "string",
      "description": "Process type name (web, worker, etc.)"
    },
    "command": {
      "type": "string"
    },
    "quantity": {
      "type": "integer"
    },
    "size": {
      "type": "string"
    },
    "app": {
      "type": "object",
      "properties": {
        "id": {
          "type": "string",
          "format": "uuid"
        },
        "name": {
          "type": "string"
        }
      }
    },
    "created_at": {
      "type": "string",
      "format": "date-time"
    },
    "updated_at": {
      "type": "string",
      "format": "date-time"
    }
  }
}