File tree Expand file tree Collapse file tree 3 files changed +36
-1
lines changed Expand file tree Collapse file tree 3 files changed +36
-1
lines changed Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change 2901229012 "type": {
2901329013 "$ref": "#/components/schemas/AddonType"
2901429014 },
29015+ "title": {
29016+ "type": "string",
29017+ "description": "Human-friendly title of the add-on or SKU."
29018+ },
29019+ "unit": {
29020+ "type": "string",
29021+ "description": "Unit for quantity-based add-ons when applicable."
29022+ },
29023+ "allowed_values": {
29024+ "description": "Allowed values for the add-on depending on user role and options.",
29025+ "type": "array",
29026+ "items": {
29027+ "oneOf": [
29028+ {
29029+ "type": "string"
29030+ },
29031+ {
29032+ "type": "integer"
29033+ }
29034+ ]
29035+ }
29036+ },
2901529037 "created_at": {
2901629038 "$ref": "#/components/schemas/CreatedAt"
2901729039 },
Original file line number Diff line number Diff line change @@ -21119,6 +21119,19 @@ components:
2111921119 $ref: '#/components/schemas/ProjectID'
2112021120 type:
2112121121 $ref: '#/components/schemas/AddonType'
21122+ title:
21123+ type: string
21124+ description: Human-friendly title of the add-on or SKU.
21125+ unit:
21126+ type: string
21127+ description: Unit for quantity-based add-ons when applicable.
21128+ allowed_values:
21129+ description: Allowed values for the add-on depending on user role and options.
21130+ type: array
21131+ items:
21132+ oneOf:
21133+ - type: string
21134+ - type: integer
2112221135 created_at:
2112321136 $ref: '#/components/schemas/CreatedAt'
2112421137 updated_at:
You can’t perform that action at this time.
0 commit comments