platform-api 2.3.0.pre.1 → 3.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,3 +1,3 @@
1
1
  module PlatformAPI
2
- VERSION = '2.3.0.pre.1'
2
+ VERSION = '3.2.0'
3
3
  end
@@ -359,6 +359,42 @@
359
359
  "type": [
360
360
  "boolean"
361
361
  ]
362
+ },
363
+ "acknowledged_msa": {
364
+ "description": "whether account has acknowledged the MSA terms of service",
365
+ "example": false,
366
+ "readOnly": true,
367
+ "type": [
368
+ "boolean"
369
+ ]
370
+ },
371
+ "acknowledged_msa_at": {
372
+ "description": "when account has acknowledged the MSA terms of service",
373
+ "example": "2012-01-01T12:00:00Z",
374
+ "format": "date-time",
375
+ "readOnly": true,
376
+ "type": [
377
+ "string",
378
+ "null"
379
+ ]
380
+ },
381
+ "italian_customer_terms": {
382
+ "description": "whether account has acknowledged the Italian customer terms of service",
383
+ "example": "affirmatively_accepted",
384
+ "readOnly": true,
385
+ "type": [
386
+ "string",
387
+ "null"
388
+ ]
389
+ },
390
+ "italian_partner_terms": {
391
+ "description": "whether account has acknowledged the Italian provider terms of service",
392
+ "example": "affirmatively_accepted",
393
+ "readOnly": true,
394
+ "type": [
395
+ "string",
396
+ "null"
397
+ ]
362
398
  }
363
399
  },
364
400
  "links": [
@@ -572,6 +608,18 @@
572
608
  "verified": {
573
609
  "$ref": "#/definitions/account/definitions/verified"
574
610
  },
611
+ "acknowledged_msa": {
612
+ "$ref": "#/definitions/account/definitions/acknowledged_msa"
613
+ },
614
+ "acknowledged_msa_at": {
615
+ "$ref": "#/definitions/account/definitions/acknowledged_msa_at"
616
+ },
617
+ "italian_customer_terms": {
618
+ "$ref": "#/definitions/account/definitions/italian_customer_terms"
619
+ },
620
+ "italian_partner_terms": {
621
+ "$ref": "#/definitions/account/definitions/italian_partner_terms"
622
+ },
575
623
  "default_organization": {
576
624
  "description": "team selected by default",
577
625
  "properties": {
@@ -607,7 +655,7 @@
607
655
  }
608
656
  },
609
657
  "add-on-action": {
610
- "description": "Add-on Actions are lifecycle operations for add-on provisioning and deprovisioning. They allow whitelisted add-on providers to (de)provision add-ons in the background and then report back when (de)provisioning is complete.",
658
+ "description": "Add-on Actions are lifecycle operations for add-on provisioning and deprovisioning. They allow add-on providers to (de)provision add-ons in the background and then report back when (de)provisioning is complete.",
611
659
  "$schema": "http://json-schema.org/draft-04/hyper-schema",
612
660
  "stability": "development",
613
661
  "strictProperties": true,
@@ -2140,6 +2188,157 @@
2140
2188
  }
2141
2189
  }
2142
2190
  },
2191
+ "allowed-add-on-service": {
2192
+ "description": "Entities that have been allowed to be used by a Team",
2193
+ "$schema": "http://json-schema.org/draft-04/hyper-schema",
2194
+ "stability": "prototype",
2195
+ "strictProperties": true,
2196
+ "title": "Heroku Platform API - Allowed Add-on Service",
2197
+ "type": [
2198
+ "object"
2199
+ ],
2200
+ "definitions": {
2201
+ "added_at": {
2202
+ "description": "when the add-on service was allowed",
2203
+ "example": "2012-01-01T12:00:00Z",
2204
+ "format": "date-time",
2205
+ "readOnly": true,
2206
+ "type": [
2207
+ "string"
2208
+ ]
2209
+ },
2210
+ "added_by": {
2211
+ "description": "the user which allowed the add-on service",
2212
+ "properties": {
2213
+ "email": {
2214
+ "$ref": "#/definitions/account/definitions/email",
2215
+ "type": [
2216
+ "string",
2217
+ "null"
2218
+ ]
2219
+ },
2220
+ "id": {
2221
+ "$ref": "#/definitions/account/definitions/id",
2222
+ "type": [
2223
+ "string",
2224
+ "null"
2225
+ ]
2226
+ }
2227
+ },
2228
+ "readOnly": true,
2229
+ "type": [
2230
+ "object"
2231
+ ]
2232
+ },
2233
+ "addon_service": {
2234
+ "description": "the add-on service allowed for use",
2235
+ "properties": {
2236
+ "id": {
2237
+ "$ref": "#/definitions/add-on-service/definitions/id"
2238
+ },
2239
+ "name": {
2240
+ "$ref": "#/definitions/add-on-service/definitions/name"
2241
+ },
2242
+ "human_name": {
2243
+ "$ref": "#/definitions/add-on-service/definitions/human_name"
2244
+ }
2245
+ },
2246
+ "readOnly": true,
2247
+ "type": [
2248
+ "object"
2249
+ ]
2250
+ },
2251
+ "id": {
2252
+ "description": "unique identifier for this allowed add-on service record",
2253
+ "example": "01234567-89ab-cdef-0123-456789abcdef",
2254
+ "format": "uuid",
2255
+ "readOnly": true,
2256
+ "type": [
2257
+ "string"
2258
+ ]
2259
+ },
2260
+ "identity": {
2261
+ "anyOf": [
2262
+ {
2263
+ "$ref": "#/definitions/allowed-add-on-service/definitions/id"
2264
+ },
2265
+ {
2266
+ "$ref": "#/definitions/add-on-service/definitions/name"
2267
+ }
2268
+ ]
2269
+ }
2270
+ },
2271
+ "links": [
2272
+ {
2273
+ "description": "List all allowed add-on services for a team",
2274
+ "href": "/teams/{(%23%2Fdefinitions%2Fteam%2Fdefinitions%2Fidentity)}/allowed-addon-services",
2275
+ "method": "GET",
2276
+ "rel": "instances",
2277
+ "targetSchema": {
2278
+ "items": {
2279
+ "$ref": "#/definitions/allowed-add-on-service"
2280
+ },
2281
+ "type": [
2282
+ "array"
2283
+ ]
2284
+ },
2285
+ "title": "List By Team"
2286
+ },
2287
+ {
2288
+ "description": "Allow an Add-on Service",
2289
+ "href": "/teams/{(%23%2Fdefinitions%2Fteam%2Fdefinitions%2Fidentity)}/allowed-addon-services",
2290
+ "method": "POST",
2291
+ "rel": "create",
2292
+ "schema": {
2293
+ "type": [
2294
+ "object"
2295
+ ],
2296
+ "properties": {
2297
+ "addon_service": {
2298
+ "description": "name of the add-on service to allow",
2299
+ "example": "heroku-postgresql",
2300
+ "type": [
2301
+ "string"
2302
+ ]
2303
+ }
2304
+ }
2305
+ },
2306
+ "targetSchema": {
2307
+ "items": {
2308
+ "$ref": "#/definitions/allowed-add-on-service"
2309
+ },
2310
+ "type": [
2311
+ "array"
2312
+ ]
2313
+ },
2314
+ "title": "Create By Team"
2315
+ },
2316
+ {
2317
+ "description": "Remove an allowed add-on service",
2318
+ "href": "/teams/{(%23%2Fdefinitions%2Fteam%2Fdefinitions%2Fidentity)}/allowed-addon-services/{(%23%2Fdefinitions%2Fallowed-add-on-service%2Fdefinitions%2Fidentity)}",
2319
+ "method": "DELETE",
2320
+ "rel": "destroy",
2321
+ "targetSchema": {
2322
+ "$ref": "#/definitions/allowed-add-on-service"
2323
+ },
2324
+ "title": "Delete By Team"
2325
+ }
2326
+ ],
2327
+ "properties": {
2328
+ "added_at": {
2329
+ "$ref": "#/definitions/allowed-add-on-service/definitions/added_at"
2330
+ },
2331
+ "added_by": {
2332
+ "$ref": "#/definitions/allowed-add-on-service/definitions/added_by"
2333
+ },
2334
+ "addon_service": {
2335
+ "$ref": "#/definitions/allowed-add-on-service/definitions/addon_service"
2336
+ },
2337
+ "id": {
2338
+ "$ref": "#/definitions/allowed-add-on-service/definitions/id"
2339
+ }
2340
+ }
2341
+ },
2143
2342
  "app-feature": {
2144
2343
  "description": "An app feature represents a Heroku labs capability that can be enabled or disabled for an app on Heroku.",
2145
2344
  "$schema": "http://json-schema.org/draft-04/hyper-schema",
@@ -4028,7 +4227,7 @@
4028
4227
  "$schema": "http://json-schema.org/draft-04/hyper-schema",
4029
4228
  "title": "Heroku Platform API - Audit Trail Archive",
4030
4229
  "description": "An audit trail archive represents a monthly json zipped file containing events",
4031
- "stability": "development",
4230
+ "stability": "production",
4032
4231
  "strictProperties": true,
4033
4232
  "type": [
4034
4233
  "object"
@@ -4131,61 +4330,20 @@
4131
4330
  }
4132
4331
  }
