# M1_STUDENT_ID_RECORD --- title: M1_STUDENT_ID_RECORD description: This schema represents the student's identification record, containing personal details, academic background, and teaching institution information. --- This schema represents the student's identification record, containing personal details, academic background, and teaching institution information. {% json-schema schema={ "title": "M1_STUDENT_ID_RECORD Schema", "summary": "M1_STUDENT_ID_RECORD SCHEMA", "type": "object", "properties": { "valid_from": { "type": "string", "description": "Student ID valid from" }, "valid_upto": { "type": "string", "description": "Student ID valid upto" }, "student": { "type": "object", "description": "Object with information about the Student, as provided on Student ID", "properties": { "student_id": { "type": "string", "description": "Unique, school-provided Student ID" }, "first_name": { "type": "string", "description": "First name of the student" }, "last_name": { "type": "string", "description": "Last name of the student" }, "middle_name": { "type": "string", "description": "Middle name of the student" }, "prefix": { "type": "string", "description": "Prefix to the name" }, "suffix": { "type": "string", "description": "Suffix to the name" }, "full_name": { "type": "string", "description": "Full name of the student" }, "former_first_name": { "type": "string", "description": "Former first name" }, "former_middle_name": { "type": "string", "description": "Former middle name" }, "former_last_name": { "type": "string", "description": "Former last name" }, "former_full_name": { "type": "string", "description": "Former full name" }, "former_suffix": { "type": "string", "description": "Suffix to the former name" }, "former_prefix": { "type": "string", "description": "Prefix to the former name" }, "date_of_birth": { "type": "string", "description": "Birthdate of the student" }, "govt_id": { "type": "object", "description": "Government id of the student", "properties": { "id": { "type": "string" }, "type": { "type": "string" } } }, "email": { "type": "string", "description": "Email address of the student, as provided on the Student ID" }, "phone_number": { "type": "string", "description": "Phone number of the student, as provided on the Student ID" }, "address": { "type": "object", "description": "Student's Address information as provided on the Student ID", "properties": { "addr1": { "type": "string", "description": "Address line 1" }, "addr2": { "type": "string", "description": "Address line 2. Should be populated only if `addr1` is populated" }, "city": { "type": "string", "description": "City" }, "state": { "type": "string", "description": "State" }, "zipcode": { "type": "string", "description": "Zipcode for the address" }, "country": { "type": "object", "description": "Country information", "properties": { "name": { "type": "string", "description": "Name of the country" }, "a2_code": { "type": "string", "description": "Alpha-2 code for the country from ISO 3166" } } } } } } }, "teaching_institution": { "type": "object", "description": "Object with information about the teaching institution", "properties": { "name": { "type": "string", "description": "Name of the institution" }, "id": { "type": "string", "description": "Unique identifier of the institute" }, "id_type": { "type": "string", "description": "Type of ID used to identify given institution Enum `AISHE`" }, "address": { "type": "object", "description": "Student's Address information as provided for previous academic record", "properties": { "addr1": { "type": "string", "description": "Address line 1" }, "addr2": { "type": "string", "description": "Address line 2. Should be populated only if `addr1` is populated" }, "city": { "type": "string", "description": "City" }, "state": { "type": "string", "description": "State" }, "zipcode": { "type": "string", "description": "Zipcode for the address" }, "country": { "type": "object", "properties": { "name": { "type": "string", "description": "Name of the country" }, "a2_code": { "type": "string", "description": "Alpha-2 code for the country from ISO 3166" } } } } } } }, "degree_awarding_institution": { "type": "object", "description": "Object with information about the degree awarding institution", "properties": { "name": { "type": "string", "description": "Name of the institution" }, "id": { "type": "string", "description": "Unique identifier of the institute" }, "id_type": { "type": "string", "description": "Type of ID used to identify given institution Enum `IPEDS`,`CEEB`" }, "address": { "type": "object", "description": "Student's Address information as provided for previous academic record", "properties": { "addr1": { "type": "string", "description": "Address line 1" }, "addr2": { "type": "string", "description": "Address line 2. Should be populated only if `addr1` is populated" }, "city": { "type": "string", "description": "City" }, "state": { "type": "string", "description": "State" }, "zipcode": { "type": "string", "description": "Zipcode for the address" }, "country": { "type": "object", "properties": { "name": { "type": "string", "description": "Name of the country" }, "a2_code": { "type": "string", "description": "Alpha-2 code for the country from ISO 3166" } } } } } } }, "degrees": { "type": "array", "description": "List of degrees found in Student ID", "items": { "type": "object", "properties": { "description": { "type": "string" }, "type": { "type": "string", "description": "Level of the degree. Enum `HIGH-SCHOOL-DIPLOMA`, `ASSOCIATE`, `BACHELORS`, `MASTERS`, `MASTERS-RESEARCH`, `DOCTORAL`, `CERTIFICATE`, `DIPLOMA`, `NON-DEGREE`, `PROFESSIONAL`, `UNDERGRADUATE`, `UNKNOWN`" }, "field_of_study": { "type": "array", "description": "List of objects with information about the field of study", "items": { "properties": { "type": { "type": "string", "description": "Type of study. Enum `MAJOR`,`MINOR`,`CONCENTRATION`" }, "description": { "type": "string", "description": "Name of the field of study" }, "code_type": { "type": "string", "description": "Type of the code used for identifying the field of study E.g. CIP, HEGIS, OTHER" }, "code": { "type": "string", "description": "Specifies the code for the field of study" } } } } } } } } } /%}