{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ListBasicDevelopersResponse", "title": "ListBasicDevelopersResponse", "description": "A paginated list of basic information about a set of developers.", "type": "object", "properties": { "meta": { "$ref": "#/components/schemas/PaginatedMeta" }, "data": { "type": "array", "items": { "$ref": "#/components/schemas/BasicDeveloper" } } }, "example": { "meta": { "page": { "number": 1, "size": 10, "total": 2 } }, "data": [ { "id": "7f9fd312-a987-4628-b4c5-bb4f4fddd5f7", "email": "james.woods@email.com", "full_name": "James Woods", "active": true, "created_at": "2022-08-17T17:46:57.52Z", "updated_at": "2022-10-03T17:00:00.00Z" }, { "id": "4f9fd312-a987-4628-b4c5-bb4f4fddd5f7", "email": "jill.stone@email.com", "full_name": "Jill Stone", "active": false, "created_at": "2022-07-17T17:46:57.52Z", "updated_at": "2022-10-03T17:00:00.00Z" } ] } }