{ "type": "array", "items": { "catfact": { "type": "object", "required": [ "status", "type", "text" ], "properties": { "status": { "type": "object", "required": [ "verified" ], "properties": { "verified": { "type": "boolean", "description": "Is this fact verified", "example": true }, "sentCount": { "type": "integer", "description": "amount of times sent", "example": 1 } } }, "type": { "type": "string", "description": "Catfact type (usually \"cat\")", "example": "cat" }, "deleted": { "type": "boolean", "description": "Is this Catfact deleted", "example": false }, "_id": { "type": "string", "description": "Catfact ID", "example": "58e008800aac31001185ed07" }, "user": { "type": "string", "description": "Catfact user", "example": "58e007480aac31001185ecef" }, "text": { "type": "string", "description": "Catfact text to return", "example": "Wikipedia has a recording of a cat meowing, because why not?" }, "__v": { "type": "integer", "description": "don't know", "example": 0 }, "source": { "type": "string", "description": "Catfact source", "example": "user" }, "updatedAt": { "type": "string", "description": "Catfact updated at (datetime in string format)", "example": "2020-08-23T20:20:01.611Z" }, "createdAt": { "type": "string", "description": "Catfact created at (datetime in string format)", "example": "2018-03-06T21:20:03.505Z" }, "used": { "type": "boolean", "description": "Is Catfact used", "example": false } } } } }