{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/wordnik/refs/heads/main/json-schema/wordnik-user-schema.json", "title": "User", "description": "User schema from Wordnik", "type": "object", "properties": { "displayName": { "type": "string" }, "email": { "type": "string", "format": "email" }, "faceBookId": { "type": "string" }, "id": { "type": "integer", "format": "int64" }, "password": { "type": "string", "format": "password" }, "status": { "type": "integer", "format": "int32" }, "userName": { "type": "string" }, "username": { "type": "string" } } }