{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/api_user_v1_Password", "title": "api_user_v1_Password", "type": "object", "properties": { "password_id": { "type": "string", "description": "The unique ID of a specific password" }, "requires_reset": { "type": "boolean", "description": "Indicates whether this password requires a password reset" } }, "required": [ "password_id", "requires_reset" ] }