4133
4332
  },
4134
- "build": {
4333
+ "audit-trail-event": {
4135
4334
  "$schema": "http://json-schema.org/draft-04/hyper-schema",
4136
- "description": "A build represents the process of transforming a code tarball into a slug",
4137
- "title": "Heroku Build API - Build",
4335
+ "title": "Heroku Platform API - Audit Trail Event",
4336
+ "description": "An audit trail event represents some action on the platform",
4138
4337
  "stability": "production",
4139
4338
  "strictProperties": true,
4140
4339
  "type": [
4141
4340
  "object"
4142
4341
  ],
4143
4342
  "definitions": {
4144
- "buildpacks": {
4145
- "description": "buildpacks executed for this build, in order",
4146
- "type": [
4147
- "array",
4148
- "null"
4149
- ],
4150
- "items": {
4151
- "description": "Buildpack to execute in a build",
4152
- "type": [
4153
- "object"
4154
- ],
4155
- "properties": {
4156
- "url": {
4157
- "description": "the URL of the buildpack for the app",
4158
- "example": "https://github.com/heroku/heroku-buildpack-ruby",
4159
- "readOnly": false,
4160
- "type": [
4161
- "string"
4162
- ]
4163
- },
4164
- "name": {
4165
- "description": "Buildpack Registry name of the buildpack for the app",
4166
- "example": "heroku/ruby",
4167
- "readOnly": false,
4168
- "type": [
4169
- "string"
4170
- ]
4171
- }
4172
- }
4173
- }
4174
- },
4175
- "created_at": {
4176
- "description": "when build was created",
4177
- "example": "2012-01-01T12:00:00Z",
4178
- "format": "date-time",
4179
- "readOnly": true,
4180
- "type": [
4181
- "string"
4182
- ]
4183
- },
4184
4343
  "id": {
4185
- "description": "unique identifier of build",
4186
- "example": "01234567-89ab-cdef-0123-456789abcdef",
4187
- "format": "uuid",
4344
+ "description": "unique identifier of event",
4188
4345
  "readOnly": true,
4346
+ "format": "uuid",
4189
4347
  "type": [
4190
4348
  "string"
4191
4349
  ]
@@ -4193,51 +4351,308 @@
4193
4351
  "identity": {
4194
4352
  "anyOf": [
4195
4353
  {
4196
- "$ref": "#/definitions/build/definitions/id"
4354
+ "$ref": "#/definitions/audit-trail-event/definitions/id"
4197
4355
  }
4198
4356
  ]
4199
4357
  },
4200
- "output_stream_url": {
4201
- "description": "Build process output will be available from this URL as a stream. The stream is available as either `text/plain` or `text/event-stream`. Clients should be prepared to handle disconnects and can resume the stream by sending a `Range` header (for `text/plain`) or a `Last-Event-Id` header (for `text/event-stream`).",
4202
- "example": "https://build-output.heroku.com/streams/01234567-89ab-cdef-0123-456789abcdef",
4358
+ "type": {
4359
+ "description": "type of event",
4203
4360
  "readOnly": true,
4204
4361
  "type": [
4205
4362
  "string"
4206
4363
  ]
4207
4364
  },
4208
- "release": {
4209
- "description": "release resulting from the build",
4210
- "strictProperties": true,
4211
- "properties": {
4212
- "id": {
4213
- "$ref": "#/definitions/release/definitions/id"
4214
- }
4215
- },
4216
- "example": {
4217
- "id": "01234567-89ab-cdef-0123-456789abcdef"
4218
- },
4365
+ "action": {
4366
+ "description": "action for the event",
4367
+ "readOnly": true,
4368
+ "type": [
4369
+ "string"
4370
+ ]
4371
+ },
4372
+ "actor": {
4373
+ "description": "user who caused event",
4219
4374
  "readOnly": true,
4220
4375
  "type": [
4221
- "null",
4222
4376
  "object"
4223
4377
  ],
4224
- "definitions": {
4378
+ "properties": {
4225
4379
  "id": {
4226
- "description": "unique identifier of release",
4227
- "example": "01234567-89ab-cdef-0123-456789abcdef",
4380
+ "format": "uuid",
4381
+ "type": [
4382
+ "string"
4383
+ ]
4384
+ },
4385
+ "email": {
4386
+ "format": "email",
4228
4387
  "type": [
4229
4388
  "string"
4230
4389
  ]
4231
4390
  }
4232
4391
  }
4233
4392
  },
4234
- "source_blob": {
4235
- "description": "location of gzipped tarball of source code used to create build",
4236
- "properties": {
4237
- "checksum": {
4238
- "description": "an optional checksum of the gzipped tarball for verifying its integrity",
4239
- "example": "SHA256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
4240
- "readOnly": true,
4393
+ "app": {
4394
+ "description": "app upon which event took place",
4395
+ "readOnly": true,
4396
+ "type": [
4397
+ "object"
4398
+ ],
4399
+ "properties": {
4400
+ "id": {
4401
+ "format": "uuid",
4402
+ "type": [
4403
+ "string"
4404
+ ]
4405
+ },
4406
+ "name": {
4407
+ "type": [
4408
+ "string"
4409
+ ]
4410
+ }
4411
+ }
4412
+ },
4413
+ "owner": {
4414
+ "description": "owner of the app targeted by the event",
4415
+ "readOnly": true,
4416
+ "type": [
4417
+ "object"
4418
+ ],
4419
+ "properties": {
4420
+ "id": {
4421
+ "format": "uuid",
4422
+ "type": [
4423
+ "string"
4424
+ ]
4425
+ },
4426
+ "email": {
4427
+ "format": "email",
4428
+ "type": [
4429
+ "string"
4430
+ ]
4431
+ }
4432
+ }
4433
+ },
4434
+ "enterprise_account": {
4435
+ "description": "enterprise account on which the event happened",
4436
+ "readOnly": true,
4437
+ "type": [
4438
+ "object"
4439
+ ],
4440
+ "properties": {
4441
+ "id": {
4442
+ "format": "uuid",
4443
+ "type": [
4444
+ "string"
4445
+ ]
4446
+ },
4447
+ "name": {
4448
+ "type": [
4449
+ "string"
4450
+ ]
4451
+ }
4452
+ }
4453
+ },
4454
+ "team": {
4455
+ "description": "team on which the event happened",
4456
+ "readOnly": true,
4457
+ "type": [
4458
+ "object"
4459
+ ],
4460
+ "properties": {
4461
+ "id": {
4462
+ "format": "uuid",
4463
+ "type": [
4464
+ "string"
4465
+ ]
4466
+ },
4467
+ "name": {
4468
+ "type": [
4469
+ "string"
4470
+ ]
4471
+ }
4472
+ }
4473
+ },
4474
+ "request": {
4475
+ "description": "information about where the action was triggered",
4476
+ "readOnly": true,
4477
+ "type": [
4478
+ "object"
4479
+ ],
4480
+ "properties": {
4481
+ "ip_address": {
4482
+ "format": "ipv4",
4483
+ "type": [
4484
+ "string"
4485
+ ]
4486
+ }
4487
+ }
4488
+ },
4489
+ "data": {
4490
+ "description": "data specific to the event",
4491
+ "readOnly": true,
4492
+ "type": [
4493
+ "object"
4494
+ ]
4495
+ },
4496
+ "created_at": {
4497
+ "description": "when event was created",
4498
+ "format": "date-time",
4499
+ "type": [
4500
+ "string"
4501
+ ]
4502
+ }
4503
+ },
4504
+ "links": [
4505
+ {
4506
+ "description": "List existing events.",
4507
+ "href": "/enterprise-accounts/{(%23%2Fdefinitions%2Fenterprise-account%2Fdefinitions%2Fidentity)}/events",
4508
+ "method": "GET",
4509
+ "rel": "instances",
4510
+ "title": "List"
4511
+ }
4512
+ ],
4513
+ "properties": {
4514
+ "created_at": {
4515
+ "$ref": "#/definitions/audit-trail-event/definitions/created_at"
4516
+ },
4517
+ "id": {
4518
+ "$ref": "#/definitions/audit-trail-event/definitions/id"
4519
+ },
4520
+ "type": {
4521
+ "$ref": "#/definitions/audit-trail-event/definitions/type"
4522
+ },
4523
+ "action": {
4524
+ "$ref": "#/definitions/audit-trail-event/definitions/action"
4525
+ },
4526
+ "actor": {
4527
+ "$ref": "#/definitions/audit-trail-event/definitions/actor"
4528
+ },
4529
+ "app": {
4530
+ "$ref": "#/definitions/audit-trail-event/definitions/app"
4531
+ },
4532
+ "owner": {
4533
+ "$ref": "#/definitions/audit-trail-event/definitions/owner"
4534
+ },
4535
+ "enterprise_account": {
4536
+ "$ref": "#/definitions/audit-trail-event/definitions/enterprise_account"
4537
+ },
4538
+ "team": {
4539
+ "$ref": "#/definitions/audit-trail-event/definitions/team"
4540
+ },
4541
+ "request": {
4542
+ "$ref": "#/definitions/audit-trail-event/definitions/request"
4543
+ },
4544
+ "data": {
4545
+ "$ref": "#/definitions/audit-trail-event/definitions/data"
4546
+ }
4547
+ }
4548
+ },
4549
+ "build": {
4550
+ "$schema": "http://json-schema.org/draft-04/hyper-schema",
4551
+ "description": "A build represents the process of transforming a code tarball into a slug",
4552
+ "title": "Heroku Build API - Build",
4553
+ "stability": "production",
4554
+ "strictProperties": true,
4555
+ "type": [
4556
+ "object"
4557
+ ],
4558
+ "definitions": {
4559
+ "buildpacks": {
4560
+ "description": "buildpacks executed for this build, in order",
4561
+ "type": [
4562
+ "array",
4563
+ "null"
4564
+ ],
4565
+ "items": {
4566
+ "description": "Buildpack to execute in a build",
4567
+ "type": [
4568
+ "object"
4569
+ ],
4570
+ "properties": {
4571
+ "url": {
4572
+ "description": "the URL of the buildpack for the app",
4573
+ "example": "https://github.com/heroku/heroku-buildpack-ruby",
4574
+ "readOnly": false,
4575
+ "type": [
4576
+ "string"
4577
+ ]
4578
+ },
4579
+ "name": {
4580
+ "description": "Buildpack Registry name of the buildpack for the app",
4581
+ "example": "heroku/ruby",
4582
+ "readOnly": false,
4583
+ "type": [
4584
+ "string"
4585
+ ]
4586
+ }
4587
+ }
4588
+ }
4589
+ },
4590
+ "created_at": {
4591
+ "description": "when build was created",
4592
+ "example": "2012-01-01T12:00:00Z",
4593
+ "format": "date-time",
4594
+ "readOnly": true,
4595
+ "type": [
4596
+ "string"
4597
+ ]
4598
+ },
4599
+ "id": {
4600
+ "description": "unique identifier of build",
4601
+ "example": "01234567-89ab-cdef-0123-456789abcdef",
4602
+ "format": "uuid",
4603
+ "readOnly": true,
4604
+ "type": [
4605
+ "string"
4606
+ ]
4607
+ },
4608
+ "identity": {
4609
+ "anyOf": [
4610
+ {
4611
+ "$ref": "#/definitions/build/definitions/id"
4612
+ }
4613
+ ]
4614
+ },
4615
+ "output_stream_url": {
4616
+ "description": "Build process output will be available from this URL as a stream. The stream is available as either `text/plain` or `text/event-stream`. Clients should be prepared to handle disconnects and can resume the stream by sending a `Range` header (for `text/plain`) or a `Last-Event-Id` header (for `text/event-stream`).",
4617
+ "example": "https://build-output.heroku.com/streams/01234567-89ab-cdef-0123-456789abcdef",
4618
+ "readOnly": true,
4619
+ "type": [
4620
+ "string"
4621
+ ]
4622
+ },
4623
+ "release": {
4624
+ "description": "release resulting from the build",
4625
+ "strictProperties": true,
4626
+ "properties": {
4627
+ "id": {
4628
+ "$ref": "#/definitions/release/definitions/id"
4629
+ }
4630
+ },
4631
+ "example": {
4632
+ "id": "01234567-89ab-cdef-0123-456789abcdef"
4633
+ },
4634
+ "readOnly": true,
4635
+ "type": [
4636
+ "null",
4637
+ "object"
4638
+ ],
4639
+ "definitions": {
4640
+ "id": {
4641
+ "description": "unique identifier of release",
4642
+ "example": "01234567-89ab-cdef-0123-456789abcdef",
4643
+ "type": [
4644
+ "string"
4645
+ ]
4646
+ }
4647
+ }
4648
+ },
4649
+ "source_blob": {
4650
+ "description": "location of gzipped tarball of source code used to create build",
4651
+ "properties": {
4652
+ "checksum": {
4653
+ "description": "an optional checksum of the gzipped tarball for verifying its integrity",
4654
+ "example": "SHA256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
4655
+ "readOnly": true,
4241
4656
  "type": [
4242
4657
  "null",
4243
4658
  "string"
@@ -5093,9 +5508,40 @@
5093
5508
  "type": [
5094
5509
  "string"
5095
5510
  ]
5511
+ },
5512
+ "sni_endpoint": {
5513
+ "description": "null or unique identifier or name for SNI endpoint",
5514
+ "type": [
5515
+ "null",
5516
+ "string"
5517
+ ]
5096
5518
  }
5097
5519
  },
5098
5520
  "links": [
5521
+ {
5522
+ "deactivate_on": "2021-10-31",
5523
+ "description": "Create a new domain. Deprecated in favor of this same endpoint, but with a new required attribute of `sni_endpoint`. During the transitional phase sni_endpoint can be omitted entirely (current behavior), can be a valid id, or can be null which will skip auto-association.",
5524
+ "href": "/apps/{(%23%2Fdefinitions%2Fapp%2Fdefinitions%2Fidentity)}/domains",
5525
+ "method": "POST",
5526
+ "rel": "create",
5527
+ "schema": {
5528
+ "properties": {
5529
+ "hostname": {
5530
+ "$ref": "#/definitions/domain/definitions/hostname"
5531
+ }
5532
+ },
5533
+ "required": [
5534
+ "hostname"
5535
+ ],
5536
+ "type": [
5537
+ "object"
5538
+ ]
5539
+ },
5540
+ "targetSchema": {
5541
+ "$ref": "#/definitions/domain"
5542
+ },
5543
+ "title": "Create - Deprecated"
5544
+ },
5099
5545
  {
5100
5546
  "description": "Create a new domain.",
5101
5547
  "href": "/apps/{(%23%2Fdefinitions%2Fapp%2Fdefinitions%2Fidentity)}/domains",
@@ -5103,12 +5549,39 @@
5103
5549
  "rel": "create",
5104
5550
  "schema": {
5105
5551
  "properties": {
5106
- "hostname": {
5107
- "$ref": "#/definitions/domain/definitions/hostname"
5552
+ "hostname": {
5553
+ "$ref": "#/definitions/domain/definitions/hostname"
5554
+ },
5555
+ "sni_endpoint": {
5556
+ "$ref": "#/definitions/domain/definitions/sni_endpoint"
5557
+ }
5558
+ },
5559
+ "required": [
5560
+ "hostname",
5561
+ "sni_endpoint"
5562
+ ],
5563
+ "type": [
5564
+ "object"
5565
+ ]
5566
+ },
5567
+ "targetSchema": {
5568
+ "$ref": "#/definitions/domain"
5569
+ },
5570
+ "title": "Create"
5571
+ },
5572
+ {
5573
+ "description": "Associate an SNI endpoint",
5574
+ "href": "/apps/{(%23%2Fdefinitions%2Fapp%2Fdefinitions%2Fidentity)}/domains/{(%23%2Fdefinitions%2Fdomain%2Fdefinitions%2Fidentity)}",
5575
+ "method": "PATCH",
5576
+ "rel": "update",
5577
+ "schema": {
5578
+ "properties": {
5579
+ "sni_endpoint": {
5580
+ "$ref": "#/definitions/domain/definitions/sni_endpoint"
5108
5581
  }
5109
5582
  },
5110
5583
  "required": [
5111
- "hostname"
5584
+ "sni_endpoint"
5112
5585
  ],
5113
5586
  "type": [
5114
5587
  "object"
@@ -5117,7 +5590,7 @@
5117
5590
  "targetSchema": {
5118
5591
  "$ref": "#/definitions/domain"
5119
5592
  },
5120
- "title": "Create"
5593
+ "title": "Update"
5121
5594
  },
5122
5595
  {
5123
5596
  "description": "Delete an existing domain",
@@ -5196,6 +5669,21 @@
5196
5669
  },
5197
5670
  "status": {
5198
5671
  "$ref": "#/definitions/domain/definitions/status"
5672
+ },
5673
+ "sni_endpoint": {
5674
+ "description": "sni endpoint the domain is associated with",
5675
+ "properties": {
5676
+ "name": {
5677
+ "$ref": "#/definitions/sni-endpoint/definitions/name"
5678
+ },
5679
+ "id": {
5680
+ "$ref": "#/definitions/sni-endpoint/definitions/id"
5681
+ }
5682
+ },
5683
+ "type": [
5684
+ "null",
5685
+ "object"
5686
+ ]
5199
5687
  }
5200
5688
  }
5201
5689
  },
@@ -6359,281 +6847,65 @@
6359
6847
  },
6360
6848
  {
6361
6849
  "description": "Update enterprise account properties",
6362
- "href": "/enterprise-accounts/{(%23%2Fdefinitions%2Fenterprise-account%2Fdefinitions%2Fidentity)}",
6363
- "method": "PATCH",
6364
- "schema": {
6365
- "properties": {
6366
- "name": {
6367
- "$ref": "#/definitions/enterprise-account/definitions/name"
6368
- }
6369
- },
6370
- "type": [
6371
- "object"
6372
- ]
6373
- },
6374
- "targetSchema": {
6375
- "$ref": "#/definitions/enterprise-account"
6376
- },
6377
- "title": "Update"
6378
- }
6379
- ],
6380
- "properties": {
6381
- "id": {
6382
- "$ref": "#/definitions/enterprise-account/definitions/id"
6383
- },
6384
- "created_at": {
6385
- "$ref": "#/definitions/enterprise-account/definitions/created_at"
6386
- },
6387
- "name": {
6388
- "$ref": "#/definitions/enterprise-account/definitions/name"
6389
- },
6390
- "updated_at": {
6391
- "$ref": "#/definitions/enterprise-account/definitions/updated_at"
6392
- },
6393
- "permissions": {
6394
- "$ref": "#/definitions/enterprise-account/definitions/permissions"
6395
- },
6396
- "trial": {
6397
- "$ref": "#/definitions/enterprise-account/definitions/trial"
6398
- },
6399
- "identity_provider": {
6400
- "description": "Identity Provider associated with the Enterprise Account",
6401
- "strictProperties": true,
6402
- "type": [
6403
- "null",
6404
- "object"
6405
- ],
6406
- "properties": {
6407
- "id": {
6408
- "$ref": "#/definitions/identity-provider/definitions/id"
6409
- },
6410
- "name": {
6411
- "description": "user-friendly unique identifier for this identity provider",
6412
- "example": "acme-sso",
6413
- "type": [
6414
- "string"
6415
- ]
6416
- },
6417
- "owner": {
6418
- "$ref": "#/definitions/identity-provider/definitions/owner"
6419
- }
6420
- }
6421
- }
6422
- }
6423
- },
6424
- "event": {
6425
- "$schema": "http://json-schema.org/draft-04/hyper-schema",
6426
- "title": "Heroku Platform API - Audit Trail Event",
6427
- "description": "An audit trail event represents some action on the platform",
6428
- "stability": "development",
6429
- "strictProperties": true,
6430
- "type": [
6431
- "object"
6432
- ],
6433
- "definitions": {
6434
- "id": {
6435
- "description": "unique identifier of event",
6436
- "readOnly": true,
6437
- "format": "uuid",
6438
- "type": [
6439
- "string"
6440
- ]
6441
- },
6442
- "identity": {
6443
- "anyOf": [
6444
- {
6445
- "$ref": "#/definitions/event/definitions/id"
6446
- }
6447
- ]
6448
- },
6449
- "type": {
6450
- "description": "type of event",
6451
- "readOnly": true,
6452
- "type": [
6453
- "string"
6454
- ]
6455
- },
6456
- "action": {
6457
- "description": "action for the event",
6458
- "readOnly": true,
6459
- "type": [
6460
- "string"
6461
- ]
6462
- },
6463
- "actor": {
6464
- "description": "user who caused event",
6465
- "readOnly": true,
6466
- "type": [
6467
- "object"
6468
- ],
6469
- "properties": {
6470
- "id": {
6471
- "format": "uuid",
6472
- "type": [
6473
- "string"
6474
- ]
6475
- },
6476
- "email": {
6477
- "format": "email",
6478
- "type": [
6479
- "string"
6480
- ]
6481
- }
6482
- }
6483
- },
6484
- "app": {
6485
- "description": "app upon which event took place",
6486
- "readOnly": true,
6487
- "type": [
6488
- "object"
6489
- ],
6490
- "properties": {
6491
- "id": {
6492
- "format": "uuid",
6493
- "type": [
6494
- "string"
6495
- ]
6496
- },
6497
- "name": {
6498
- "type": [
6499
- "string"
6500
- ]
6501
- }
6502
- }
6503
- },
6504
- "owner": {
6505
- "description": "owner of the app targeted by the event",
6506
- "readOnly": true,
6507
- "type": [
6508
- "object"
6509
- ],
6510
- "properties": {
6511
- "id": {
6512
- "format": "uuid",
6513
- "type": [
6514
- "string"
6515
- ]
6516
- },
6517
- "email": {
6518
- "format": "email",
6519
- "type": [
6520
- "string"
6521
- ]
6522
- }
6523
- }
6524
- },
6525
- "enterprise_account": {
6526
- "description": "enterprise account on which the event happened",
6527
- "readOnly": true,
6528
- "type": [
6529
- "object"
6530
- ],
6531
- "properties": {
6532
- "id": {
6533
- "format": "uuid",
6534
- "type": [
6535
- "string"
6536
- ]
6537
- },
6538
- "name": {
6539
- "type": [
6540
- "string"
6541
- ]
6542
- }
6543
- }
6544
- },
6545
- "team": {
6546
- "description": "team on which the event happened",
6547
- "readOnly": true,
6548
- "type": [
6549
- "object"
6550
- ],
6551
- "properties": {
6552
- "id": {
6553
- "format": "uuid",
6554
- "type": [
6555
- "string"
6556
- ]
6557
- },
6558
- "name": {
6559
- "type": [
6560
- "string"
6561
- ]
6562
- }
6563
- }
6564
- },
6565
- "request": {
6566
- "description": "information about where the action was triggered",
6567
- "readOnly": true,
6568
- "type": [
6569
- "object"
6570
- ],
6571
- "properties": {
6572
- "ip_address": {
6573
- "format": "ipv4",
6574
- "type": [
6575
- "string"
6576
- ]
6577
- }
6578
- }
6579
- },
6580
- "data": {
6581
- "description": "data specific to the event",
6582
- "readOnly": true,
6583
- "type": [
6584
- "object"
6585
- ]
6586
- },
6587
- "created_at": {
6588
- "description": "when event was created",
6589
- "format": "date-time",
6590
- "type": [
6591
- "string"
6592
- ]
6593
- }
6594
- },
6595
- "links": [
6596
- {
6597
- "description": "List existing events.",
6598
- "href": "/enterprise-accounts/{(%23%2Fdefinitions%2Fenterprise-account%2Fdefinitions%2Fidentity)}/events",
6599
- "method": "GET",
6600
- "rel": "instances",
6601
- "title": "List"
6850
+ "href": "/enterprise-accounts/{(%23%2Fdefinitions%2Fenterprise-account%2Fdefinitions%2Fidentity)}",
6851
+ "method": "PATCH",
6852
+ "schema": {
6853
+ "properties": {
6854
+ "name": {
6855
+ "$ref": "#/definitions/enterprise-account/definitions/name"
6856
+ }
6857
+ },
6858
+ "type": [
6859
+ "object"
6860
+ ]
6861
+ },
6862
+ "targetSchema": {
6863
+ "$ref": "#/definitions/enterprise-account"
6864
+ },
6865
+ "title": "Update"
6602
6866
  }
6603
6867
  ],
6604
6868
  "properties": {
6605
- "created_at": {
6606
- "$ref": "#/definitions/event/definitions/created_at"
6607
- },
6608
6869
  "id": {
6609
- "$ref": "#/definitions/event/definitions/id"
6610
- },
6611
- "type": {
6612
- "$ref": "#/definitions/event/definitions/type"
6613
- },
6614
- "action": {
6615
- "$ref": "#/definitions/event/definitions/action"
6616
- },
6617
- "actor": {
6618
- "$ref": "#/definitions/event/definitions/actor"
6870
+ "$ref": "#/definitions/enterprise-account/definitions/id"
6619
6871
  },
6620
- "app": {
6621
- "$ref": "#/definitions/event/definitions/app"
6872
+ "created_at": {
6873
+ "$ref": "#/definitions/enterprise-account/definitions/created_at"
6622
6874
  },
6623
- "owner": {
6624
- "$ref": "#/definitions/event/definitions/owner"
6875
+ "name": {
6876
+ "$ref": "#/definitions/enterprise-account/definitions/name"
6625
6877
  },
6626
- "enterprise_account": {
6627
- "$ref": "#/definitions/event/definitions/enterprise_account"
6878
+ "updated_at": {
6879
+ "$ref": "#/definitions/enterprise-account/definitions/updated_at"
6628
6880
  },
6629
- "team": {
6630
- "$ref": "#/definitions/event/definitions/team"
6881
+ "permissions": {
6882
+ "$ref": "#/definitions/enterprise-account/definitions/permissions"
6631
6883
  },
6632
- "request": {
6633
- "$ref": "#/definitions/event/definitions/request"
6884
+ "trial": {
6885
+ "$ref": "#/definitions/enterprise-account/definitions/trial"
6634
6886
  },
6635
- "data": {
6636
- "$ref": "#/definitions/event/definitions/data"
6887
+ "identity_provider": {
6888
+ "description": "Identity Provider associated with the Enterprise Account",
6889
+ "strictProperties": true,
6890
+ "type": [
6891
+ "null",
6892
+ "object"
6893
+ ],
6894
+ "properties": {
6895
+ "id": {
6896
+ "$ref": "#/definitions/identity-provider/definitions/id"
6897
+ },
6898
+ "name": {
6899
+ "description": "user-friendly unique identifier for this identity provider",
6900
+ "example": "acme-sso",
6901
+ "type": [
6902
+ "string"
6903
+ ]
6904
+ },
6905
+ "owner": {
6906
+ "$ref": "#/definitions/identity-provider/definitions/owner"
6907
+ }
6908
+ }
6637
6909
  }
6638
6910
  }
6639
6911
  },
@@ -11495,7 +11767,7 @@
11495
11767
  ]
11496
11768
  },
11497
11769
  "pr_number": {
11498
- "description": "GitHub Pull Request number if the Review app was created automatically",
11770
+ "description": "pull request number the review app is built for",
11499
11771
  "example": 24,
11500
11772
  "readOnly": true,
11501
11773
  "type": [
@@ -11515,6 +11787,9 @@
11515
11787
  "branch": {
11516
11788
  "$ref": "#/definitions/review-app/definitions/branch"
11517
11789
  },
11790
+ "pr_number": {
11791
+ "$ref": "#/definitions/review-app/definitions/pr_number"
11792
+ },
11518
11793
  "pipeline": {
11519
11794
  "$ref": "#/definitions/pipeline/definitions/id"
11520
11795
  },
@@ -12119,7 +12394,7 @@
12119
12394
  "size": 2048,
12120
12395
  "stack": {
12121
12396
  "id": "01234567-89ab-cdef-0123-456789abcdef",
12122
- "name": "cedar-14"
12397
+ "name": "heroku-18"
12123
12398
  },
12124
12399
  "updated_at": "2012-01-01T12:00:00Z"
12125
12400
  }
@@ -12742,6 +13017,140 @@
12742
13017
  }
12743
13018
  }
12744
13019
  },
13020
+ "space-topology": {
13021
+ "description": "Space Topology provides you with a mechanism for viewing all the running dynos, formations and applications for a space. This is the same data thats used to power our DNS Service Discovery.",
13022
+ "$schema": "http://json-schema.org/draft-04/hyper-schema",
13023
+ "stability": "prototype",
13024
+ "strictProperties": true,
13025
+ "title": "Heroku Platform API - Space Topology",
13026
+ "type": [
13027
+ "object"
13028
+ ],
13029
+ "definitions": {
13030
+ "version": {
13031
+ "description": "version of the space topology payload",
13032
+ "example": 1,
13033
+ "readOnly": true,
13034
+ "type": [
13035
+ "integer"
13036
+ ]
13037
+ },
13038
+ "dyno": {
13039
+ "description": "A dyno",
13040
+ "properties": {
13041
+ "id": {
13042
+ "$ref": "#/definitions/dyno/definitions/id"
13043
+ },
13044
+ "number": {
13045
+ "description": "process number, e.g. 1 in web.1",
13046
+ "example": 1,
13047
+ "type": [
13048
+ "integer"
13049
+ ]
13050
+ },
13051
+ "private_ip": {
13052
+ "description": "RFC1918 Address of Dyno",
13053
+ "example": "10.0.134.42",
13054
+ "type": [
13055
+ "string"
13056
+ ]
13057
+ },
13058
+ "hostname": {
13059
+ "description": "localspace hostname of resource",
13060
+ "example": "1.example-app-90210.app.localspace",
13061
+ "type": [
13062
+ "string"
13063
+ ]
13064
+ }
13065
+ },
13066
+ "type": [
13067
+ "object"
13068
+ ]
13069
+ },
13070
+ "formation": {
13071
+ "description": "formations for application",
13072
+ "properties": {
13073
+ "id": {
13074
+ "$ref": "#/definitions/formation/definitions/id"
13075
+ },
13076
+ "process_type": {
13077
+ "description": "Name of process type",
13078
+ "example": "web",
13079
+ "type": [
13080
+ "string"
13081
+ ]
13082
+ },
13083
+ "dynos": {
13084
+ "description": "Current dynos for application",
13085
+ "items": {
13086
+ "$ref": "#/definitions/space-topology/definitions/dyno"
13087
+ },
13088
+ "type": [
13089
+ "array"
13090
+ ]
13091
+ }
13092
+ },
13093
+ "type": [
13094
+ "object"
13095
+ ]
13096
+ }
13097
+ },
13098
+ "links": [
13099
+ {
13100
+ "description": "Current space topology",
13101
+ "href": "/spaces/{(%23%2Fdefinitions%2Fspace%2Fdefinitions%2Fidentity)}/topology",
13102
+ "method": "GET",
13103
+ "rel": "self",
13104
+ "targetSchema": {
13105
+ "$ref": "#/definitions/space-topology"
13106
+ },
13107
+ "title": "Topology"
13108
+ }
13109
+ ],
13110
+ "properties": {
13111
+ "version": {
13112
+ "$ref": "#/definitions/space-topology/definitions/version"
13113
+ },
13114
+ "apps": {
13115
+ "description": "The apps within this space",
13116
+ "type": [
13117
+ "array"
13118
+ ],
13119
+ "readOnly": true,
13120
+ "items": {
13121
+ "type": [
13122
+ "object"
13123
+ ],
13124
+ "properties": {
13125
+ "id": {
13126
+ "$ref": "#/definitions/app/definitions/id",
13127
+ "readOnly": true
13128
+ },
13129
+ "domains": {
13130
+ "example": [
13131
+ "example.com",
13132
+ "example.net"
13133
+ ],
13134
+ "readOnly": true,
13135
+ "type": [
13136
+ "array"
13137
+ ]
13138
+ },
13139
+ "formation": {
13140
+ "description": "formations for application",
13141
+ "items": {
13142
+ "$ref": "#/definitions/space-topology/definitions/formation"
13143
+ },
13144
+ "type": [
13145
+ "array"
13146
+ ],
13147
+ "readOnly": true
13148
+ }
13149
+ }
13150
+ }
13151
+ }
13152
+ }
13153
+ },
12745
13154
  "space-transfer": {
12746
13155
  "description": "Transfer spaces between enterprise teams with the same Enterprise Account.",
12747
13156
  "$schema": "http://json-schema.org/draft-04/hyper-schema",
@@ -13046,6 +13455,24 @@
13046
13455
  "object"
13047
13456
  ],
13048
13457
  "definitions": {
13458
+ "acm": {
13459
+ "readOnly": true,
13460
+ "type": [
13461
+ "boolean"
13462
+ ]
13463
+ },
13464
+ "ca_signed?": {
13465
+ "readOnly": true,
13466
+ "type": [
13467
+ "boolean"
13468
+ ]
13469
+ },
13470
+ "cert_domains": {
13471
+ "readOnly": true,
13472
+ "type": [
13473
+ "array"
13474
+ ]
13475
+ },
13049
13476
  "certificate_chain": {
13050
13477
  "description": "raw contents of the public certificate chain (eg: .crt or .pem file)",
13051
13478
  "example": "-----BEGIN CERTIFICATE----- ...",
@@ -13071,6 +13498,22 @@
13071
13498
  "string"
13072
13499
  ]
13073
13500
  },
13501
+ "display_name": {
13502
+ "description": "unique name for SSL endpoint",
13503
+ "example": "example",
13504
+ "pattern": "^[a-z][a-z0-9-]{2,29}$",
13505
+ "readOnly": false,
13506
+ "type": [
13507
+ "string"
13508
+ ]
13509
+ },
13510
+ "expires_at": {
13511
+ "readOnly": true,
13512
+ "format": "date-time",
13513
+ "type": [
13514
+ "string"
13515
+ ]
13516
+ },
13074
13517
  "id": {
13075
13518
  "description": "unique identifier of this SSL endpoint",
13076
13519
  "example": "01234567-89ab-cdef-0123-456789abcdef",
@@ -13090,6 +13533,12 @@
13090
13533
  }
13091
13534
  ]
13092
13535
  },
13536
+ "issuer": {
13537
+ "readOnly": true,
13538
+ "type": [
13539
+ "string"
13540
+ ]
13541
+ },
13093
13542
  "name": {
13094
13543
  "description": "unique name for SSL endpoint",
13095
13544
  "example": "example",
@@ -13116,6 +13565,25 @@
13116
13565
  "string"
13117
13566
  ]
13118
13567
  },
13568
+ "self_signed?": {
13569
+ "readOnly": true,
13570
+ "type": [
13571
+ "boolean"
13572
+ ]
13573
+ },
13574
+ "starts_at": {
13575
+ "readOnly": true,
13576
+ "format": "date-time",
13577
+ "type": [
13578
+ "string"
13579
+ ]
13580
+ },
13581
+ "subject": {
13582
+ "readOnly": true,
13583
+ "type": [
13584
+ "string"
13585
+ ]
13586
+ },
13119
13587
  "updated_at": {
13120
13588
  "description": "when endpoint was updated",
13121
13589
  "example": "2012-01-01T12:00:00Z",
@@ -13244,12 +13712,62 @@
13244
13712
  "created_at": {
13245
13713
  "$ref": "#/definitions/ssl-endpoint/definitions/created_at"
13246
13714
  },
13715
+ "display_name": {
13716
+ "$ref": "#/definitions/ssl-endpoint/definitions/display_name"
13717
+ },
13718
+ "domains": {
13719
+ "description": "domains associated with this endpoint",
13720
+ "type": [
13721
+ "array"
13722
+ ],
13723
+ "items": {
13724
+ "$ref": "#/definitions/domain/definitions/id"
13725
+ }
13726
+ },
13247
13727
  "id": {
13248
13728
  "$ref": "#/definitions/ssl-endpoint/definitions/id"
13249
13729
  },
13250
13730
  "name": {
13251
13731
  "$ref": "#/definitions/ssl-endpoint/definitions/name"
13252
13732
  },
13733
+ "ssl_cert": {
13734
+ "description": "certificate provided by this endpoint",
13735
+ "type": [
13736
+ "object"
13737
+ ],
13738
+ "properties": {
13739
+ "ca_signed?": {
13740
+ "$ref": "#/definitions/ssl-endpoint/definitions/ca_signed?"
13741
+ },
13742
+ "cert_domains": {
13743
+ "$ref": "#/definitions/ssl-endpoint/definitions/cert_domains"
13744
+ },
13745
+ "expires_at": {
13746
+ "$ref": "#/definitions/ssl-endpoint/definitions/expires_at"
13747
+ },
13748
+ "issuer": {
13749
+ "$ref": "#/definitions/ssl-endpoint/definitions/issuer"
13750
+ },
13751
+ "self_signed?": {
13752
+ "$ref": "#/definitions/ssl-endpoint/definitions/self_signed?"
13753
+ },
13754
+ "starts_at": {
13755
+ "$ref": "#/definitions/ssl-endpoint/definitions/starts_at"
13756
+ },
13757
+ "subject": {
13758
+ "$ref": "#/definitions/ssl-endpoint/definitions/subject"
13759
+ },
13760
+ "id": {
13761
+ "description": "unique identifier of this SSL certificate",
13762
+ "example": "01234567-89ab-cdef-0123-456789abcdef",
13763
+ "format": "uuid",
13764
+ "readOnly": true,
13765
+ "type": [
13766
+ "string"
13767
+ ]
13768
+ }
13769
+ }
13770
+ },
13253
13771
  "updated_at": {
13254
13772
  "$ref": "#/definitions/ssl-endpoint/definitions/updated_at"
13255
13773
  }
@@ -13303,7 +13821,7 @@
13303
13821
  },
13304
13822
  "name": {
13305
13823
  "description": "unique name of stack",
13306
- "example": "cedar-14",
13824
+ "example": "heroku-18",
13307
13825
  "readOnly": true,
13308
13826
  "type": [
13309
13827
  "string"
@@ -14863,6 +15381,15 @@
14863
15381
  "boolean",
14864
15382
  "null"
14865
15383
  ]
15384
+ },
15385
+ "addons-controls": {
15386
+ "description": "Whether add-on service rules should be applied to add-on installations",
15387
+ "example": true,
15388
+ "readOnly": false,
15389
+ "type": [
15390
+ "boolean",
15391
+ "null"
15392
+ ]
14866
15393
  }
14867
15394
  },
14868
15395
  "links": [
@@ -14888,6 +15415,9 @@
14888
15415
  "properties": {
14889
15416
  "whitelisting-enabled": {
14890
15417
  "$ref": "#/definitions/team-preferences/definitions/whitelisting-enabled"
15418
+ },
15419
+ "addons-controls": {
15420
+ "$ref": "#/definitions/team-preferences/definitions/addons-controls"
14891
15421
  }
14892
15422
  }
14893
15423
  },
@@ -14903,6 +15433,9 @@
14903
15433
  },
14904
15434
  "whitelisting-enabled": {
14905
15435
  "$ref": "#/definitions/team-preferences/definitions/whitelisting-enabled"
15436
+ },
15437
+ "addons-controls": {
15438
+ "$ref": "#/definitions/team-preferences/definitions/addons-controls"
14906
15439
  }
14907
15440
  }
14908
15441
  },
@@ -17020,6 +17553,9 @@
17020
17553
  "add-on": {
17021
17554
  "$ref": "#/definitions/add-on"
17022
17555
  },
17556
+ "allowed-add-on-service": {
17557
+ "$ref": "#/definitions/allowed-add-on-service"
17558
+ },
17023
17559
  "app-feature": {
17024
17560
  "$ref": "#/definitions/app-feature"
17025
17561
  },
@@ -17047,6 +17583,9 @@
17047
17583
  "archive": {
17048
17584
  "$ref": "#/definitions/archive"
17049
17585
  },
17586
+ "audit-trail-event": {
17587
+ "$ref": "#/definitions/audit-trail-event"
17588
+ },
17050
17589
  "build": {
17051
17590
  "$ref": "#/definitions/build"
17052
17591
  },
@@ -17083,9 +17622,6 @@
17083
17622
  "enterprise-account": {
17084
17623
  "$ref": "#/definitions/enterprise-account"
17085
17624
  },
17086
- "event": {
17087
- "$ref": "#/definitions/event"
17088
- },
17089
17625
  "filter-apps": {
17090
17626
  "$ref": "#/definitions/filter-apps"
17091
17627
  },
@@ -17206,6 +17742,9 @@
17206
17742
  "space-nat": {
17207
17743
  "$ref": "#/definitions/space-nat"
17208
17744
  },
17745
+ "space-topology": {
17746
+ "$ref": "#/definitions/space-topology"
17747
+ },
17209
17748
  "space-transfer": {
17210
17749
  "$ref": "#/definitions/space-transfer"
17211
17750
  },