{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://raw.githubusercontent.com/api-evangelist/labguru/main/json-schema/createSession.json", "title": "createSession", "type": "object", "required": [ "login", "password" ], "properties": { "login": { "type": "string", "description": "E-mail", "example": "[email protected]" }, "password": { "type": "string", "description": "password" }, "account_id": { "type": "integer", "description": "(optional) The account id to generate the token for" } } }