Skip to content

Commit

Permalink
Add environments to schema
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomboyo committed Dec 9, 2024
1 parent a31f0bb commit 9fbc178
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 0 deletions.
13 changes: 13 additions & 0 deletions swagger/openapi.dev.json
Original file line number Diff line number Diff line change
Expand Up @@ -3808,6 +3808,19 @@
"example": "8.1, 7.5, 9.9",
"type": "string",
"maxLength": 255
},
"environments": {
"description": "UUIDs of environments (\"content templates\") the system is subscribed to.",
"example": [
"262e621d10ae4475ab5732b39a9160b2"
],
"type": "array",
"items": {
"description": "An environment UUID.",
"type": "string",
"example": "262e621d10ae4475ab5732b39a9160b2, 01fd642e02de4e6da2da6172081a971e",
"pattern": "[0-9a-f]{32}"
}
}
}
},
Expand Down
13 changes: 13 additions & 0 deletions swagger/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -3675,6 +3675,19 @@
"example": "8.1, 7.5, 9.9",
"type": "string",
"maxLength": 255
},
"environments": {
"description": "UUIDs of environments (\"content templates\") the system is subscribed to.",
"example": [
"262e621d10ae4475ab5732b39a9160b2"
],
"type": "array",
"items": {
"description": "An environment UUID.",
"type": "string",
"example": "262e621d10ae4475ab5732b39a9160b2, 01fd642e02de4e6da2da6172081a971e",
"pattern": "[0-9a-f]{32}"
}
}
}
},
Expand Down
9 changes: 9 additions & 0 deletions swagger/system_profile.spec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -592,6 +592,15 @@ $defs:
example: "8.1, 7.5, 9.9"
type: string
maxLength: 255
environments:
description: UUIDs of environments ("content templates") the system is subscribed to.
example: ["262e621d10ae4475ab5732b39a9160b2"]
type: array
items:
description: An environment UUID.
type: string
example: "262e621d10ae4475ab5732b39a9160b2, 01fd642e02de4e6da2da6172081a971e"
pattern: '[0-9a-f]{32}'
system_purpose:
description: Object for system purpose information
type: object
Expand Down

0 comments on commit 9fbc178

Please sign in to comment.