QUICK LINKS

Support
Issue Tracker
[Services]
Questions
[uAchieve 4.5 Applications]
[uAchieve 5.0 Application]
[uAchieve 5.1 Application]
Transferology
TES
[Training & Conferences]
Accessibility

Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of Contents

...

What is the College Transcript interface?

...

This interface is also referred to as the Course Import and SIS Import. The remainder of this page uses the Transferology term Course Import regarding the interface and the exchange process and College Transcript when referring to the PESC schema.

...

Note
titlePESC College Transcript schema version 1.0.0

 The PESC web site  http://www.fsaxmlregistry.ed.gov/XMLRegistry/ no longer provides access to the V 1.0.0 CollegeTranscript schema. See the CollegeTranscript Example below for the xml XML structure.

Ohio Schemas 0.5 and 0.6

The Ohio schemas are predecessors to the PESC schema. The Ohio schemas are only supported for backward compatibility of existing interfaces, therefore, no new interfaces should be created from them. For support purposes they can be found here: http://www.transfer.org/xsd/SISv05.xsd http://www.transfer.org/xsd/SISv06.xsd

...

The Course Import Exchange process is triggered by a Transferology user requesting to import courses from a school. Users can only request the import from schools that have a defined SIS Import Remote URL in Transferology. See External URLs for information on the school's SIS Import Remote URL. 

The exchange of information between Transferology and the school system occurs in the following event sequence:

...

The school's Student Information System needs to force the the user to authenticate with the proper credentials for the school , since Transferology user credentials are different than the schools and cannot be used here.

...

If Transferology successfully finds the student and request, the XML document is well-formed, and the content is valid and content is saved in the student's Transferology courses, then Transferology replies with the following:

Code Block
xml
xml
   <response status="0">success</response>

The course work coursework is immediately available for viewing by the Transferology user.

...

If Transferology encounters an error (i.e., parsing, validation, or finding), a failure result (non-zero status) is provided. Below is an example failure result:

...

The CollegeTranscript XML document must be well-formed and must contain the minimum elements that Transferology requires. Transferology does not strictly validate the XML document against the schema due to the number of unused elements in the PESC schema. The following XML shows the minimum information that must exist in the document. The example data shows the key and uid values from the earlier example Course Import URL-:

Code Block
xml
xml
  <CollegeTranscript>
      <TransmissionData>
         <DocumentID>201120416394062</DocumentID>
      </TransmissionData>
      <Student>
         <Person>
            <RecipientAssignedID>publicjq@MIAMI</RecipientAssignedID>
         </Person>
        <AcademicRecord> 
           <School>
             <OrganizationName>Miami</OrganizationName>
             <FICE>007104</FICE>
           </School>
           <Course> 
             <CourseSubjectAbbreviation>ENG</CourseSubjectAbbreviation>
             <CourseNumber>111</CourseNumber>
             <CourseTitle>English Composition</CourseTitle>
             <CourseAcademicGrade>A</CourseAcademicGrade>
             <CourseCreditEarned>3.0</CourseCreditEarned>
             <CourseBeginDate>2007-08-26</CourseBeginDate>
           </Course>
        </AcademicRecord>
      </Student>
  </CollegeTranscript>

DocumentID

This The DocumentID must be the value Transferology provided in the key query parameter.

RecipientAssignedID

This The RecipientAssignedID must be the value Transferology provided in the uid query parameter.

...

The school's identifier must be in one of the following elements with the correct value.:

Code Block
xml
xml
<FICE></FICE>
<ATP></ATP>
<ACT></ACT>
<IPEDS></IPEDS>

...

One or more Course elements can be provided.