Added dummy data for testing

This commit is contained in:
Viswamedha Nalabotu 2026-01-20 02:59:52 +00:00
parent e99c07ef19
commit eaba88decd
4 changed files with 75 additions and 2 deletions

View file

@ -10,14 +10,38 @@
"updated_at": "2026-01-17T15:36:29.304Z",
"uuid": "cfdb469e-d4ec-42f7-bc06-0fa35e91fdcc",
"email_address": "a@gmail.com",
"first_name": "a",
"last_name": "a",
"first_name": "Random",
"last_name": "User",
"date_of_birth": "2001-01-01",
"bio": "",
"timezone": "UTC",
"avatar_url": "",
"is_active": true,
"is_staff": true,
"is_manager": true,
"groups": [],
"user_permissions": []
}
},
{
"model": "users.user",
"pk": 2,
"fields": {
"password": "pbkdf2_sha256$1000000$Xec1oHXVNS14f1vcEAa7OQ$RKs38j8zsCvbfIqWcSnAOaJ1ZzSf/fm5LvKYuAN2vq0=",
"last_login": "2026-01-18T18:37:52.075Z",
"is_superuser": false,
"created_at": "2026-01-18T18:37:51.896Z",
"updated_at": "2026-01-18T18:37:51.896Z",
"uuid": "1ddc7540-bbef-43d5-963b-ffd27e02c7d3",
"email_address": "b@gmail.com",
"first_name": "Example",
"last_name": "Employee",
"date_of_birth": null,
"bio": "",
"timezone": "UTC",
"avatar_url": "",
"is_active": true,
"is_staff": false,
"is_manager": false,
"groups": [],
"user_permissions": []

14
data/2_Organizations.json Normal file
View file

@ -0,0 +1,14 @@
[
{
"model": "orgs.organization",
"pk": 1,
"fields": {
"created_at": "2026-01-18T15:29:10.238Z",
"updated_at": "2026-01-18T15:29:10.238Z",
"uuid": "c64ed6a5-f444-464c-a408-e73b71890acc",
"name": "Example Organization",
"description": "An example organization for testing purposes.",
"owner": 1
}
}
]

13
data/3_Roles.json Normal file
View file

@ -0,0 +1,13 @@
[
{
"model": "orgs.role",
"pk": 1,
"fields": {
"created_at": "2026-01-18T18:35:26.413Z",
"updated_at": "2026-01-18T18:35:26.413Z",
"name": "FNIRS Specialist",
"uuid": "39d04047-93bc-446e-8ec9-6fdf0839e48c",
"organization": 1
}
}
]

22
data/4_Memberships.json Normal file
View file

@ -0,0 +1,22 @@
[
{
"model": "orgs.rolemembership",
"pk": 1,
"fields": {
"created_at": "2026-01-18T18:40:00.277Z",
"updated_at": "2026-01-18T18:40:00.277Z",
"user": 2,
"role": 1
}
},
{
"model": "orgs.organizationmembership",
"pk": 1,
"fields": {
"created_at": "2026-01-18T18:40:16.327Z",
"updated_at": "2026-01-18T18:40:16.327Z",
"user": 2,
"organization": 1
}
}
]