addedInput schema / properties / cursor
Added value: +{
+ "type": "string"
+}
addedInput schema / properties / limit
Added value: +{
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+}
addedInput schema / properties / owner
Added value: +{
+ "description": "An owner's id, to keep its entities",
+ "type": "string"
+}
changedOutput schema / additionalProperties
Previous value: -{}New value: +false
addedOutput schema / properties / entities
Added value: +{
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "id": {
+ "type": "string"
+ },
+ "name": {
+ "type": "string"
+ },
+ "owner": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "tagline": {
+ "type": "string"
+ },
+ "type": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "type",
+ "name",
+ "tagline",
+ "owner"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+}
addedOutput schema / properties / page
Added value: +{
+ "additionalProperties": false,
+ "properties": {
+ "hasMore": {
+ "type": "boolean"
+ },
+ "nextCursor": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "returned": {
+ "maximum": 9007199254740991,
+ "minimum": 0,
+ "type": "integer"
+ },
+ "total": {
+ "maximum": 9007199254740991,
+ "minimum": 0,
+ "type": "integer"
+ }
+ },
+ "required": [
+ "total",
+ "returned",
+ "hasMore",
+ "nextCursor"
+ ],
+ "type": "object"
+}
addedOutput schema / properties / type
Added value: +{
+ "type": "string"
+}
changedOutput schema / required
Previous value: -[
- "model"
-]New value: +[
+ "type",
+ "entities",
+ "page",
+ "model"
+]