{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ListApplicationDevelopersResponse", "title": "ListApplicationDevelopersResponse", "type": "object", "properties": { "meta": { "$ref": "#/components/schemas/PaginatedMeta" }, "data": { "type": "array", "items": { "$ref": "#/components/schemas/ApplicationDeveloperDetailed" } } }, "example": { "meta": { "page": { "number": 1, "size": 10, "total": 4 } }, "data": [ { "id": "8cd9feff-b4da-4a9f-ba49-cbe83c75ff22", "email": "[email protected]", "full_name": "Jane Dev" }, { "id": "4cd9feff-b4da-4a9f-ba49-cbe83c75ff22", "email": "[email protected]", "full_name": "John Dev" }, { "id": "6cd9feff-b4da-4a9f-ba49-cbe83c75ff22", "email": "[email protected]", "full_name": "Jim Dev" }, { "id": "7cd9feff-b4da-4a9f-ba49-cbe83c75ff22", "email": "[email protected]", "full_name": "Jan Dev" } ] }, "additionalProperties": false, "required": [ "data", "meta" ] }