PeopleSoft · JSON Structure

Peoplesoft Campus Solutions Student Structure

PeopleSoft Campus Solutions student record.

Type: object Properties: 13
Campus SolutionsCRMEnterprise SoftwareERPFinancial ManagementHCMSupply Chain Management

Student is a JSON Structure definition published by PeopleSoft, describing 13 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

EMPLID NAME ACAD_CAREER ACAD_PROG ACAD_PLAN ADMIT_TERM ACAD_LEVEL_BOT CUM_GPA TOT_TAKEN_GPA INSTITUTION CAMPUS STDNT_CAR_NBR ACAD_STANDING

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/peoplesoft/refs/heads/main/json-structure/peoplesoft-campus-solutions-student-structure.json",
  "name": "Student",
  "description": "PeopleSoft Campus Solutions student record.",
  "type": "object",
  "properties": {
    "EMPLID": {
      "type": "string",
      "description": "Student ID.",
      "example": "STU001234"
    },
    "NAME": {
      "type": "string",
      "description": "Student name.",
      "example": "Alex Johnson"
    },
    "ACAD_CAREER": {
      "type": "string",
      "description": "Academic career.",
      "enum": [
        "UGRD",
        "GRAD",
        "LAW",
        "MED"
      ],
      "example": "UGRD"
    },
    "ACAD_PROG": {
      "type": "string",
      "description": "Academic program.",
      "example": "BSCS"
    },
    "ACAD_PLAN": {
      "type": "string",
      "description": "Academic plan/major.",
      "example": "COMPSCI"
    },
    "ADMIT_TERM": {
      "type": "string",
      "description": "Admission term.",
      "example": "2026F"
    },
    "ACAD_LEVEL_BOT": {
      "type": "string",
      "description": "Academic level.",
      "enum": [
        "FR",
        "SO",
        "JR",
        "SR",
        "GR"
      ],
      "example": "JR"
    },
    "CUM_GPA": {
      "type": "double",
      "description": "Cumulative GPA.",
      "example": 3.65
    },
    "TOT_TAKEN_GPA": {
      "type": "double",
      "description": "Total GPA units taken.",
      "example": 90.0
    },
    "INSTITUTION": {
      "type": "string",
      "description": "Institution code.",
      "example": "MYUNV"
    },
    "CAMPUS": {
      "type": "string",
      "description": "Campus code.",
      "example": "MAIN"
    },
    "STDNT_CAR_NBR": {
      "type": "int32",
      "description": "Student career number.",
      "example": 0
    },
    "ACAD_STANDING": {
      "type": "string",
      "description": "Academic standing.",
      "enum": [
        "GS",
        "GP",
        "AP",
        "DQ"
      ],
      "example": "GS"
    }
  },
  "x-schema-source": "domain-knowledge"
}