Heroku · Schema

Domain

Application DeploymentCloud PlatformDevOpsPaaS

Properties

Name Type Description
id string
hostname string
kind string
acm_status string
acm_status_reason string
cname string
sni_endpoint object
status string
app object
created_at string
updated_at string
View JSON Schema on GitHub

JSON Schema

heroku-domain-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Domain",
  "title": "Domain",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid"
    },
    "hostname": {
      "type": "string"
    },
    "kind": {
      "type": "string",
      "enum": [
        "heroku",
        "custom"
      ]
    },
    "acm_status": {
      "type": "string",
      "nullable": true
    },
    "acm_status_reason": {
      "type": "string",
      "nullable": true
    },
    "cname": {
      "type": "string",
      "nullable": true
    },
    "sni_endpoint": {
      "type": "object",
      "nullable": true,
      "properties": {
        "id": {
          "type": "string",
          "format": "uuid"
        },
        "name": {
          "type": "string"
        }
      }
    },
    "status": {
      "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"
    }
  }
}