For Developers
Institutions Overview
An Edlink Institution represents a learning organization in the Public Data API, such as a school, district, college, or university. Institutions can be linked to one another through parent/child relationships.
Properties
| Property | Type | Description |
|---|---|---|
id | string | The UUID for the object. $filter operators: equals in not in |
name | string | The institution's name. $filter operators: equals starts with contains in not in is known is unknown |
type | string | The institution type. One of school, district, college, university, lea, government, organization, or other.$filter operators: equals in not in is known is unknown |
descriptor | string | A short label or qualifier for the institution. $filter operators: equals starts with contains in not in is known is unknown |
website | string | The institution's website URL. $filter operators: equals starts with contains in not in is known is unknown |
description | string | A longer description of the institution. $filter operators: equals starts with contains in not in is known is unknown |
logo | string | A URL for the institution's logo. |
addresses | object[] | The institution's addresses. Included when addresses are populated on the response. |
Address Properties
Each entry in addresses has the following properties:
| Property | Type | Description |
|---|---|---|
id | string | The UUID for the address. |
type | string | The address type. One of physical, mailing, post_office_box, billing, shipping, headquarters, branch, or other. |
street | string | The street address. |
unit | string | The unit, suite, or apartment number. |
postal_code | string | The postal or ZIP code. |
city | string | The city. |
state | string | The state or province. |
country | string | The country. |
latitude | number | The latitude coordinate. |
longitude | number | The longitude coordinate. |
JSON Example
{
"id": "00000000-0000-0000-0000-000000000000",
"name": "Lincoln Elementary School",
"type": "school",
"descriptor": null,
"website": "https://lincoln.example.edu",
"description": "A public elementary school serving grades K-5.",
"logo": null,
"addresses": [
{
"id": "11111111-1111-1111-1111-111111111111",
"type": "physical",
"street": "123 Main Street",
"unit": null,
"postal_code": "62701",
"city": "Springfield",
"state": "IL",
"country": "US",
"latitude": 39.7817,
"longitude": -89.6501
}
]
}
