addedInput schema / properties / count / maximum
Added value: +9007199254740991
addedInput schema / properties / count / minimum
Added value: +1
changedInput schema / properties / count / type
Previous value: -"number"New value: +"integer"
changedInput schema / properties / gender / description
Previous value: -"The gender of the person data. The accepted gender values are male and female"New value: +"The person's gender"
addedInput schema / properties / gender / enum
Added value: +[
+ "male",
+ "female"
+]
changedInput schema / properties / language / description
Previous value: -"The language of the person data. The available languages are Hausa, Igbo and Yoruba"New value: +"The person's language"
addedInput schema / properties / language / enum
Added value: +[
+ "hausa",
+ "igbo",
+ "yoruba"
+]
changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "items": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "address": {
+ "type": "string"
+ },
+ "email": {
+ "type": "string"
+ },
+ "firstName": {
+ "type": "string"
+ },
+ "fullName": {
+ "type": "string"
+ },
+ "lastName": {
+ "type": "string"
+ },
+ "lga": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "phone": {
+ "type": "string"
+ },
+ "state": {
+ "type": "string"
+ },
+ "title": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "title",
+ "firstName",
+ "lastName",
+ "fullName",
+ "email",
+ "phone",
+ "address",
+ "state",
+ "lga"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "items"
+ ],
+ "type": "object"
+}