addedInput schema / properties / domain / enum
Added value: +[
+ "enterprise-attack",
+ "mobile-attack",
+ "ics-attack"
+]
addedInput schema / properties / limit
Added value: +{
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Limit"
+}
addedInput schema / properties / offset
Added value: +{
+ "default": 0,
+ "title": "Offset",
+ "type": "integer"
+}
addedOutput schema / $defs
Added value: +{
+ "GroupResult": {
+ "description": "Single group entry in get_groups results.",
+ "properties": {
+ "aliases": {
+ "items": {
+ "type": "string"
+ },
+ "title": "Aliases",
+ "type": "array"
+ },
+ "description": {
+ "title": "Description",
+ "type": "string"
+ },
+ "id": {
+ "title": "Id",
+ "type": "string"
+ },
+ "name": {
+ "title": "Name",
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "name",
+ "description",
+ "aliases"
+ ],
+ "title": "GroupResult",
+ "type": "object"
+ },
+ "Pagination": {
+ "description": "Pagination metadata returned alongside paged list results.",
+ "properties": {
+ "has_more": {
+ "title": "Has More",
+ "type": "boolean"
+ },
+ "limit": {
+ "title": "Limit",
+ "type": "integer"
+ },
+ "offset": {
+ "title": "Offset",
+ "type": "integer"
+ },
+ "total": {
+ "title": "Total",
+ "type": "integer"
+ }
+ },
+ "required": [
+ "total",
+ "offset",
+ "limit",
+ "has_more"
+ ],
+ "title": "Pagination",
+ "type": "object"
+ }
+}
removedOutput schema / additionalProperties
Removed value: -true
addedOutput schema / description
Added value: +"get_groups result."
addedOutput schema / properties
Added value: +{
+ "groups": {
+ "items": {
+ "$ref": "#/$defs/GroupResult"
+ },
+ "title": "Groups",
+ "type": "array"
+ },
+ "pagination": {
+ "$ref": "#/$defs/Pagination"
+ }
+}
addedOutput schema / required
Added value: +[
+ "groups",
+ "pagination"
+]
changedOutput schema / title
Previous value: -"get_groupsDictOutput"New value: +"GroupsResult"