changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "count": {
+ "description": "Number of users returned",
+ "type": "number"
+ },
+ "gender": {
+ "description": "Gender filter applied (male or female)",
+ "type": "string"
+ },
+ "users": {
+ "description": "Array of formatted user profiles",
+ "items": {
+ "properties": {
+ "age": {
+ "description": "Age in years",
+ "type": "number"
+ },
+ "cell": {
+ "description": "Mobile/cell number",
+ "type": "string"
+ },
+ "date_of_birth": {
+ "description": "ISO date of birth",
+ "type": "string"
+ },
+ "email": {
+ "description": "Email address",
+ "type": "string"
+ },
+ "gender": {
+ "description": "Gender (male or female)",
+ "type": "string"
+ },
+ "location": {
+ "description": "Address information",
+ "properties": {
+ "city": {
+ "description": "City name",
+ "type": "string"
+ },
+ "country": {
+ "description": "Country name",
+ "type": "string"
+ },
+ "postcode": {
+ "description": "Postal code",
+ "type": "string"
+ },
+ "state": {
+ "description": "State or region",
+ "type": "string"
+ },
+ "street": {
+ "description": "Street address",
+ "type": "string"
+ }
+ },
+ "required": [
+ "street",
+ "city",
+ "state",
+ "country",
+ "postcode"
+ ],
+ "type": "object"
+ },
+ "name": {
+ "description": "Full name with title",
+ "type": "string"
+ },
+ "nationality": {
+ "description": "Nationality code",
+ "type": "string"
+ },
+ "phone": {
+ "description": "Phone number",
+ "type": "string"
+ },
+ "picture": {
+ "description": "URL to medium-sized profile picture",
+ "type": "string"
+ },
+ "username": {
+ "description": "Login username",
+ "type": "string"
+ },
+ "uuid": {
+ "description": "Unique user identifier",
+ "type": "string"
+ }
+ },
+ "required": [
+ "gender",
+ "name",
+ "email",
+ "username",
+ "uuid",
+ "date_of_birth",
+ "age",
+ "phone",
+ "cell",
+ "nationality",
+ "location",
+ "picture"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "count",
+ "gender",
+ "users"
+ ],
+ "type": "object"
+}