<?xml version="1.0" encoding="UTF-8"?>
<users>
  <user id="1" active="true">
    <username>john_doe</username>
    <email>john@example.com</email>
    <profile>
      <firstName>John</firstName>
      <lastName>Doe</lastName>
      <role>admin</role>
    </profile>
    <authentication type="jwt">
      <lastLogin>2024-01-15T10:30:00Z</lastLogin>
      <failedAttempts>0</failedAttempts>
    </authentication>
    <settings>
      <logging level="INFO"/>
      <notifications enabled="true"/>
    </settings>
  </user>
  <user id="2" active="true">
    <username>jane_smith</username>
    <email>jane@example.com</email>
    <profile>
      <firstName>Jane</firstName>
      <lastName>Smith</lastName>
      <role>user</role>
    </profile>
    <authentication type="jwt">
      <lastLogin>2024-01-14T16:45:00Z</lastLogin>
      <failedAttempts>1</failedAttempts>
    </authentication>
    <settings>
      <logging level="WARN"/>
      <notifications enabled="false"/>
    </settings>
  </user>
  <user id="3" active="false">
    <username>old_user</username>
    <email>old@example.com</email>
    <profile>
      <firstName>Old</firstName>
      <lastName>User</lastName>
      <role>user</role>
    </profile>
    <authentication type="jwt">
      <lastLogin>2023-12-01T09:15:00Z</lastLogin>
      <failedAttempts>3</failedAttempts>
    </authentication>
    <settings>
      <logging level="ERROR"/>
      <notifications enabled="true"/>
    </settings>
  </user>
</users> 