{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ListDevelopersResponse", "title": "ListDevelopersResponse", "type": "object", "properties": { "meta": { "$ref": "#/components/schemas/PaginatedMeta" }, "data": { "type": "array", "items": { "$ref": "#/components/schemas/PortalDeveloper" } } }, "example": { "meta": { "page": { "number": 1, "size": 10, "total": 4 } }, "data": [ { "id": "8cd9feff-b4da-4a9f-ba49-cbe83c75ff22", "email": "jane.developer@example.com", "full_name": "Jane Dev", "status": "approved", "created_at": "2022-11-15T20:37:41.457Z", "updated_at": "2022-11-15T20:37:47.456Z" }, { "id": "4cd9feff-b4da-4a9f-ba49-cbe83c75ff22", "email": "john.developer@example.com", "full_name": "John Dev", "status": "revoked", "created_at": "2022-11-15T20:37:41.457Z", "updated_at": "2022-11-15T20:37:47.456Z" }, { "id": "6cd9feff-b4da-4a9f-ba49-cbe83c75ff22", "email": "john.developer@example.com", "full_name": "Jim Dev", "status": "pending", "created_at": "2022-11-15T20:37:41.457Z", "updated_at": "2022-11-15T20:37:47.456Z" }, { "id": "7cd9feff-b4da-4a9f-ba49-cbe83c75ff22", "email": "john.developer@example.com", "full_name": "Jan Dev", "status": "rejected", "created_at": "2022-11-15T20:37:41.457Z", "updated_at": "2022-11-15T20:37:47.456Z" } ] }, "additionalProperties": false, "required": [ "data", "meta" ] }