schema.json in platform-api-2.0.0 vs schema.json in platform-api-2.1.0
- old
+ new
@@ -2713,13 +2713,46 @@
},
"targetSchema": {
"$ref": "#/definitions/app"
},
"title": "Update"
+ },
+ {
+ "description": "Enable ACM flag for an app",
+ "href": "/apps/{(%23%2Fdefinitions%2Fapp%2Fdefinitions%2Fidentity)}/acm",
+ "method": "POST",
+ "rel": "update",
+ "targetSchema": {
+ "$ref": "#/definitions/app"
+ },
+ "title": "Enable ACM"
+ },
+ {
+ "description": "Disable ACM flag for an app",
+ "href": "/apps/{(%23%2Fdefinitions%2Fapp%2Fdefinitions%2Fidentity)}/acm",
+ "method": "DELETE",
+ "rel": "delete",
+ "targetSchema": {
+ "$ref": "#/definitions/app"
+ },
+ "title": "Disable ACM"
+ },
+ {
+ "description": "Refresh ACM for an app",
+ "href": "/apps/{(%23%2Fdefinitions%2Fapp%2Fdefinitions%2Fidentity)}/acm",
+ "method": "PATCH",
+ "rel": "update",
+ "targetSchema": {
+ "$ref": "#/definitions/app"
+ },
+ "title": "Refresh ACM"
}
],
"properties": {
+ "acm": {
+ "$ref": "#/definitions/app/definitions/acm"
+ },
"archived_at": {
"$ref": "#/definitions/app/definitions/archived_at"
},
"buildpack_provided_description": {
"$ref": "#/definitions/app/definitions/buildpack_provided_description"
@@ -3815,10 +3848,19 @@
"title": "Heroku Platform API - Domain",
"type": [
"object"
],
"definitions": {
+ "acm_status": {
+ "description": "status of this record's ACM",
+ "example": "pending",
+ "readOnly": true,
+ "type": [
+ "null",
+ "string"
+ ]
+ },
"created_at": {
"description": "when domain was created",
"example": "2012-01-01T12:00:00Z",
"format": "date-time",
"readOnly": true,
@@ -3952,9 +3994,12 @@
},
"title": "List"
}
],
"properties": {
+ "acm_status": {
+ "$ref": "#/definitions/domain/definitions/acm_status"
+ },
"app": {
"description": "app that owns the domain",
"properties": {
"name": {
"$ref": "#/definitions/app/definitions/name"