{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AddDeveloperToTeamRequest", "title": "AddDeveloperToTeamRequest", "description": "Add a developer to a team by specifying the developer ID.", "type": "object", "properties": { "id": { "type": "string", "format": "uuid", "example": "df120cb4-f60b-47bc-a2f8-6a28e6a3c63b", "writeOnly": true } }, "example": { "id": "df120cb4-f60b-47bc-a2f8-6a28e6a3c63b" }, "required": [ "id" ] }