-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlif-sample.json
More file actions
1141 lines (1140 loc) · 56.3 KB
/
lif-sample.json
File metadata and controls
1141 lines (1140 loc) · 56.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"Assessment": [
{
"AssessmentPerformanceLevel": [
{
"descriptiveFeedback": "Great job! You've reached the expected level of performance.",
"identifier": "APL-12345",
"label": "Proficient",
"performanceLowerLevel": 75.0,
"performanceUpperLevel": 100.0
}
],
"alternateName": "AssessmentAlias123",
"approvedBy": ["Educational Standards Organization"],
"assessmentLanguage": ["en"],
"assessmentLevel": "11",
"assessmentLevelOther": "Advanced Placement",
"assessmentObjective": "Measure student's understanding of advanced algebra.",
"assessmentTypeAdministered": "REGASSWOACC",
"audienceLevelType": "Undergraduate",
"awardedByOrganization": {
"$ref": "#/components/schemas/Organization"
},
"category": "Standardized Test",
"contentStandard": "Statewide Standard",
"contentStandardStatus": "missing at will",
"creditUnitTypeDescription": "Semester Credits",
"creditValue": 0.5,
"ctid": "CTID-67890",
"dateEffective": "2024-08-01",
"dateIssued": "2024-08-15",
"deliveryType": ["Online"],
"demonstratesCompetency": {
"$ref": "#/components/schemas/Competency"
},
"description": "An assessment designed to evaluate algebra skills in high school students.",
"expirationDate": "2025-08-01",
"generalizationOf": "Algebra General Assessment",
"goalDescription": "Assess algebra proficiency",
"goalSuccessCriteria": ["Score above 75%"],
"identifier": ["APL-67890"],
"industryType": ["Education"],
"informationSourceId": "INFO-12345",
"isPartOfSubtest": "Algebra 1 Subtest",
"keyword": ["algebra", "math", "test"],
"methodDescription": "Online multiple-choice questions.",
"methodType": ["assessMethod:Exam"],
"moreInformation": "This test is crucial for assessing algebra readiness.",
"name": "Algebra Proficiency Test",
"occupationType": ["Mathematics"],
"offerredByOrganization": {
"$ref": "#/components/schemas/Organization"
},
"otherDocuments": "https://example.com/docs/algebra_assessment.pdf",
"ownedBy": "Education Board XYZ",
"provider": "Assessment Provider Inc.",
"purpose": "Assessment of student's progress",
"revisionDate": "2024-07-01",
"scoreMetricType": "Scale score",
"scoringMethodDescription": "Scoring based on correct answers.",
"scoringMethodExample": "Correct answers = 85%, Score = Proficient",
"shortName": "AlgTest",
"specialisationOf": "Mathematics Assessment",
"status": "Published",
"subject": ["Mathematics", "Algebra"],
"subjectWebpage": "https://example.com/algebra_test",
"type": "Standardized Assessment"
}
],
"CompetencyFramework": [
{
"Association": [
{
"competencyAssociationConnectionCitation": "Smith, J. (2020). Integrating Core Competencies in Higher Education. Educational Journal.",
"competencyAssociationDestinationName": "Advanced Data Analysis",
"competencyAssociationDestinationUri": "https://www.educationstandards.org/competency/advanced-data-analysis",
"competencyAssociationOriginName": "Basic Statistical Methods",
"competencyAssociationOriginUri": "https://www.educationstandards.org/competency/basic-statistical-methods",
"competencyAssociationType": "Prerequisite",
"competencyAssociationUri": "https://www.educationstandards.org/associations/basic-to-advanced",
"competencyAssociationWeight": [2],
"offerredByOrganization": {
"$ref": "#/components/schemas/Organization"
}
}
],
"Competency": [
{
"Accessibility": [
{
"physicalCapabilityType": ["Mobility", "Strength"],
"sensoryCapabilityType": ["Visual", "Auditory"]
}
],
"CompetencyAlignments": [
{
"alignmentType": "Curriculum Standard",
"alignsToText": "Next Generation Science Standards (NGSS) for High School",
"alignsToType": "Science Education Standard",
"alignsToUri": "https://www.nextgenscience.org/",
"identifier": "NGSS-HS-Alignment-001",
"uri": "https://www.educationalorg.org/alignments/ngss-highschool"
}
],
"Identifier": [
{
"identifier": "Comp-123",
"identifierType": "URI",
"identifierVerification": "JWT",
"issuedByOrganization": {
"$ref": "#/components/schemas/Organization"
}
}
],
"ProficiencyDefinition": {
"ProficiencyLevel": [
{
"competencyId": ["Comp-123", "Comp-456"],
"order": 3,
"proficiencyStatement": "Able to apply advanced principles and practices effectively in a professional setting.",
"uri": ["https://www.edustandards.org/competency/proficiency-level-3"],
"value": "Advanced"
}
],
"allowedValues": ["Beginner", "Intermediate", "Advanced", "Expert"],
"competencyUri": "https://www.edustandards.org/competency/data-analysis",
"desiredProficiencyLevelUri": "https://www.edustandards.org/competency-levels/advanced",
"identifier": "Competency-789",
"proficiencyScaleType": "Percent",
"requiredProficiencyLevelUri": ["https://www.edustandards.org/competency-levels/intermediate"],
"requiredValue": "Intermediate",
"valueMax": "Expert",
"valueMin": "Beginner"
},
"abbreviatedStatement": "Basic Math Skills",
"ageRangeMax": 18.0,
"ageRangeMin": 12.0,
"altCodedNotation": "MTH-101",
"alternativeNode": ["https://www.edustandards.org/alternative/math/basic"],
"code": "101",
"currentVersionIndicator": true,
"entailedCompetency": {
"$ref": "#/components/schemas/CompetencyFramework/properties/Competency"
},
"environmentalHazard": ["None"],
"hasProgressionLevel": "Level 1",
"informationSourceId": "21EC2020-3AEA-1069-A2DD-08002B30309D",
"keywords": ["math", "algebra", "geometry"],
"language": "aar",
"level": "1043",
"license": "Creative Commons",
"name": "Introduction to Mathematics",
"requiresCredential": {
"$ref": "#/components/schemas/Credential"
},
"rightsHolder": "Education Standards Organization",
"secondaryIdentifiers": ["SI-001", "SI-002"],
"statement": "Understand and apply basic principles of algebra and geometry.",
"testibilityType": "Single Indicator",
"textComplexityMaximumValue": 8,
"textComplexityMinimumValue": 5,
"textComplexitySystem": "Flesch-Kincaid Grade Level",
"typeUrl": "https://www.edustandards.org/types/math",
"uri": "https://www.edustandards.org/competency/math101",
"validEndDate": "2030-12-31",
"validStartDate": "2020-01-01",
"version": "2.0",
"weight": 1.5
}
],
"CompetencyAlignments": [
{
"alignmentType": "Educational Standard",
"alignsToText": "Common Core State Standards for Mathematics",
"alignsToType": "Standard",
"alignsToUri": "https://www.corestandards.org/Math",
"identifier": "Align-2024-Math-CCSS",
"uri": "https://www.example.org/resource/2024/Math/Alignment"
}
],
"creator": "National Board of Education",
"description": "This framework outlines the expected competencies for secondary education mathematics across all states.",
"id": "CF-2024-Math-002",
"informationSourceId": "123456789",
"jurisdiction": "United States",
"language": "English",
"lastChangeDateTime": "2024-04-01T00:00:00Z",
"license": "CC BY 4.0",
"name": "Secondary Education Mathematics Competency Framework",
"officialSourceUrl": "https://www.education.gov/competency-frameworks/math-secondary",
"publicationDate": "2024-01-01",
"publicationStatus": "Published",
"publisher": "National Board of Education",
"rights": "All rights reserved by the National Board of Education",
"sequence": ["Math-01", "Math-02", "Math-03"],
"subject": "Mathematics",
"subjectUri": ["https://www.education.gov/subject/mathematics"],
"uri": "https://www.education.gov/uri/competency-frameworks/math-secondary",
"validEndDate": "2030-12-31",
"validEndDateStatus": "missing at will",
"validStartDate": "2024-01-01",
"validStartDateStatus": "missing at will",
"version": "1.0"
}
],
"Course": [
{
"Grade": [
{
"courseGPAApplicability": "Applicable"
}
],
"Identifier": [
{
"identifier": "MATH336",
"identifierType": "Course Code",
"identifierVerification": "JWT",
"issuedByOrganization": {
"$ref": "#/components/schemas/Organization"
}
}
],
"accreditedByOrganization": {
"$ref": "#/components/schemas/Organization"
},
"approvedByOrganization": {
"$ref": "#/components/schemas/Organization"
},
"assessmentMethodDescription": "Multiple choice and essay questions to evaluate comprehension and critical thinking.",
"assessmentMethodType": ["assessMethod:Artifact", "assessMethod:Performance"],
"assessmentReportingMethod": "Letter grade/mark",
"audienceLevelType": ["Undergraduate", "Graduate"],
"availabilityListing": ["University Course Catalog"],
"availableOnlineAt": ["https://university.edu/courses/online"],
"courseAcademicGradeScaleCode": "A-F",
"courseApplicableEducationLevel": ["audLevel:PostSecondaryLevel"],
"courseBeginDate": "2024-09-01",
"courseCertificationDescription": "Certifies advanced proficiency in statistical analysis.",
"courseCodeSystem": "University",
"courseCreditBasisType": "Regular",
"courseCreditLevelType": "Undergraduate",
"courseCreditUnits": "Units",
"courseCreditValue": 3.0,
"courseDepartmentName": "Department of Mathematics",
"courseEndDate": "2024-12-15",
"courseFundingProgram": "Federal Education Grant",
"courseHonorsType": "Honors",
"courseID": "MATH336",
"courseInstructionMethod": "Lecture",
"courseInstructionSiteName": ["Main Campus Building A"],
"courseInstructionSiteType": "OnCampus",
"courseInteractionMode": "Synchronous",
"courseLevelCharacteristic": "Advanced placement course",
"courseLevelType": "Honors",
"courseNumber": "MATH336",
"courseRepeatabilityMaximumNumber": 1,
"courseSectionTimeRequiredFor": 120.0,
"courseStandardAlignment": true,
"courseSubjectAbbreviation": "MATH",
"creditUnitTypeDescription": "Semester credit hours",
"ctid": "ctid123456789",
"description": "Advanced Statistics covers probability theory, regression analysis, and experimental design.",
"estimatedCost": ["Tuition: $1,500", "Lab fees: $200"],
"estimatedDuration": ["One semester, approximately 15 weeks"],
"financialAssistance": ["Available scholarships for qualified students"],
"identifier": "MATH336",
"inLanguage": ["English"],
"informationSourceId": "789456123",
"instructionalDelivery": "FaceToFace",
"keyword": ["statistics", "advanced", "probability"],
"learningStandard": ["National Standards for Advanced Mathematical Studies"],
"lifeCycleStatusType": "lifeCycle:Active",
"name": "Advanced Statistics",
"offeredBy": ["University of Example"],
"ownedBy": ["https://university.edu/mathematics", "https://university.edu"],
"recognizedBy": ["Industry Certification Boards"],
"regulatedBy": ["https://state.gov/board-of-higher-education"],
"resultType": "Percent",
"subject": ["Mathematics"],
"subjectWebpage": "https://university.edu/math336",
"targetAssessment": ["https://university.edu/assessments/math336"],
"targetLearningResource": ["https://university.edu/resources/math336"],
"teaches": ["Statistical Analysis Competency"]
}
],
"Credential": [
{
"Accreditation": [
{
"accreditationAwardDate": "2024-04-01T00:00:00Z",
"accreditationExpirationDate": "2029-04-01T00:00:00Z",
"accreditedBy": "National Accreditation Board",
"accreditedIn": "United States",
"accredits": "Master of Science in Data Science",
"ctdlOrganizationType": "Postsecondary Educational Institution",
"ctid": "ctid123456789",
"informationSourceId": "123456789",
"seekingAccreditationDate": "2023-04-01T00:00:00Z"
}
],
"CredentialAlignments": [
{
"alignmentType": "Skill",
"code": "CE-001",
"description": "This standard outlines the competencies required for digital literacy as recognized by the educational authority.",
"framework": "Digital Competency Framework",
"name": "Digital Literacy Standard",
"url": "https://www.credentialengine.org/digital_literacy_standard"
}
],
"Image": {
"author": "Jane Smith",
"caption": "An intricate vector design of a geometric pattern",
"imageId": "https://example.com/images/sunrise.png",
"imageType": "PNG"
},
"Requirements": {
"Criteria": [
{
"narrative": "To earn this credential, candidates must complete 120 hours of coursework and a final project that demonstrates proficiency in applied data science. Candidates are also required to pass a comprehensive exam covering all major course topics.",
"uri": "https://www.university.edu/data-science-credential-requirements"
}
],
"assessmentMethodType": "Written",
"estimatedDuration": "P2Y",
"maximumDuration": "P5Y",
"minimumAge": 18,
"minimumDuration": "P1Y"
},
"abbreviation": "MSDataSci",
"achievementType": "Degree",
"alignedProgram": {
"$ref": "#/components/schemas/Program"
},
"certifierOrganization": {
"$ref": "#/components/schemas/Organization"
},
"creditsAvailable": "36",
"description": "Master of Science in Data Science program prepares graduates to analyze, interpret, and visualize data, applying ethical practices and technical skills.",
"effectiveDate": "2023-09-01",
"expirationDate": "2033-09-01",
"extensions": ["XML", "JSONLD"],
"fieldOfStudy": "Data Science",
"format": ["OBI"],
"humanCode": "MSDS",
"id": "credential-12345",
"idSystem": "https://www.university.edu/credentialsystem",
"idType":"URI",
"industryCode": 123,
"IssuerOrganization": {
"$ref": "#/components/schemas/Organization"
},
"level": "Postsecondary",
"name": "Master of Science in Data Science",
"schema": "https://www.credentialengine.org/schema/1.0/credential.json",
"status": "Active",
"tags": ["Data Science", "Graduate Program", "STEM"],
"uri": "https://www.university.edu/credentials/msds"
}
],
"Organization": [
{
"Accreditation": [
{
"accreditationAwardDate": "2024-04-01T00:00:00Z",
"accreditationExpirationDate": "2029-04-01T00:00:00Z",
"accreditedBy": "National Accreditation Board",
"accreditedIn": "United States",
"accredits":"Bachelor of Science in Computer Science",
"ctdlOrganizationType":"Postsecondary Educational Institution",
"ctid": "ctid123456789",
"informationSourceId": "123456789",
"seekingAccreditationDate": "2023-04-01T00:00:00Z"
}
],
"Contact": [
{
"Address": [
{
"addressCity": "Gilbert",
"addressCountyName": "Maricopa",
"addressLine2": "Suite 200",
"addressPostalCode": "85295",
"addressState": "Arizona",
"addressStreet": "1234 North Main Street",
"addressType": ["Physical"],
"countryCode": "US",
"formattedAddress": "1234 North Main Street, Suite 200, Gilbert, AZ 85295, USA",
"informationSourceId": "123456789",
"latitude": 33.3528,
"longitude": -111.7890,
"residenceCountry": ["USA"]
}
],
"Email": [
{
"emailAddress": ["john.doe@example.com"],
"emailAddressType": ["Other"],
"endPeriod": "2024-05-10T23:59:59Z",
"informationSourceId": "123456789",
"primaryEmailAddressIndicator": true,
"startPeriod": "2024-05-10T00:00:00Z"
}
],
"Telephone": [
{
"dateEffective": "2024-01-01",
"dateExpired": "2024-12-31",
"doNotPublishIndicator": true,
"informationSourceId": "123456789",
"orderOfPriority": true,
"primaryNumber": true,
"telephoneNumber": ["555-123-4567"],
"telephoneNumberType": ["Other"],
"textMessageCapabilityIndicator": true
}
],
"dateEffective": "2024-05-10T23:59:59Z",
"dateExpired": "2029-01-01T00:00:00Z",
"informationSourceId": "123456789",
"websiteAddress": "https://www.university.edu"
}
],
"Identifier": [
{
"identifier": "Org-202456",
"identifierType": "URI",
"identifierVerification": "JWT",
"issuedByOrganization": {
"$ref": "#/components/schemas/Organization"
}
}
],
"OperationalStatus": [
{
"informationSourceId": "123456789",
"operationalStatus": "Active",
"operationalStatusEffectiveDate": "2024-05-01T00:00:00Z"
}
],
"OrganizationCode": [
{
"organizationCodeType": "NAICS",
"organizationCodeValue": "611310"
}
],
"description": "University of Example is a private research university located in Gilbert, Arizona. The university offers a wide range of undergraduate and graduate programs in various fields of study.",
"identificationSystem": "Local Education Agency assigned number",
"imageUrl": "https://www.university.edu/logo.png",
"informationSourceId": "123456789",
"name": "Example University",
"organizationType": ["Education Institution"],
"relationshipType":"Operating Body",
"shortName": "Univ of Example"
}
],
"Position": [
{
"IndustryCode": [
{
"industryCodeType": "NAICS",
"industryCodeValue": ["541512"]
}
],
"JobCode": [
{
"jobCodeType": "O*NET",
"jobCodeValue": "12345"
}
],
"Membership": [
{
"endDate": "2023-12-31",
"identifier": "ABC123",
"membershipStatus": true,
"membershipType": "Teacher Union",
"name": "National Teachers Union",
"startDate": "2020-01-01"
}
],
"Wage": [
{
"endDate": "2023-12-31",
"payRate": "50000.00",
"payRateType": "Annual",
"startDate": "2020-01-01"
}
],
"compensationBaseSalary": "60000.00",
"compensationBaseSalaryStatus": "missing at will",
"compensationTotalSalary": "70000.00",
"compensationTotalSalaryStatus": "not applicable",
"contractDaysOfServicePerYear": 220,
"contractDaysOfServicePerYearStatus": "missing at will",
"contractLength": 12,
"contractLengthStatus": "not applicable",
"description": "Responsible for managing IT projects and teams.",
"employmentSchedule": "FullTime",
"employmentSeason": "YearRound",
"fullTimeEquivalentRatio": "1.0",
"hoursWorkedPerWeek": "40.0",
"name": "Project Manager",
"occupationalCategory": [
"15-1199.09 - Information Technology Project Managers"
],
"offerredByOrganization": {
"$ref": "#/components/schemas/Organization"
},
"otherPayMethods": [
"Bonus",
"Profit Sharing"
],
"positionEmploymentStatus": "Employed",
"primaryPayMethod": "Salary",
"wageVerificationCode": "CEDS"
}
],
"Program": [
{
"accreditedBy": "Accreditation Council for Business Schools and Programs",
"alternateName": ["MBA", "Master of Business Administration"],
"approvedBy": "Department of Education",
"assessmentMethodDescription": ["Final Exam", "Project Presentation"],
"assessmentMethodType": ["Exam", "Artifact"],
"audienceLevelType": ["audLevel:GraduateLevel", "audLevel:ProfessionalLevel"],
"audienceType": ["PlaceHolder"],
"availabilityListing": ["http://example.com/program-details"],
"availableAt": ["Campus A", "Campus B"],
"availableOnlineAt": ["http://example.com/online-program"],
"codedNotation": "MBA-2024",
"creditUnitTypeDescription": "Credit hours based on semester system.",
"creditValue": ["3.0", "4.0"],
"creditsRequired": 120,
"ctid": "urn:ctid:1234567890abcdef",
"dateEffective": "2024-08-01",
"deliveryType": ["Blended Delivery", "Online Only"],
"demonstratesCompetency": {
"$ref": "#/components/schemas/CompetencyFramework/properties/Competency"
},
"description": "A comprehensive program designed to provide students with essential business knowledge and skills.",
"distanceEducationProgram": "Yes",
"estimatedCost": ["$50000", "$60000"],
"estimatedDuration": ["2 Years", "4 Semesters"],
"expirationDate": "2028-12-31",
"inLanguage": ["English", "Spanish"],
"instructionalProgramCode": ["52.0201 - Business Administration and Management, General"],
"instructionalProgramUse": "Primary completion",
"instructionalProgramVersion": "CIP 2010",
"keyword": ["Business", "Management", "MBA"],
"lifeCycleStatusType": "Active",
"name": ["Master of Business Administration"],
"normalTimeCompletion": "2 years",
"normalTimeCompletionUnits": "Years",
"offerFrequencyType": "Annually",
"offerredByOrganization": {
"$ref": "#/components/schemas/Organization"
},
"ownedBy": ["XYZ University"],
"postSecondaryProgramLevel": "Major",
"programDuration": "60.0",
"programDurationType": "Credit",
"programIdentifier": "MBA2024",
"programIdentifierSystem": "University System",
"programSponsorType": ["Postsecondary institution", "Business"],
"programVersion": "1.0",
"recognizedBy": ["State Education Board"],
"regulatedBy": ["Education Regulatory Authority"],
"specialization": ["Finance", "Marketing", "Human Resources"],
"subjectWebpage": "http://example.com/mba-program",
"targetAssessment": ["Capstone Project", "Final Exam"],
"targetLearningResource": ["Business Textbook", "Case Studies"],
"workBasedLearningOpportunityType": ["Internship", "Mentorship"]
}
],
"Person": [
{
"AssessmentLearningExperience": [
{
"Assessment": {
"$ref": "#/components/schemas/Assessment"
},
"AssessmentLearningExperience": {
"$ref": "#/components/schemas/AssessmentLearningExperience"
},
"CourseLearningExperience": {
"$ref": "#/components/schemas/CourseLearningExperience"
},
"CredentialAward": {
"$ref": "#/components/schemas/CredentialAward"
},
"EmploymentLearningExperience": {
"$ref": "#/components/schemas/EmploymentLearningExperience"
},
"MilitaryLearningExperience": {
"$ref": "#/components/schemas/MilitaryLearningExperience"
},
"Proficiency": {
"$ref": "#/components/schemas/Proficiency"
},
"ProgramLearningExperience": {
"$ref": "#/components/schemas/ProgramLearningExperience"
},
"assertedByOrganization": {
"$ref": "#/components/schemas/Organization"
},
"assertedByPerson": {
"$ref": "#/components/schemas/Person"
},
"completionStatus": "Completed",
"deliveryDeviceDetails": "Online platform on a personal computer",
"endDate": "2024-05-20T16:00:00Z",
"experienceLocation": "University Testing Center",
"gradeStatus": "pass",
"identifier": "Exam2024-104",
"informationSourceId": "123456789",
"offeredBy": "Department of Mathematics",
"offerredByOrganization": {
"$ref": "#/components/schemas/Organization"
},
"reasonNotCompleting": "Other",
"resultDataType": "Percentile",
"scoreType": "Final Exam",
"scoreValue": "85",
"startDate": "2024-05-20T09:00:00Z",
"timeAssessed": "7 hours",
"type": "Midterm Examination"
}
],
"Birth": [
{
"birthCode": "US",
"birthDate": "1966-01-22",
"birthIndicator": "No",
"birthInternationalProvince": "Quebec",
"birthVerification": "Birth certificate",
"cityOfBirth": "Montreal",
"dateEnteredUS": "2004-05-10T09:30:00-05:00",
"informationSourceId": "123456789",
"stateOfBirth": "AZ",
"visa": "F1 - Foreign Student Visa"
}
],
"Consent": [
{
"AuditHistory": [
{
"auditDate": "2024-05-10T09:30:00-05:00",
"auditLog": "User consented to share personal information for research purposes."
}
],
"additionalNotes": "Consent was given for research purposes.",
"basisLegalCode": [
{
"code": "GDPR",
"narrative": "General Data Protection Regulation",
"source": "General Data Protection Regulation (GDPR) - European Union (https//gdpr.eu/)"
}
],
"channel": ["Online"],
"dataRecipients": ["University of Example"],
"dateTimeConsentGiven": "2024-05-10T09:30:00-05:00",
"dateTimeConsentUpdated": "2024-05-10T09:30:00-05:00",
"expiration": "2024-05-10T09:30:00-05:00",
"identifier": "Consent-12345",
"languages": ["English"],
"lifEntities": ["Address", "PositionRole", "Requirements", "EmploymentLearningExperience", "Residency", "Identifier", "Issuer", "InformationSource", "Culture", "Contact", "Wage", "Credential", "ProficiencyLevel", "Position", "Accessibility", "Organization", "Criteria", "Accredidation", "ProficiencyDefinition", "MilitaryLearningExperience", "Identity", "Name", "CourseLearningExperience", "Birth", "Association", "AssessmentSubtest", "Death", "Alignment", "Evidence", "Email", "Course", "Telephone", "Person", "Contribution", "ProgramLearningExperience", "Competency", "CompetencyFramework", "OperationalStatus", "IncomeSource", "Grade", "Accreditation", "Language", "AssessmentPerformanceLevel", "IssuerOrganization", "CourseCompetency", "image", "RelationshipContacts", "Consent", "Program", "ProficiencyResult", "SexAndGender", "Image", "AssessmentLearningExperience", "Assessment", "CredentialAward", "Demographics"],
"mechanism": "Online form",
"purpose": "Assessment of student's progress",
"regulatoryCompliance": ["GDPR"],
"status": "Active",
"type": "Active",
"typeDescription": "Active consent is given by the individual to share personal information for research purposes.",
"typesOfData": ["Personal Information"],
"withdrawalProcessLegalCode": [
{
"code": "GDPR",
"narrative": "General Data Protection Regulation provides the right to be forgotten.",
"source": "General Data Protection Regulation (GDPR) - European Union (https//gdpr.eu/)"
}
]
}
],
"Contact": [
{
"Address": [
{
"addressCity": "Gilbert",
"addressCountyName": "Maricopa",
"addressLine2": "Suite 200",
"addressPostalCode": "85295",
"addressState": "Arizona",
"addressStreet": "1234 North Main Street",
"addressType": ["Home Address"],
"countryCode": "US",
"formattedAddress": "1234 North Main Street, Suite 200, Gilbert, AZ 85295, USA",
"informationSourceId": "123456789",
"latitude": 33.3528,
"longitude": -111.7890,
"residenceCountry": ["USA"]
}
],
"Email": [
{
"emailAddress": ["john.doe@example.com"],
"emailAddressType": ["Personal"],
"endPeriod": "2024-05-10T23:59:59Z",
"informationSourceId": "123456789",
"primaryEmailAddressIndicator": true,
"startPeriod": "2024-05-10T00:00:00Z"
}
],
"Telephone": [
{
"dateEffective": "2023-01-01T00:00:00Z",
"dateExpired": "2029-01-01T00:00:00Z",
"doNotPublishIndicator": true,
"endPeriod": "2024-12-31T23:59:59Z",
"informationSourceId": "559876",
"orderOfPriority": true,
"primaryNumber": true,
"startPeriod": "2024-01-01T00:00:00Z",
"telephoneNumber": ["555-123-4567"],
"telephoneNumberType": ["Home phone number"],
"textMessageCapabilityIndicator": true
}
],
"dateEffective": "2024-05-10T23:59:59Z",
"dateExpired": "2029-01-01T00:00:00Z",
"informationSourceId": "123456789",
"websiteAddress": "https://www.johndoe.com"
}
],
"CourseLearningExperience": [
{
"AssessmentLearningExperience": {
"$ref": "#/components/schemas/AssessmentLearningExperience"
},
"Course": {
"$ref": "#/components/schemas/Course"
},
"CourseLearningExperience": {
"$ref": "#/components/schemas/CourseLearningExperience"
},
"CredentialAward": {
"$ref": "#/components/schemas/CredentialAward"
},
"EmploymentLearningExperience": {
"$ref": "#/components/schemas/EmploymentLearningExperience"
},
"MilitaryLearningExperience": {
"$ref": "#/components/schemas/MilitaryLearningExperience"
},
"Proficiency": {
"$ref": "#/components/schemas/Proficiency"
},
"ProgramLearningExperience": {
"$ref": "#/components/schemas/ProgramLearningExperience"
},
"assertedByOrganization": {
"$ref": "#/components/schemas/Organization"
},
"assertedByPerson": {
"$ref": "#/components/schemas/Person"
},
"courseAddDate": "2024-08-01",
"courseGradeStatusCode": ["Completed", "PassFailPass"],
"courseOverrideSchool": "Regional Community College",
"courseRepeatCode": "ReplacementCounted",
"courseSectionEntryType": "Transfer",
"courseSectionExitType": "CompletedForCredit",
"courseSectionExitWithdrawalDate": "2024-12-15",
"courseSectionID": ["CS101-Spring2024", "CS102-Fall2024"],
"courseSectionNumber": 104,
"courseTotal": 5,
"currentlyAttendingIndicator": "Yes",
"department": "Computer Science",
"endDate": "2024-12-15",
"enrollmentStatusType": "Completed",
"exitDate": "2024-12-15",
"experienceGrade": "A",
"experienceNumericalGrade": 93.5,
"goodStandingIndicator": true,
"identifier": "CS101-2024",
"informationSourceId": "123456789",
"institution": "Tech University",
"narrativeExplanationGrade": "Exceeded all expectations with top project scores.",
"offerredByOrganization": {
"$ref": "#/components/schemas/Organization"
},
"ownedBy": "Department of Natural Science",
"personId": "123e4567-e89b-12d3-a456-426614174000",
"singleSexClassStatus": ["NotSingleSex"],
"startDate": "2024-08-01",
"type": "Core Curriculum"
}
],
"CredentialAward": [
{
"Evidence": [
{
"audience": "Graduate students and academic researchers in the field of environmental science.",
"description": "Detailed analysis of the long-term impacts of deforestation in South America, supported by data collected over the past decade.",
"evidenceAccreditation": "Accredited by the Global Environmental Oversight Panel.",
"evidenceId": "https://www.researchinstitute.org/evidence/deforestation-impact",
"evidenceStatement": "This evidence is derived from a comprehensive study conducted over ten years, involving over 100 researchers and producing peer-reviewed publications.",
"genre": "Research Report",
"name": "Deforestation Impact Study",
"narrative": "The study demonstrates a significant correlation between deforestation rates and biodiversity loss in South America, using satellite imagery and ground survey data.",
"type": "Academic Research"
}
],
"Identity": [
{
"hashed": true,
"identityHash": "sha256$b5809d8a92f8858436d7e6b87c12ebc0ae1eac4baecc2c0b913aee2c922ef399",
"identityType": "emailAddress",
"salt": "Kosher"
}
],
"awardIssueDate": "2023-05-15T00:00:00Z",
"awardStatus": "Completed",
"awarded": true,
"credentialAwardee": null,
"creditsEarned": "30",
"expirationDate": "2028-05-15T00:00:00Z",
"id": "credential-67890",
"instanceOfCredential": {
"$ref": "#/components/schemas/Credential"
},
"issuerOrganization": {
"$ref": "#/components/schemas/Organization"
},
"narrative": "John Doe completed a comprehensive project on machine learning algorithms, which involved designing and testing various models to improve data analysis efficiency.",
"payload": "Encoded data representing all details of the credential, including issuer information, criteria met, and validation data.",
"proof": "Signature provided by the issuing authority to verify the authenticity of the credential.",
"result": ["Pass", "Cum Laude"],
"revocationReason": "Credential was revoked due to the discovery of dishonesty during the examination process.",
"revoked": false,
"selfAsserted": false,
"signedPayload": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MTIzNDU2Nzg5LCJuYW1lIjoiSm9zZXBoIn0.OpOSSw7e485LOP5PrzScxHb7SR6sAOMRckfFwi4rp7o",
"termsOfUse": "The credential must be used in accordance with the ethical guidelines set forth by the issuing institution, unauthorized reproduction or sharing is prohibited.",
"uri": "https://www.credential-registry.org/credentials/123456789"
}
],
"Culture": [
{
"americanIndianOrAlaskan": "No",
"asian": "Yes",
"blackOrAfricanAmerican": "No",
"ethnicity": "Hispanic",
"informationSourceId": "123456789",
"nativeHawaiianOrOtherPacificIslander": "No",
"white": "Yes"
}
],
"Death": [
{
"deathDate": "2024-05-11T23:59:59Z"
}
],
"Demographics": [
{
"economicDisadvantage": false,
"educationVerification": "Official Transcript",
"familyIncome": 45000.00,
"familyIncomeCalculation": "Calculated from tax returns",
"highestLevelEducation": "Bachelor's (Baccalaureate) degree",
"homeless": true,
"homelessPrimaryResidence": "Emergency shelter",
"informationSourceId": "123456789",
"migrantStatus": false,
"militaryActiveStatus": "Active",
"militaryVeteranStatus": "Unknown",
"qualifyingMoveCity": "Mesa",
"qualifyingMoveCountry": "CA",
"qualifyingMoveState": "AZ",
"startDateStatus": "2023-01-01T00:00:00Z",
"startEndDate": "2023-12-31T23:59:59Z",
"tribalNationName": "Cherokee Nation",
"usCitizenship": "US Citizen"
}
],
"EmploymentLearningExperience": [
{
"AssessmentLearningExperience": {
"$ref": "#/components/schemas/AssessmentLearningExperience"
},
"CourseLearningExperience": {
"$ref": "#/components/schemas/CourseLearningExperience"
},
"CredentialAward": {
"$ref": "#/components/schemas/CredentialAward"
},
"EmploymentLearningExperience": {
"$ref": "#/components/schemas/EmploymentLearningExperience"
},
"MilitaryLearningExperience": {
"$ref": "#/components/schemas/MilitaryLearningExperience"
},
"Position": {
"$ref": "#/components/schemas/Position"
},
"Proficiency": {
"$ref": "#/components/schemas/Proficiency"
},
"ProgramLearningExperience": {
"$ref": "#/components/schemas/ProgramLearningExperience"
},
"IncomeSources": [
{
"incomeSourceCategory": "Contract",
"incomeSourceDescription": "Software development contract with Tech Innovations Inc."
}
],
"aspirations": "To become a senior software developer at a major tech company",
"assertedByOrganization": {
"$ref": "#/components/schemas/Organization"
},
"assertedByPerson": {
"$ref": "#/components/schemas/Person"
},
"careerPathwaysProgramParticipationIndicator": true,
"contractType": "Multi-year",
"dateOfAssertion": ["2024-01-01"],
"description": "John has consistently demonstrated exceptional problem-solving skills and leadership in project teams.",
"employedAfterExit": true,
"employedPriortoEnrollment": true,
"employedWhileEnrolled": true,
"employmentSeparationReason": "Personal reason",
"employmentSeparationType": "Voluntary",
"employmentStatus": "Employed",
"endDate": "2024-12-31",
"experienceType": ["Internship", "Volunteering"],
"experienceTypeAssertion": ["Verified by manager"],
"experienceTypeValidated": ["Certified by Professional Association"],
"hireDate": "2023-05-01",
"identifier": "12345",
"militaryEnlistmentAfterExit": true,
"name": "Senior Developer",
"offerredByOrganization": {
"$ref": "#/components/schemas/Organization"
},
"positionDescription": "Responsible for developing and maintaining key modules of our software solutions.",
"quarterlyEarnings": 20000.00,
"socioEmotionalSkill": ["Teamwork", "Effective Communication"],
"sourceExperience": "https://www.johndoeportfolio.com/projects",
"staffApprovalByOrganization": {
"$ref": "#/components/schemas/Organization"
},
"startDate": "2023-05-01",
"updateFlag": true
}
],
"Identifier": [
{
"issuedByOrganization": {
"$ref": "#/components/schemas/Organization"
},
"identifier": "987654321",
"identifierType": "Driver's license number",
"identifierVerification": ["Driver's license"]
}
],
"Language": [
{
"ISO639-2LangCode": ["eng"],
"ISO639-3LangCode": ["eng"],
"ISO639-5LangFamily": ["ine"],
"informationSourceId": "123456789",
"languageType": ["Correspondence", "Dominant"]
}
],
"MilitaryLearningExperience": [
{
"AssessmentLearningExperience": {
"$ref": "#/components/schemas/AssessmentLearningExperience"
},
"CourseLearningExperience": {
"$ref": "#/components/schemas/CourseLearningExperience"
},
"CredentialAward": {
"$ref": "#/components/schemas/CredentialAward"
},
"EmploymentLearningExperience": {
"$ref": "#/components/schemas/EmploymentLearningExperience"
},
"MilitaryLearningExperience": {
"$ref": "#/components/schemas/MilitaryLearningExperience"
},
"Proficiency": {
"$ref": "#/components/schemas/Proficiency"
},
"ProgramLearningExperience": {
"$ref": "#/components/schemas/ProgramLearningExperience"
},
"assertedByOrganization": {
"$ref": "#/components/schemas/Organization"
},
"assertedByPerson": {