PowerSchool · Schema

PowerSchool Student

A student record from the PowerSchool SIS REST API (/ws/v1/district/student/{id}). Students are identified by DCID (id field), local student number (local_id), and portal username.

K-12EducationStudent Information SystemSISStudentsGradesAttendanceEnrollmentSchedulingEdTech

Properties

Name Type Description
id integer Student DCID — the district-wide unique identifier. Use this in API path parameters.
local_id integer Student number — local identifier used within the district (e.g., on ID cards).
student_username string Student portal login username.
name object Student name components.
demographics object Demographic information.
addresses object Address collection for the student.
phones object Phone numbers for the student.
View JSON Schema on GitHub

JSON Schema

powerschool-student.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/powerschool/main/json-schema/powerschool-student.json",
  "title": "PowerSchool Student",
  "description": "A student record from the PowerSchool SIS REST API (/ws/v1/district/student/{id}). Students are identified by DCID (id field), local student number (local_id), and portal username.",
  "type": "object",
  "required": ["id"],
  "properties": {
    "id": {
      "type": "integer",
      "description": "Student DCID — the district-wide unique identifier. Use this in API path parameters."
    },
    "local_id": {
      "type": "integer",
      "description": "Student number — local identifier used within the district (e.g., on ID cards)."
    },
    "student_username": {
      "type": "string",
      "description": "Student portal login username."
    },
    "name": {
      "type": "object",
      "description": "Student name components.",
      "properties": {
        "first_name": {
          "type": "string",
          "description": "Given/first name."
        },
        "middle_name": {
          "type": "string",
          "description": "Middle name."
        },
        "last_name": {
          "type": "string",
          "description": "Surname/family name."
        }
      }
    },
    "demographics": {
      "type": "object",
      "description": "Demographic information.",
      "properties": {
        "birth_date": {
          "type": "string",
          "format": "date",
          "description": "Date of birth in YYYY-MM-DD format."
        },
        "district_entry_date": {
          "type": "string",
          "format": "date",
          "description": "Date the student first enrolled in the district."
        },
        "gender": {
          "type": "string",
          "description": "Gender as defined by the district (e.g., M, F, or extended values)."
        },
        "projected_graduation_year": {
          "type": "integer",
          "description": "Expected graduation year (e.g., 2028)."
        }
      }
    },
    "addresses": {
      "type": "object",
      "description": "Address collection for the student.",
      "properties": {
        "home": { "$ref": "#/definitions/Address" },
        "mailing": { "$ref": "#/definitions/Address" },
        "physical": { "$ref": "#/definitions/Address" }
      }
    },
    "phones": {
      "type": "object",
      "description": "Phone numbers for the student.",
      "properties": {
        "fax": { "$ref": "#/definitions/PhoneNumber" },
        "home_phone": { "$ref": "#/definitions/PhoneNumber" },
        "main": { "$ref": "#/definitions/PhoneNumber" }
      }
    }
  },
  "definitions": {
    "Address": {
      "type": "object",
      "properties": {
        "city": {
          "type": "string",
          "description": "City name."
        },
        "postal_code": {
          "type": "integer",
          "description": "ZIP or postal code."
        },
        "state_province": {
          "type": "string",
          "description": "State or province abbreviation (e.g., CA, TX)."
        },
        "street": {
          "type": "string",
          "description": "Street address."
        }
      }
    },
    "PhoneNumber": {
      "type": "object",
      "properties": {
        "number": {
          "type": "string",
          "description": "Phone number string (format varies by district)."
        }
      }
    }
  },
  "examples": [
    {
      "id": 100234,
      "local_id": 54321,
      "student_username": "jdoe2028",
      "name": {
        "first_name": "Jane",
        "middle_name": "Marie",
        "last_name": "Doe"
      },
      "demographics": {
        "birth_date": "2012-08-15",
        "district_entry_date": "2018-09-04",
        "gender": "F",
        "projected_graduation_year": 2028
      },
      "addresses": {
        "home": {
          "city": "Austin",
          "postal_code": 78701,
          "state_province": "TX",
          "street": "123 Main St"
        }
      },
      "phones": {
        "home_phone": {
          "number": "512-555-0100"
        }
      }
    }
  ]
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/powerschool-student"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.