You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: openapi/schema.json
+40Lines changed: 40 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -2276,6 +2276,8 @@
2276
2276
"id",
2277
2277
"type",
2278
2278
"tag",
2279
+
"labels",
2280
+
"blocks",
2279
2281
"locations"
2280
2282
],
2281
2283
"properties": {
@@ -2286,6 +2288,13 @@
2286
2288
],
2287
2289
"description": "An optional alias for this asset. This is purely for convenience\nin searching for and identifying multiple instances of similar\nassets."
2288
2290
},
2291
+
"blocks": {
2292
+
"type": "array",
2293
+
"items": {
2294
+
"$ref": "#/components/schemas/Block"
2295
+
},
2296
+
"description": "An array of reasons why the asset could be blocked\nby anything, like a label or maintenance job. This field is\nimmutable and only affected by external fields."
2297
+
},
2289
2298
"bundle": {
2290
2299
"type": [
2291
2300
"string",
@@ -2299,6 +2308,14 @@
2299
2308
"format": "uuid",
2300
2309
"description": "The unique identifier for this asset. This property is immutable."
2301
2310
},
2311
+
"labels": {
2312
+
"type": "array",
2313
+
"items": {
2314
+
"type": "string",
2315
+
"format": "uuid"
2316
+
},
2317
+
"description": "An array of labels attached to this asset. This field is only\nmutable via its dedicated field endpoints."
0 commit comments