{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SignInRequest", "title": "SignInRequest", "type": "object", "required": [ "email", "password" ], "properties": { "email": { "type": "string", "format": "email" }, "password": { "type": "string", "format": "password" }, "tenantId": { "type": "string" } } }