changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "limit": {
+ "description": "Limit of users returned",
+ "type": "number"
+ },
+ "skip": {
+ "description": "Number of users skipped",
+ "type": "number"
+ },
+ "total": {
+ "description": "Total user count",
+ "type": "number"
+ },
+ "users": {
+ "description": "List of users",
+ "items": {
+ "properties": {
+ "email": {
+ "description": "Email address",
+ "type": "string"
+ },
+ "firstName": {
+ "description": "First name",
+ "type": "string"
+ },
+ "gender": {
+ "description": "Gender",
+ "type": "string"
+ },
+ "id": {
+ "description": "User ID",
+ "type": "number"
+ },
+ "image": {
+ "description": "Profile image URL",
+ "type": "string"
+ },
+ "lastName": {
+ "description": "Last name",
+ "type": "string"
+ },
+ "phone": {
+ "description": "Phone number",
+ "type": "string"
+ },
+ "username": {
+ "description": "Username",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "type": "object"
+}