{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/LoginRequest", "title": "LoginRequest", "type": "object", "required": [ "email", "password" ], "properties": { "email": { "type": "string", "example": "test@cisco.com", "description": "Email for the RedSky account." }, "password": { "type": "string", "example": "Test@123", "description": "Password for the RedSky account." }, "redSkyOrgId": { "type": "string", "example": "2ff43e05-af11-41ff-91b6-87a3b509f4z4", "description": "The RedSky organization ID for the organization which can be found in the RedSky portal." } } }