{ "openapi": "3.0.1", "info": { "title": "Team", "description": "" }, "paths": { "/v1/teams/{id}": { "get": { "description": "", "operationId": "Get_Team", "parameters": [ { "name": "id", "in": "path", "required": true, "allowEmptyValue": false, "schema": { "type": "integer", "format": "int32" } }, { "name": "api_key", "in": "query", "required": false, "allowEmptyValue": false, "schema": { "type": "string" } } ], "responses": { "2XX": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": { "team": { "type": "object", "properties": { "total_donations": { "type": "integer", "format": "int64" }, "owner": { "type": "object", "properties": { "last_name": { "type": "string" }, "id": { "type": "integer", "format": "int64" }, "first_name": { "type": "string" }, "email": { "type": "string" } } }, "target_amount": { "type": "integer", "format": "int64" }, "visible": { "type": "boolean" }, "description": { "type": "string" }, "created_at": { "type": "string", "format": "date-time" }, "title": { "type": "string" }, "target_amount_achieved": { "type": "boolean" }, "url": { "type": "string" }, "updated_at": { "type": "string", "format": "date-time" }, "total_amount": { "type": "string" }, "donate_url": { "type": "string" }, "members": { "type": "array", "items": { "type": "object", "properties": { "owner": { "type": "object", "properties": { "last_name": { "type": "string" }, "id": { "type": "integer", "format": "int64" }, "first_name": { "type": "string" }, "email": { "type": "string" } } }, "donate_url": { "type": "string" }, "last_name": { "type": "string" }, "id": { "type": "integer", "format": "int64" }, "first_name": { "type": "string" }, "team_captain": { "type": "boolean" }, "url": { "type": "string" } } } }, "ended": { "type": "boolean" }, "site_id": { "type": "integer", "format": "int64" }, "name": { "type": "string" }, "closed": { "type": "boolean" }, "id": { "type": "integer", "format": "int64" }, "slug": { "type": "string" }, "countable": { "type": "boolean" } } } } } } } } } } } } }