Advertisement
Guest User

Database

a guest
May 1st, 2018
415
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 4.34 KB | None | 0 0
  1. {
  2.   "users": [
  3.     {
  4.       "id": 1,
  5.       "username": "tylerjohn",
  6.       "email": "tylerjohn@mail.com",
  7.       "password": "12345",
  8.       "role": 0,
  9.       "firstName": "Tyler",
  10.       "lastName": "John",
  11.       "phoneNo": "123456",
  12.       "cellNo": "12346",
  13.       "address": "12346",
  14.       "birthDate": 1525144282537
  15.     },
  16.     {
  17.       "id": 2,
  18.       "username": "tylerjohnmom",
  19.       "email": "tylerjohnmom@mail.com",
  20.       "password": "12345",
  21.       "role": 2,
  22.       "firstName": "Mom",
  23.       "lastName": "John",
  24.       "phoneNo": "12346",
  25.       "cellNo": "12346",
  26.       "address": "12346"
  27.     },
  28.     {
  29.       "id": 3,
  30.       "username": "bethjimenez",
  31.       "email": "bethjimenez@mail.com",
  32.       "password": "12345",
  33.       "role": 1,
  34.       "firstName": "Beth",
  35.       "lastName": "Jimenez",
  36.       "phoneNo": "",
  37.       "cellNo": "",
  38.       "address": ""
  39.     },
  40.     {
  41.       "id": 3,
  42.       "username": "admin",
  43.       "email": "admin@mail.com",
  44.       "password": "12345",
  45.       "role": 3,
  46.       "firstName": "Admin",
  47.       "lastName": "Admin",
  48.       "phoneNo": "123123",
  49.       "cellNo": "123123",
  50.       "address": "12312"
  51.     }
  52.   ],
  53.   "students": [
  54.     {
  55.       "id": 1,
  56.       "userId": 1,
  57.       "grade": 4,
  58.       "section": "J"
  59.     }
  60.   ],
  61.   "schedules": [
  62.     {
  63.       "id": 1,
  64.       "teacherId": 1,
  65.       "subjectId": 1,
  66.       "section": "J",
  67.       "startTime": "10:00 AM",
  68.       "endTime": "11:00AM",
  69.       "dayNames": ["MON", "TUE", "WED", "SAT"]
  70.     }
  71.   ],
  72.   "teachers": [
  73.     {
  74.       "id": 1,
  75.       "userId": 3,
  76.       "title": "Teacher"
  77.     }
  78.   ],
  79.   "subjects": [
  80.     {
  81.       "id": 1,
  82.       "title": "Math",
  83.       "description": "Mathaba",
  84.       "grade": 4
  85.     }
  86.   ],
  87.   "attendances": [
  88.     {
  89.       "id": 1,
  90.       "studentId": 1,
  91.       "scheduleId": 1,
  92.       "day": 1,
  93.       "month": 1,
  94.       "year": 2018,
  95.       "time": "11:00 PM",
  96.       "type": "LATE"
  97.     }
  98.   ],
  99.   "assignments": [
  100.     {
  101.       "id": 1,
  102.       "title": "Rosary",
  103.       "description": "Bring Rosary",
  104.       "teacherId": 1,
  105.       "subjectId": 1,
  106.       "scheduleId": 1,
  107.       "period": 2,
  108.       "file": "",
  109.       "type": "ASSIGNMENT"
  110.     }
  111.   ],
  112.   "tests": [
  113.     {
  114.       "id": 1,
  115.       "title": "Rosary",
  116.       "description": "Bring Rosary",
  117.       "teacherId": 1,
  118.       "subjectId": 1,
  119.       "scheduleId": 1,
  120.       "period": 2,
  121.       "file": "",
  122.       "type": "ASSIGNMENT"
  123.     }
  124.   ],
  125.   "activities": [
  126.     {
  127.       "id": 1,
  128.       "title": "Rosary",
  129.       "description": "Bring Rosary",
  130.       "teacherId": 1,
  131.       "subjectId": 1,
  132.       "scheduleId": 1,
  133.       "period": 2,
  134.       "file": "",
  135.       "type": "ASSIGNMENT"
  136.     }
  137.   ],
  138.   "handouts": [
  139.     {
  140.       "id": 1,
  141.       "title": "Rosary",
  142.       "description": "Bring Rosary",
  143.       "teacherId": 1,
  144.       "subjectId": 1,
  145.       "scheduleId": 1,
  146.       "period": 2,
  147.       "file": "",
  148.       "type": "ASSIGNMENT"
  149.     }
  150.   ],
  151.   "events": [
  152.     {
  153.       "id": 1,
  154.       "day": 12,
  155.       "month": 2,
  156.       "year": 2018,
  157.       "startTime": "10:00 AM",
  158.       "endTime": "10:00 PM",
  159.       "title": "No Classes",
  160.       "description": "Because...",
  161.       "type": "NO_CLASSES"
  162.     }
  163.   ],
  164.   "staff": [
  165.     {
  166.       "name": "Admission",
  167.       "location": "399",
  168.       "contact": "735-8577"
  169.     },
  170.     {
  171.       "name": "Accounting",
  172.       "location": "408",
  173.       "contact": "735-6977"
  174.     },
  175.     {
  176.       "name": "Admission",
  177.       "location": "399",
  178.       "contact": "735-8577"
  179.     },
  180.     {
  181.       "name": "Alumni",
  182.       "location": "310",
  183.       "contact": "735-8557"
  184.     },
  185.     {
  186.       "name": "Accounting",
  187.       "location": "408",
  188.       "contact": "735-6977"
  189.     },
  190.     {
  191.       "name": "Billing",
  192.       "location": "347",
  193.       "contact": "735-6968"
  194.     },
  195.     {
  196.       "name": "Budget",
  197.       "location": "338",
  198.       "contact": "735-8570"
  199.     },
  200.     {
  201.       "name": "Business Enterprise",
  202.       "location": "322",
  203.       "contact": "735-6969"
  204.     },
  205.     {
  206.       "name": "Cash",
  207.       "location": "337",
  208.       "contact": "735-6968"
  209.     },
  210.     {
  211.       "name": "Chaplain",
  212.       "location": "365",
  213.       "contact": "735-6969"
  214.     },
  215.     {
  216.       "name": "Comptroller",
  217.       "location": "349",
  218.       "contact": "735-6977"
  219.     },
  220.     {
  221.       "name": "Cultural Affairs",
  222.       "location": "441",
  223.       "contact": "735-6977"
  224.     }
  225.   ]
  226. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement