{"openapi":"3.1.0","info":{"title":"Alumni Pathways 2.0","version":"1.1.1"},"tags":[{"name":"Accounts"},{"name":"Datasets"},{"name":"Sequences"},{"name":"Totals"},{"name":"Rankings"},{"name":"Taxonomies"}],"servers":[{"url":"https://api.lightcast.io/alumni-pathways"}],"paths":{"/metadata":{"get":{"tags":["Datasets"],"summary":"Get dataset metadata","description":"Get caller's account's dataset metadata.","parameters":[{"name":"accountId","in":"query","required":false,"description":"Optional account id to resolve metadata against.","schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"example":{"data":{"id":"dataset123","schema_id":"schema-1","account_id":"lcu-123-ddacgr","creation_date":"2024-01-13T15:32:16Z","ingestion_time":"2024-01-14T10:22:41Z","record_count":204,"status":"QUEUED","status_description":"Waiting to be processed.","status_timestamp":"2024-01-14T06:33:10Z","taxonomies":{"lot":"6"},"fields":["field1","field2"],"filterable_fields":["filter1","filter2"],"ranking_dimensions":["ranking_dimension1","ranking_dimension2"],"taxonomy_dimensions":["lotspecocc","lotocc"],"metrics":["metric1","metric2"],"tags":["tag1","tag2"]}},"schema":{"$schema":"http://json-schema.org/draft-07/schema","$id":"responses/get-dataset-metadata.schema.json","type":"object","properties":{"data":{"type":"object","properties":{"id":{"type":"string","pattern":"^[a-zA-Z0-9_-]+$","minLength":1},"schema_id":{"type":"string","pattern":"^[a-zA-Z0-9_-]+$","minLength":1},"account_id":{"type":"string","pattern":"^[a-zA-Z0-9_-]+$","minLength":1},"creation_date":{"description":"ISO-8061 UTC date format","type":"string","pattern":"^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}Z$","minLength":1},"ingestion_time":{"description":"ISO-8061 UTC date format","type":"string","pattern":"^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}Z$","minLength":1},"record_count":{"type":"integer","minimum":0},"status":{"enum":["QUEUED","PROCESSING","SUCCEEDED","FAILED","NA"]},"status_description":{"type":"string","minLength":1},"status_timestamp":{"description":"ISO-8061 UTC date format","type":"string","pattern":"^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}Z$","minLength":1},"taxonomies":{"type":"object","additionalProperties":{"type":"string"}},"fields":{"type":"array","items":{"type":"string","pattern":"^[0-9a-zA-Z,\\.\\s\\-\\'_]+$","minLength":1}},"filterable_fields":{"type":"array","items":{"type":"string","pattern":"^[0-9a-zA-Z,\\.\\s\\-\\'_]+$","minLength":1}},"ranking_dimensions":{"type":"array","items":{"type":"string","pattern":"^[0-9a-zA-Z,\\.\\s\\-\\'_]+$","minLength":1}},"taxonomy_dimensions":{"type":"array","items":{"type":"string","pattern":"^[a-zA-Z0-9_-]+$","minLength":1}},"metrics":{"type":"array","items":{"type":"string","pattern":"^[a-zA-Z0-9_-]+$","minLength":1}},"tags":{"type":"array","items":{"type":"string","pattern":"^[a-zA-Z0-9_-]+$","minLength":1}}},"required":["id","schema_id","account_id","creation_date","ingestion_time","record_count","status","status_description","status_timestamp","taxonomies","fields","filterable_fields","ranking_dimensions","taxonomy_dimensions","metrics","tags"],"additionalProperties":{"type":"string"}}},"required":["data"],"additionalProperties":false}}}},"403":{"$ref":"#/components/responses/403"},"404":{"$ref":"#/components/responses/404"}},"operationId":"alumni_get_metadata"}},"/accounts":{"get":{"tags":["Accounts"],"summary":"List of accounts","description":"Get a list of available accounts by ID.","parameters":[{"$ref":"#/components/parameters/limit"},{"$ref":"#/components/parameters/page"},{"name":"filter","in":"query","description":"Filter on any of the account fields.","example":"account:abc123,customField:val123","schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"example":{"data":{"limit":10,"page":1,"pages_available":1,"accounts":[{"id":"334336","name":"Test Account Name","description":"This is my account","active":true,"active_dataset_id":"dataset123","dataset_count":2,"creation_date":"2024-01-13T15:32:16Z","custom_key":"customValue"}]}},"schema":{"$schema":"http://json-schema.org/draft-07/schema","$id":"responses/list-accounts.schema.json","type":"object","properties":{"data":{"type":"object","properties":{"accounts":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","pattern":"^[a-zA-Z0-9_-]+$","minLength":1},"name":{"type":"string","pattern":"^[0-9a-zA-Z,\\.\\s\\-\\'_]+$","minLength":1},"description":{"type":"string","pattern":"^[0-9a-zA-Z,\\.\\s\\-\\'_]+$","minLength":1},"active":{"type":"boolean","enum":[true,false]},"active_dataset_id":{"anyOf":[{"type":"null"},{"type":"string","pattern":"^[a-zA-Z0-9_-]+$","minLength":1}]},"dataset_count":{"type":"integer","minimum":0},"creation_date":{"description":"ISO-8061 UTC date format","type":"string","pattern":"^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}Z$","minLength":1}},"required":["id","name","description","active","active_dataset_id","dataset_count","creation_date"],"additionalProperties":{"type":"string"}}},"limit":{"type":"integer","minimum":0},"page":{"type":"integer","minimum":0},"pages_available":{"type":"integer","minimum":0}},"required":["accounts","page","pages_available","limit"],"additionalProperties":false}},"required":["data"],"additionalProperties":false}}}},"400":{"$ref":"#/components/responses/400"}},"operationId":"alumni_get_accounts"}},"/sequences":{"get":{"tags":["Sequences"],"summary":"Get sequences","description":"Get available sequence types.","parameters":[{"$ref":"#/components/parameters/accountIdQuery"}],"responses":{"200":{"description":"OK","content":{"application/json":{"example":{"data":{"sequences":[{"sequence":"career_events","fields":["event_order_number"]},{"sequence":"bucketed_career_events","fields":["year_bucket"]}]}},"schema":{"$schema":"http://json-schema.org/draft-07/schema","$id":"responses/list-sequences.schema.json","type":"object","properties":{"data":{"type":"object","properties":{"sequences":{"type":"array","items":{"type":"object","properties":{"sequence":{"type":"string"},"fields":{"type":"array","items":{"type":"string"}}},"required":["sequence","fields"],"additionalProperties":false}}},"required":["sequences"],"additionalProperties":false}},"required":["data"],"additionalProperties":false}}}},"404":{"$ref":"#/components/responses/404"}},"operationId":"alumni_get_sequences"}},"/sequences/{sequenceType}":{"post":{"tags":["Sequences"],"summary":"Search sequences","description":"Filter for sequences in a dataset.","parameters":[{"$ref":"#/components/parameters/accountIdQuery"},{"$ref":"#/components/parameters/sequenceType"}],"requestBody":{"content":{"application/json":{"example":{"filter":{"career_events":{"event_type":["employment"],"high_level_grouping":["11-0000"]}},"sequence":{"by":"career_events_estimated_wage","type":"next","field":"event_type"}},"schema":{"$schema":"http://json-schema.org/draft-07/schema","$id":"requests/sequences.schema.json","type":"object","properties":{"filter":{},"sequence":{"type":"object","properties":{"type":{"enum":["next","previous"]},"field":{"type":"string","minLength":1},"by":{"type":"string","minLength":1},"limit":{"type":"integer","minimum":0},"include":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"exclude":{"type":"array","items":{"type":"string","minLength":1},"minItems":1},"extra_metrics":{"type":"array","items":{"type":"string","minLength":1},"minItems":1}},"required":["type","field","by"],"additionalProperties":false}},"required":["filter","sequence"],"additionalProperties":false}}},"required":true},"responses":{"200":{"description":"OK","content":{"application/json":{"example":{"data":{"sequence":{"buckets":[{"key":null,"value":"employment","career_events_estimated_wage":58474.44},{"key":null,"value":"education","career_events_estimated_wage":null}],"sequence_type":"next","sequence_dimension":"career_events","order_by":"career_events_estimated_wage","field":"event_type","limit":10},"totals":{"career_events_estimated_wage":58474.44}}},"schema":{"$schema":"http://json-schema.org/draft-07/schema","$id":"responses/sequences.schema.json","type":"object","properties":{"data":{"type":"object","properties":{"sequence":{"type":"object","properties":{"buckets":{"type":"array","items":{"type":"object"}},"sequence_type":{"type":"string"},"sequence_dimension":{"type":"string"},"order_by":{"type":"string"},"field":{"type":"string"},"limit":{"type":"integer"}},"required":["buckets","sequence_type","sequence_dimension","order_by","field","limit"],"additionalProperties":false},"totals":{"type":"object"}},"required":["sequence","totals"],"additionalProperties":false}},"required":["data"],"additionalProperties":false}}}},"400":{"$ref":"#/components/responses/400"},"404":{"$ref":"#/components/responses/404"}},"operationId":"alumni_post_sequences"}},"/totals":{"post":{"tags":["Totals"],"summary":"Get account totals","description":"Get summary metrics on all alumni matching the filters.","parameters":[{"$ref":"#/components/parameters/accountIdQuery"}],"requestBody":{"content":{"application/json":{"example":{"filter":{"title_name":["Web Developer"]},"metrics":["alumni"]},"schema":{"$schema":"http://json-schema.org/draft-07/schema","$id":"requests/totals.schema.json","type":"object","additionalProperties":false,"properties":{"filter":{"title":"Add filters to your postings query","type":"object","properties":{"academic_unit":{"title":"Filter by the id of the alumni's academic unit provided by the institution","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).\n\nNot all accounts will have this field, check [meta](#get-account-account_id-meta) filters and facets for availability.","example":["Q29sbGVnZSBvZiBTY2llbmNlCg=="],"type":["array","object"],"properties":{},"minItems":1},"academic_unit_name":{"title":"Filter by the name of the alumni's academic unit provided by the institution","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).\n\nNot all accounts will have this field, check [meta](#get-account-account_id-meta) filters and facets for availability.","example":["College of Science"],"type":["array","object"],"properties":{},"minItems":1},"academic_subunit":{"title":"Filter by the id of the alumni's academic sub unit provided by the institution","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).\n\nNot all account will have this field, check [meta](#get-account-account_id-meta) filters and facets for availability.","example":["RGVwYXJ0bWVudCBvZiBCaW9sb2dpY2FsIFNjaWVuY2Vz"],"type":["array","object"],"properties":{},"minItems":1},"academic_subunit_name":{"title":"Filtery by the name of the alumni's academic sub unit provided by the institution","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).\n\nNot all accounts will have this field, check [meta](#get-account-account_id-meta) filters and facets for availability.","example":["Department of Biological Sciences"],"type":["array","object"],"properties":{},"minItems":1},"campus":{"title":"Filter by the id of the campus the alumni attended as provided by the institution","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).\n\nNot all accounts will have this field, check [meta](#get-account-account_id-meta) filters and facets for availability.","example":["V1NVIFRyaS1DaXRpZXM="],"type":["array","object"],"properties":{},"minItems":1},"campus_name":{"title":"Filter by the name of the campus the alumni attended as provided by the institution","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).\n\nNot all accounts will have this field, check [meta](#get-account-account_id-meta) filters and facets for availability.","example":["WSU Tri-Cities"],"type":["array","object"],"properties":{},"minItems":1},"country":{"title":"Filter by country id","default":["9b202ecbc6d45c6d8901d989a918878397a3eb9d00e8f48022fc051b19d21a1d"],"type":"array","items":{"type":"string","minLength":1},"minItems":1},"country_name":{"title":"Filter by country name","default":["US"],"type":"array","items":{"type":"string","minLength":1,"enum":["US","GB","CA"]},"minItems":1},"city":{"title":"Filter by city id","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["ChIJ0WHAIi0hoFQRbK3q5g0V_T4"],"type":["array","object"],"properties":{},"minItems":1},"city_name":{"title":"Filter by city names with state abbreviations","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Moscow, ID"],"type":["array","object"],"properties":{},"minItems":1},"county":{"title":"Filter by Lightcast county (FIPS) codes","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[16057],"type":["array","object"],"properties":{},"minItems":1},"county_name":{"title":"Filter by Lightcast county (FIPS) names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Latah, ID"],"type":["array","object"],"properties":{},"minItems":1},"fips":{"title":"Filter by Lightcast county (FIPS) codes","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[16057],"type":["array","object"],"properties":{},"minItems":1},"fips_name":{"title":"Filter by Lightcast county (FIPS) names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Latah, ID"],"type":["array","object"],"properties":{},"minItems":1},"msa":{"title":"Filter by Lightcast MSA codes (metro or micro)","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[34140],"type":["array","object"],"properties":{},"minItems":1},"msa_name":{"title":"Filter by Lightcast MSA names (metro or micro)","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Moscow, ID"],"type":["array","object"],"properties":{},"minItems":1},"state":{"title":"Filter by state 2-digit FIPS","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[16],"type":["array","object"],"properties":{},"minItems":1},"state_name":{"title":"Filter by state names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Idaho"],"type":["array","object"],"properties":{},"minItems":1},"title":{"title":"Filter by job title codes","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["53.30837"],"type":["array","object"],"properties":{},"minItems":1},"title_name":{"title":"Filter by job title names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Web Developer"],"type":["array","object"],"properties":{},"minItems":1},"onet":{"title":"Filter by Lightcast O*NET codes","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["29-1141.00"],"type":["array","object"],"properties":{},"minItems":1},"onet_name":{"title":"Filter by Lightcast O*NET names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Registered Nurses"],"type":["array","object"],"properties":{},"minItems":1},"soc2":{"title":"Filter by Lightcast level 2 SOC codes","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["11-0000"],"type":["array","object"],"properties":{},"minItems":1},"soc2_name":{"title":"Filter by Lightcast level 2 SOC names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Management Occupations"],"type":["array","object"],"properties":{},"minItems":1},"soc3":{"title":"Filter by Lightcast level 3 SOC codes","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["11-1000"],"type":["array","object"],"properties":{},"minItems":1},"soc3_name":{"title":"Filter by Lightcast level 3 SOC names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Top Executives"],"type":["array","object"],"properties":{},"minItems":1},"soc4":{"title":"Filter by Lightcast level 4 SOC codes","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["11-1010"],"type":["array","object"],"properties":{},"minItems":1},"soc4_name":{"title":"Filter by Lightcast level 4 SOC names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Chief Executives"],"type":["array","object"],"properties":{},"minItems":1},"soc5":{"title":"Filter by Lightcast level 5 SOC codes","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["11-1011"],"type":["array","object"],"properties":{},"minItems":1},"soc5_name":{"title":"Filter by Lightcast level 5 SOC names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Chief Executives"],"type":["array","object"],"properties":{},"minItems":1},"company":{"title":"Filter by normalized company codes","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["NC95f2bd68-11c7-4140-92ab-7b82fd2d9f7e"],"type":["array","object"],"properties":{},"minItems":1},"company_name":{"title":"Filter by normalized company names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Microsoft"],"type":["array","object"],"properties":{},"minItems":1},"schools":{"title":"Filter by school ids","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["53bff579e4b04710d09fde45"],"type":["array","object"],"properties":{},"minItems":1},"schools_name":{"title":"Filter by school name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["University of Idaho"],"type":["array","object"],"properties":{},"minItems":1},"naics2":{"title":"Filter by Lightcast level 2 NAICS codes","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[51],"type":["array","object"],"properties":{},"minItems":1},"naics2_name":{"title":"Filter by Lightcast level 2 NAICS names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Information"],"type":["array","object"],"properties":{},"minItems":1},"naics3":{"title":"Filter by Lightcast level 3 NAICS codes","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[511],"type":["array","object"],"properties":{},"minItems":1},"naics3_name":{"title":"Filter by Lightcast level 3 NAICS names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Publishing Industries (except Internet)"],"type":["array","object"],"properties":{},"minItems":1},"naics4":{"title":"Filter by Lightcast level 4 NAICS codes","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[5111],"type":["array","object"],"properties":{},"minItems":1},"naics4_name":{"title":"Filter by Lightcast level 4 NAICS names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Newspaper, Periodical, Book, and Directory Publishers"],"type":["array","object"],"properties":{},"minItems":1},"naics5":{"title":"Filter by Lightcast level 5 NAICS codes","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[51113],"type":["array","object"],"properties":{},"minItems":1},"naics5_name":{"title":"Filter by Lightcast level 5 NAICS names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Book Publishers"],"type":["array","object"],"properties":{},"minItems":1},"naics6":{"title":"Filter by Lightcast level 6 NAICS codes","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[511130],"type":["array","object"],"properties":{},"minItems":1},"naics6_name":{"title":"Filter by Lightcast level 6 NAICS names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Book Publishers"],"type":["array","object"],"properties":{},"minItems":1},"lot_specialized_occupation":{"title":"Filter by specialized occupation ids","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["27121011"],"type":["array","object"],"minItems":1,"properties":{},"additionalProperties":false},"lot_specialized_occupation_name":{"title":"Filter by specialized occupation names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["E-Commerce Assistant"],"type":["array","object"],"minItems":1,"properties":{},"additionalProperties":false},"lot_occupation":{"title":"Filter by occupation ids","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["271210"],"type":["array","object"],"minItems":1,"properties":{},"additionalProperties":false},"lot_occupation_name":{"title":"Filter by occupation names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["E-Commerce Analyst"],"type":["array","object"],"minItems":1,"properties":{},"additionalProperties":false},"lot_occupation_group":{"title":"Filter by occupation group ids","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["2712"],"type":["array","object"],"minItems":1,"properties":{},"additionalProperties":false},"lot_occupation_group_name":{"title":"Filter by occupation group names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Marketing Specialists"],"type":["array","object"],"minItems":1,"properties":{},"additionalProperties":false},"lot_career_area":{"title":"Filter by career area ids","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["27"],"type":["array","object"],"minItems":1,"properties":{},"additionalProperties":false},"lot_career_area_name":{"title":"Filter by career area names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Marketing and Public Relations"],"type":["array","object"],"minItems":1,"properties":{},"additionalProperties":false},"skills":{"title":"Filter by skill codes (any skill type)","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["KS7G2FY662ZPN6H4DZND"],"type":["array","object"],"properties":{},"minItems":1},"skills_name":{"title":"Filter by skill names (any skill type)","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["SQL (Programming Language)"],"type":["array","object"],"properties":{},"minItems":1},"cip2":{"title":"Filter by CIP 2-digit code based off the programs provided by the institution","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["52"],"type":["array","object"],"properties":{},"minItems":1},"cip2_name":{"title":"Filter by CIP 2-digit names based off the programs provided by the institution","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Business, Management, Marketing, and Related Support Services"],"type":["array","object"],"properties":{},"minItems":1},"cip6":{"title":"Filter by CIP 6-digit code based off the programs provided by the institution","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["52.0201"],"type":["array","object"],"properties":{},"minItems":1},"cip6_name":{"title":"Filter by CIP 6-digit names based off the programs provided by the institution","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Business Administration and Management, General"],"type":["array","object"],"properties":{},"minItems":1},"program":{"title":"Filter by id of the program provided by the institution","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["0bbb843c75b8cb93ceb9"],"type":["array","object"],"properties":{},"minItems":1},"program_name":{"title":"Filter by program name provided by the institution","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Business Administration"],"type":["array","object"],"properties":{},"minItems":1},"inst_gradyear":{"title":"Filter by alumni graduation years","description":"`start` and `end` may be omitted to make them unbounded.","type":"object","properties":{"start":{"title":"Earliest alumni graduation date","example":"2015","type":["string","integer"]},"end":{"title":"Latest alumni graduation date","example":"2017","type":["string","integer"]}},"additionalProperties":false},"is_graduate":{"title":"Filter by graduation status provided by the institution","example":[true],"type":"array","minItems":1},"degree_level":{"title":"Filter by id of the degree level provided by the institution","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["9cd8b048d5af8f4f0bf9"],"type":["array","object"],"properties":{},"minItems":1},"degree_level_name":{"title":"Filter by degree level name provided by the institution","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Bachelor of Science"],"type":["array","object"],"properties":{},"minItems":1},"loc_status":{"title":"Filter by id of the alumni's location status","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["6a696de6202f59d891c9"],"type":["array","object"],"properties":{},"minItems":1},"loc_status_name":{"title":"Filter by alumni's location status","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["RESIDES IN REGION"],"type":["array","object"],"properties":{},"minItems":1},"emp_status":{"title":"Filter by id of the alumni's employment status","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["64a03a88861cfccf4362"],"type":["array","object"],"properties":{},"minItems":1},"race":{"title":"Filter by the id of an alumni's race","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Pacific Islander"],"type":["array","object"],"properties":{},"minItems":1},"ethnicity":{"title":"Filter by the id of an alumni's ethnicity","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Hispanic"],"type":["array","object"],"properties":{},"minItems":1},"gender":{"title":"Filter by the id of an alumni's gender","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["male"],"type":["array","object"],"properties":{},"minItems":1},"age_grad_band":{"title":"Filter by the id of an alumni's age band of graduation","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["20-24"],"type":["array","object"],"properties":{},"minItems":1},"race_name":{"title":"Filter by alumni's race name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Pacific Islander"],"type":["array","object"],"properties":{},"minItems":1},"ethnicity_name":{"title":"Filter by alumni's ethnicity name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Hispanic"],"type":["array","object"],"properties":{},"minItems":1},"gender_name":{"title":"Filter by alumni's gender name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["male"],"type":["array","object"],"properties":{},"minItems":1},"age_grad_band_name":{"title":"Filter by alumni's age band of graduation name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["20-24"],"type":["array","object"],"properties":{},"minItems":1},"education_status":{"title":"Filter by alumni's education status id","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["WOgkRibmrQRX"],"type":["array","object"],"properties":{},"minItems":1},"education_status_name":{"title":"Filter by alumni's education status name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Continued"],"type":["array","object"],"properties":{},"minItems":1},"birth_year":{"title":"Filter by alumni's birth year","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["1979"],"type":["array","object"],"properties":{},"minItems":1},"emp_status_name":{"title":"Filter by alumni's employment status","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["EMPLOYED IN FIELD"],"type":["array","object"],"properties":{},"minItems":1},"additional_education_name":{"title":"Filter by alumni's additional education name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Pursued subsequent education at our institution"],"type":["array","object"],"properties":{},"minItems":1},"additional_education":{"title":"Filter by alumni's additional education","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["UHVyc3VlZCBzdWJzZXF1ZW50IGVkdWNhdGlvbiBhdCBvdGhlciBpbnN0aXR1dGlvbnM="],"type":["array","object"],"properties":{},"minItems":1},"nsc_completion_date":{"title":"Filter by alumni's completion date","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["2003-07-17"],"type":["array","object"],"properties":{},"minItems":1},"nsc_degree_level_name":{"title":"Filter by alumni's degree level name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["ASSOCIATES"],"type":["array","object"],"properties":{},"minItems":1},"nsc_degree_level_title_name":{"title":"Filter by alumni's degree level title name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Associate of Arts"],"type":["array","object"],"properties":{},"minItems":1},"nsc_degree_level_title":{"title":"Filter by alumni's degree level title","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["QXNzb2NpYXRlIG9mIEFydHM="],"type":["array","object"],"properties":{},"minItems":1},"nsc_degree_level":{"title":"Filter by alumni's degree level","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["UPTHiBKJsjUQiznA9xsA9yb1Rbcoxrr5NgYAVCLe"],"type":["array","object"],"properties":{},"minItems":1},"nsc_end_date":{"title":"Filter by alumni's end date","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["2023-06-05"],"type":["array","object"],"properties":{},"minItems":1},"nsc_enroll_status_name":{"title":"Filter by alumni's enrollment status name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Full Time"],"type":["array","object"],"properties":{},"minItems":1},"nsc_enroll_status":{"title":"Filter by alumni's enrollment status","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["RlVMTCBUSU1F"],"type":["array","object"],"properties":{},"minItems":1},"nsc_enrollment_level_name":{"title":"Filter by alumni's enrollment level name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Associates"],"type":["array","object"],"properties":{},"minItems":1},"nsc_enrollment_level":{"title":"Filter by alumni's enrollment level","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["ASSOCIATES"],"type":["array","object"],"properties":{},"minItems":1},"nsc_institution_ipeds":{"title":"Filter by alumni's institution ipeds id","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[113528],"type":["array","object"],"properties":{},"minItems":1},"nsc_institution_ipeds_name":{"title":"Filter by alumni's institution ipeds name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["University of Idaho"],"type":["array","object"],"properties":{},"minItems":1},"nsc_institution_ope_id":{"title":"Filter by alumni's institution ope id","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["831777-77"],"type":["array","object"],"properties":{},"minItems":1},"nsc_institution_school_category_name":{"title":"Filter by alumni's institution school category name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Private Not For-Profit"],"type":["array","object"],"properties":{},"minItems":1},"nsc_institution_school_category":{"title":"Filter by alumni's institution school category","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["PRIV-NFP"],"type":["array","object"],"properties":{},"minItems":1},"nsc_institution_school_name":{"title":"Filter by alumni's institution school name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["DEEP SPRINGS COLLEGE"],"type":["array","object"],"properties":{},"minItems":1},"nsc_institution_school_state_name":{"title":"Filter by alumni's institution school state name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Arizona"],"type":["array","object"],"properties":{},"minItems":1},"nsc_institution_school_state":{"title":"Filter by alumni's institution school state","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["4"],"type":["array","object"],"properties":{},"minItems":1},"nsc_institution_school_type_name":{"title":"Filter by alumni's institution school type name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Four year"],"type":["array","object"],"properties":{},"minItems":1},"nsc_institution_school_type":{"title":"Filter by alumni's institution school type","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["4"],"type":["array","object"],"properties":{},"minItems":1},"nsc_num_semesters":{"title":"Filter by alumni's number of semesters","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[5],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_completion_date":{"title":"Filter by alumni's prior completion date","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["2021-01-09"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_degree_level_name":{"title":"Filter by alumni's prior degree level name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["ASSOCIATES"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_degree_level_title_name":{"title":"Filter by alumni's prior degree level title name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Associate of Arts"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_degree_level_title":{"title":"Filter by alumni's prior degree level title","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["QXNzb2NpYXRlIG9mIEFydHM="],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_degree_level":{"title":"Filter by alumni's prior degree level","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["UPTHiBKJsjUQiznA9xsA9yb1Rbcoxrr5NgYAVCLe"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_end_date":{"title":"Filter by alumni's prior end date","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["2021-07-13"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_enroll_status_name":{"title":"Filter by alumni's prior enrollment status name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Half Time"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_enroll_status":{"title":"Filter by alumni's prior enrollment status","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["MS8yIFRJTUU="],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_enrollment_level_name":{"title":"Filter by alumni's prior enrollment level name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Associates"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_enrollment_level":{"title":"Filter by alumni's prior enrollment nsc_prior_degree_level","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["ASSOCIATES"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_institution_ipeds":{"title":"Filter by alumni's prior institution ipeds id","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[113528],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_institution_ipeds_name":{"title":"Filter by alumni's prior institution ipeds name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["University of Idaho"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_institution_ope_id":{"title":"Filter by alumni's prior institution ope id","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["413521-69"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_institution_school_category_name":{"title":"Filter by alumni's prior institution school category name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Public"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_institution_school_category":{"title":"Filter by alumni's prior institution school category","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["PUB"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_institution_school":{"title":"Filter by alumni's prior institution school","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["879f726747ef3fdd65f7b0f6df0d6384c0a9445c2a9b31cea51d5645e9ad4ca9"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_institution_school_name":{"title":"Filter by alumni's prior institution school name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["PIERRES SCHOOL OF COSMETOLOGY"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_institution_school_state_name":{"title":"Filter by alumni's prior institution school state name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Arkansas"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_institution_school_state":{"title":"Filter by alumni's prior institution school state","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["5"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_institution_school_type_name":{"title":"Filter by alumni's prior institution school type name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Two year"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_institution_school_type":{"title":"Filter by alumni's prior institution school type","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["2"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_num_semesters":{"title":"Filter by alumni's prior number of semesters","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[6],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_program_cip_name":{"title":"Filter by alumni's prior program cip name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["3-D Modeling and Design Technology/Technician"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_program_cip":{"title":"Filter by alumni's prior program cip","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["15.1307"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_start_date":{"title":"Filter by alumni's prior start date","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["1992-08-05"],"type":["array","object"],"properties":{},"minItems":1},"nsc_program_cip_name":{"title":"Filter by alumni's program cip name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Actuarial Science"],"type":["array","object"],"properties":{},"minItems":1},"nsc_program_cip":{"title":"Filter by alumni's program cip","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["52.1304"],"type":["array","object"],"properties":{},"minItems":1},"nsc_start_date":{"title":"Filter by alumni's start date","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["1996-06-20"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_completion_date":{"title":"Filter by alumni's subsequent completion date","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["2021-07-02"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_degree_level_name":{"title":"Filter by alumni's subsequent degree level name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["BACHELORS"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_degree_level_title_name":{"title":"Filter by alumni's subsequent degree level title name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Bachelor of Arts"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_degree_level_title":{"title":"Filter by alumni's subsequent degree level title","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["QmFjaGVsb3Igb2YgQXJ0cw=="],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_degree_level":{"title":"Filter by alumni's subsequent degree level","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["SawiAejPwYWZhLYDda6ggXpUQZ8ygFolNgYAVCLe"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_end_date":{"title":"Filter by alumni's subsequent end date","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["2023-01-23"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_enroll_status_name":{"title":"Filter by alumni's subsequent enrollment status name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Deceased"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_enroll_status":{"title":"Filter by alumni's subsequent enrollment status","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["REVDRUFTRUQ="],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_enrollment_level_name":{"title":"Filter by alumni's subsequent enrollment level name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Bachelors"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_enrollment_level":{"title":"Filter by alumni's subsequent enrollment level","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["BACHELORS"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_institution_ipeds":{"title":"Filter by alumni's subsequent institution ipeds id","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[176910],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_institution_ipeds_name":{"title":"Filter by alumni's subsequent institution ipeds name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["University of Idaho"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_institution_ope_id":{"title":"Filter by alumni's subsequent institution ope id","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["865681-20"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_institution_school_category_name":{"title":"Filter by alumni's subsequent institution school category name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Private For-Profit"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_institution_school_category":{"title":"Filter by alumni's subsequent institution school category","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["PRIV-FP"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_institution_school":{"title":"Filter by alumni's subsequent institution school","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["879f726747ef3fdd65f7b0f6df0d6384c0a9445c2a9b31cea51d5645e9ad4ca9"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_institution_school_name":{"title":"Filter by alumni's subsequent institution school name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Central Christian College of the Bible"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_institution_school_state_name":{"title":"Filter by alumni's subsequent institution school state name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Colorado"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_institution_school_state":{"title":"Filter by alumni's subsequent institution school state","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["8"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_institution_school_type_name":{"title":"Filter by alumni's subsequent institution school type name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Four year"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_institution_school_type":{"title":"Filter by alumni's subsequent institution school type","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["4"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_num_semesters":{"title":"Filter by alumni's subsequent number of semesters","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[3],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_program_cip_name":{"title":"Filter by alumni's subsequent program cip name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Abdominal Radiology Fellowship Program"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_program_cip":{"title":"Filter by alumni's subsequent program cip","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["61.2603"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_start_date":{"title":"Filter by alumni's subsequent start date","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["2022-09-25"],"type":["array","object"],"properties":{},"minItems":1},"nsc_match_status":{"title":"Filter by alumni matched with NSC data","description":"This filters to alumni that are matched with NSC data.","type":"boolean","example":true},"is_job_after_grad_year":{"title":"Filter by alumni's job type","description":"This indicates whether a profile's current job started after graduation.\n\nNot all accounts will have this field, check [meta](#get-account-account_id-meta) filters and facets for availability.","type":"boolean","example":true},"is_highest_level_award":{"title":"Filter by alumni's degree status","description":"This filters to profiles that represent the highest and the most recent awarded degree.\n\nNot all accounts will have this field, check [meta](#get-account-account_id-meta) filters and facets for availability.","type":"boolean","example":true},"match_status":{"title":"Filter by alumni matched with a profile","description":"This filters to alumni that are matched to a profile.","type":"boolean","example":true},"match_score":{"title":"Filter by alumni match score","description":"This filters to alumni that are matched to a match score range","type":"object","properties":{"lower_bound":{"title":"Lower bound for match score (inclusive).","type":"number","minimum":0,"example":0.01},"upper_bound":{"title":"Upper bound for match score (inclusive).","type":"number","minimum":0,"example":0.8}},"additionalProperties":false},"nsc_prior_is_completion":{"title":"Filter by alumni with prior completions","description":"This filters to alumni that are matched to a profile.","type":"boolean","example":true},"nsc_has_prior":{"title":"Filter by alumni with prior education","description":"This filters to alumni that are matched to a profile.","type":"boolean","example":true},"nsc_subsequent_is_completion":{"title":"Filter by alumni with subsequent completions","description":"This filters to alumni that are matched to a profile.","type":"boolean","example":true},"nsc_has_subsequent":{"title":"Filter by alumni with subsequent education","description":"This filters to alumni that are matched to a profile.","type":"boolean","example":true},"bucketed_career_events":{"title":"Filter by career events","description":"An object or list of objects describing career events. Career events in a list will be ANDed together, fields within a bucketed_career_events object will be ANDed together, values in an bucketed_career_events field will be ORed together.","type":["object","array"],"properties":{"organization":{"title":"Filter by organization","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["employer"],"properties":{},"minItems":1},"event_type":{"title":"Filter by event type","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["employment"],"properties":{},"minItems":1},"sequence_order_number":{"title":"Filter by sequence order number","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["1"],"properties":{},"minItems":1},"high_level_grouping":{"title":"Filter by high level grouping","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["39-0000"],"properties":{},"minItems":1},"low_level_grouping":{"title":"Filter by low level grouping","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["39-1022"],"properties":{},"minItems":1},"career_events_estimated_wage":{"title":"Filter by alumni's estimated wage","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[63000],"type":["array","object"],"properties":{},"minItems":1},"career_events_event_in_field":{"title":"Filter by alumni that were in field during this event","description":"This filters to alumni that were in field for this event.","type":"boolean","example":true}},"additionalProperties":false,"items":{"description":"An object describing a single career event.","type":"object","properties":{"organization":{"title":"Filter by organization","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["employer"],"properties":{},"minItems":1},"event_type":{"title":"Filter by event type","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["employment"],"properties":{},"minItems":1},"sequence_order_number":{"title":"Filter by sequence order number","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["1"],"properties":{},"minItems":1},"high_level_grouping":{"title":"Filter by high level grouping","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["39-0000"],"properties":{},"minItems":1},"low_level_grouping":{"title":"Filter by low level grouping","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["39-1022"],"properties":{},"minItems":1},"career_events_estimated_wage":{"title":"Filter by alumni's estimated wage","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[63000],"type":["array","object"],"properties":{},"minItems":1},"career_events_event_in_field":{"title":"Filter by alumni that were in field during this event","description":"This filters to alumni that were in field for this event.","type":"boolean","example":true}},"additionalProperties":false},"minItems":1},"career_events":{"title":"Filter by career events","description":"An object or list of objects describing career events. Career events in a list will be ANDed together, fields within an career_events object will be ANDed together, values in an career_events field will be ORed together.","type":["object","array"],"properties":{"organization":{"title":"Filter by organization","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["employer"],"properties":{},"minItems":1},"event_type":{"title":"Filter by event type","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["employment"],"properties":{},"minItems":1},"sequence_order_number":{"title":"Filter by sequence order number","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["1"],"properties":{},"minItems":1},"high_level_grouping":{"title":"Filter by high level grouping","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["39-0000"],"properties":{},"minItems":1},"low_level_grouping":{"title":"Filter by low level grouping","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["39-1022"],"properties":{},"minItems":1},"career_events_estimated_wage":{"title":"Filter by alumni's estimated wage","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[63000],"type":["array","object"],"properties":{},"minItems":1},"career_events_event_in_field":{"title":"Filter by alumni that were in field during this event","description":"This filters to alumni that were in field for this event.","type":"boolean","example":true}},"additionalProperties":false,"items":{"description":"An object describing a single career event.","type":"object","properties":{"organization":{"title":"Filter by organization","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["employer"],"properties":{},"minItems":1},"event_type":{"title":"Filter by event type","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["employment"],"properties":{},"minItems":1},"sequence_order_number":{"title":"Filter by sequence order number","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["1"],"properties":{},"minItems":1},"high_level_grouping":{"title":"Filter by high level grouping","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["39-0000"],"properties":{},"minItems":1},"low_level_grouping":{"title":"Filter by low level grouping","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["39-1022"],"properties":{},"minItems":1},"career_events_estimated_wage":{"title":"Filter by alumni's estimated wage","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[63000],"type":["array","object"],"properties":{},"minItems":1},"career_events_event_in_field":{"title":"Filter by alumni that were in field during this event","description":"This filters to alumni that were in field for this event.","type":"boolean","example":true}},"additionalProperties":false},"minItems":1}},"additionalProperties":false},"metrics":{"title":"Metrics to include in the summary","description":"Some metrics may be approximations for performance reasons.","default":["alumni"],"type":"array","items":{"type":"string","enum":["alumni","unique_schools","unique_companies","unique_persons","average_wage","employed_in_field","estimated_wage","match_status","bucketed_career_events_event_in_field","bucketed_career_events_estimated_wage","bucketed_career_events","career_events_event_in_field","career_events_estimated_wage","career_events","reside_in_region"]},"minItems":1}},"required":["filter"]}}},"required":true},"responses":{"200":{"description":"OK","content":{"application/json":{"example":{"data":{"totals":{"alumni":39}}},"schema":{"$schema":"http://json-schema.org/draft-07/schema","$id":"responses/totals.schema.json","type":"object","properties":{"data":{"type":"object","properties":{"totals":{"type":"object","properties":{"alumni":{"type":"integer","minimum":0},"collectionCount":{"type":"integer","minimum":0},"average":{"type":"number","minimum":0},"median":{"type":"number","minimum":0},"percentile":{"type":"integer","minimum":0},"unique":{"type":"integer","minimum":0}},"required":["alumni"],"additionalProperties":true}},"required":["totals"],"additionalProperties":false}},"required":["data"],"additionalProperties":false}}}},"400":{"$ref":"#/components/responses/400"},"404":{"$ref":"#/components/responses/404"}},"operationId":"alumni_post_totals"}},"/rankings":{"get":{"tags":["Rankings"],"summary":"Get rankings","description":"Get available rankings.","parameters":[{"$ref":"#/components/parameters/accountIdQuery"}],"responses":{"200":{"description":"OK","content":{"application/json":{"example":{"data":["company","title"]},"schema":{"$schema":"http://json-schema.org/draft-07/schema","$id":"responses/list-rankings.schema.json","type":"object","properties":{"data":{"type":"array","items":{"type":"string","additionalProperties":false}}},"required":["data"],"additionalProperties":false}}}},"404":{"$ref":"#/components/responses/404"}},"operationId":"alumni_get_rankings"}},"/rankings/{rankingDimension}":{"post":{"tags":["Rankings"],"summary":"Search rankings","description":"Filter for specific items in a dataset.","parameters":[{"$ref":"#/components/parameters/accountIdQuery"},{"$ref":"#/components/parameters/rankingDimension"}],"requestBody":{"content":{"application/json":{"example":{"filter":{"state":[16]},"rank":{"by":"alumni","limit":20,"extra_metrics":["unique_schools","employed_in_field"]}},"schema":{"$schema":"http://json-schema.org/draft-07/schema","$id":"requests/ranking.schema.json","type":"object","additionalProperties":false,"properties":{"filter":{"title":"Add filters to your postings query","type":"object","properties":{"academic_unit":{"title":"Filter by the id of the alumni's academic unit provided by the institution","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).\n\nNot all accounts will have this field, check [meta](#get-account-account_id-meta) filters and facets for availability.","example":["Q29sbGVnZSBvZiBTY2llbmNlCg=="],"type":["array","object"],"properties":{},"minItems":1},"academic_unit_name":{"title":"Filter by the name of the alumni's academic unit provided by the institution","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).\n\nNot all accounts will have this field, check [meta](#get-account-account_id-meta) filters and facets for availability.","example":["College of Science"],"type":["array","object"],"properties":{},"minItems":1},"academic_subunit":{"title":"Filter by the id of the alumni's academic sub unit provided by the institution","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).\n\nNot all account will have this field, check [meta](#get-account-account_id-meta) filters and facets for availability.","example":["RGVwYXJ0bWVudCBvZiBCaW9sb2dpY2FsIFNjaWVuY2Vz"],"type":["array","object"],"properties":{},"minItems":1},"academic_subunit_name":{"title":"Filtery by the name of the alumni's academic sub unit provided by the institution","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).\n\nNot all accounts will have this field, check [meta](#get-account-account_id-meta) filters and facets for availability.","example":["Department of Biological Sciences"],"type":["array","object"],"properties":{},"minItems":1},"campus":{"title":"Filter by the id of the campus the alumni attended as provided by the institution","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).\n\nNot all accounts will have this field, check [meta](#get-account-account_id-meta) filters and facets for availability.","example":["V1NVIFRyaS1DaXRpZXM="],"type":["array","object"],"properties":{},"minItems":1},"campus_name":{"title":"Filter by the name of the campus the alumni attended as provided by the institution","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).\n\nNot all accounts will have this field, check [meta](#get-account-account_id-meta) filters and facets for availability.","example":["WSU Tri-Cities"],"type":["array","object"],"properties":{},"minItems":1},"country":{"title":"Filter by country id","default":["9b202ecbc6d45c6d8901d989a918878397a3eb9d00e8f48022fc051b19d21a1d"],"type":"array","items":{"type":"string","minLength":1},"minItems":1},"country_name":{"title":"Filter by country name","default":["US"],"type":"array","items":{"type":"string","minLength":1,"enum":["US","GB","CA"]},"minItems":1},"city":{"title":"Filter by city id","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["ChIJ0WHAIi0hoFQRbK3q5g0V_T4"],"type":["array","object"],"properties":{},"minItems":1},"city_name":{"title":"Filter by city names with state abbreviations","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Moscow, ID"],"type":["array","object"],"properties":{},"minItems":1},"county":{"title":"Filter by Lightcast county (FIPS) codes","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[16057],"type":["array","object"],"properties":{},"minItems":1},"county_name":{"title":"Filter by Lightcast county (FIPS) names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Latah, ID"],"type":["array","object"],"properties":{},"minItems":1},"fips":{"title":"Filter by Lightcast county (FIPS) codes","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[16057],"type":["array","object"],"properties":{},"minItems":1},"fips_name":{"title":"Filter by Lightcast county (FIPS) names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Latah, ID"],"type":["array","object"],"properties":{},"minItems":1},"msa":{"title":"Filter by Lightcast MSA codes (metro or micro)","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[34140],"type":["array","object"],"properties":{},"minItems":1},"msa_name":{"title":"Filter by Lightcast MSA names (metro or micro)","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Moscow, ID"],"type":["array","object"],"properties":{},"minItems":1},"state":{"title":"Filter by state 2-digit FIPS","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[16],"type":["array","object"],"properties":{},"minItems":1},"state_name":{"title":"Filter by state names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Idaho"],"type":["array","object"],"properties":{},"minItems":1},"title":{"title":"Filter by job title codes","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["53.30837"],"type":["array","object"],"properties":{},"minItems":1},"title_name":{"title":"Filter by job title names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Web Developer"],"type":["array","object"],"properties":{},"minItems":1},"onet":{"title":"Filter by Lightcast O*NET codes","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["29-1141.00"],"type":["array","object"],"properties":{},"minItems":1},"onet_name":{"title":"Filter by Lightcast O*NET names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Registered Nurses"],"type":["array","object"],"properties":{},"minItems":1},"soc2":{"title":"Filter by Lightcast level 2 SOC codes","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["11-0000"],"type":["array","object"],"properties":{},"minItems":1},"soc2_name":{"title":"Filter by Lightcast level 2 SOC names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Management Occupations"],"type":["array","object"],"properties":{},"minItems":1},"soc3":{"title":"Filter by Lightcast level 3 SOC codes","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["11-1000"],"type":["array","object"],"properties":{},"minItems":1},"soc3_name":{"title":"Filter by Lightcast level 3 SOC names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Top Executives"],"type":["array","object"],"properties":{},"minItems":1},"soc4":{"title":"Filter by Lightcast level 4 SOC codes","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["11-1010"],"type":["array","object"],"properties":{},"minItems":1},"soc4_name":{"title":"Filter by Lightcast level 4 SOC names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Chief Executives"],"type":["array","object"],"properties":{},"minItems":1},"soc5":{"title":"Filter by Lightcast level 5 SOC codes","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["11-1011"],"type":["array","object"],"properties":{},"minItems":1},"soc5_name":{"title":"Filter by Lightcast level 5 SOC names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Chief Executives"],"type":["array","object"],"properties":{},"minItems":1},"company":{"title":"Filter by normalized company codes","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["NC95f2bd68-11c7-4140-92ab-7b82fd2d9f7e"],"type":["array","object"],"properties":{},"minItems":1},"company_name":{"title":"Filter by normalized company names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Microsoft"],"type":["array","object"],"properties":{},"minItems":1},"schools":{"title":"Filter by school ids","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["53bff579e4b04710d09fde45"],"type":["array","object"],"properties":{},"minItems":1},"schools_name":{"title":"Filter by school name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["University of Idaho"],"type":["array","object"],"properties":{},"minItems":1},"naics2":{"title":"Filter by Lightcast level 2 NAICS codes","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[51],"type":["array","object"],"properties":{},"minItems":1},"naics2_name":{"title":"Filter by Lightcast level 2 NAICS names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Information"],"type":["array","object"],"properties":{},"minItems":1},"naics3":{"title":"Filter by Lightcast level 3 NAICS codes","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[511],"type":["array","object"],"properties":{},"minItems":1},"naics3_name":{"title":"Filter by Lightcast level 3 NAICS names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Publishing Industries (except Internet)"],"type":["array","object"],"properties":{},"minItems":1},"naics4":{"title":"Filter by Lightcast level 4 NAICS codes","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[5111],"type":["array","object"],"properties":{},"minItems":1},"naics4_name":{"title":"Filter by Lightcast level 4 NAICS names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Newspaper, Periodical, Book, and Directory Publishers"],"type":["array","object"],"properties":{},"minItems":1},"naics5":{"title":"Filter by Lightcast level 5 NAICS codes","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[51113],"type":["array","object"],"properties":{},"minItems":1},"naics5_name":{"title":"Filter by Lightcast level 5 NAICS names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Book Publishers"],"type":["array","object"],"properties":{},"minItems":1},"naics6":{"title":"Filter by Lightcast level 6 NAICS codes","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[511130],"type":["array","object"],"properties":{},"minItems":1},"naics6_name":{"title":"Filter by Lightcast level 6 NAICS names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Book Publishers"],"type":["array","object"],"properties":{},"minItems":1},"lot_specialized_occupation":{"title":"Filter by specialized occupation ids","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["27121011"],"type":["array","object"],"minItems":1,"properties":{},"additionalProperties":false},"lot_specialized_occupation_name":{"title":"Filter by specialized occupation names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["E-Commerce Assistant"],"type":["array","object"],"minItems":1,"properties":{},"additionalProperties":false},"lot_occupation":{"title":"Filter by occupation ids","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["271210"],"type":["array","object"],"minItems":1,"properties":{},"additionalProperties":false},"lot_occupation_name":{"title":"Filter by occupation names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["E-Commerce Analyst"],"type":["array","object"],"minItems":1,"properties":{},"additionalProperties":false},"lot_occupation_group":{"title":"Filter by occupation group ids","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["2712"],"type":["array","object"],"minItems":1,"properties":{},"additionalProperties":false},"lot_occupation_group_name":{"title":"Filter by occupation group names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Marketing Specialists"],"type":["array","object"],"minItems":1,"properties":{},"additionalProperties":false},"lot_career_area":{"title":"Filter by career area ids","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["27"],"type":["array","object"],"minItems":1,"properties":{},"additionalProperties":false},"lot_career_area_name":{"title":"Filter by career area names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Marketing and Public Relations"],"type":["array","object"],"minItems":1,"properties":{},"additionalProperties":false},"skills":{"title":"Filter by skill codes (any skill type)","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["KS7G2FY662ZPN6H4DZND"],"type":["array","object"],"properties":{},"minItems":1},"skills_name":{"title":"Filter by skill names (any skill type)","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["SQL (Programming Language)"],"type":["array","object"],"properties":{},"minItems":1},"cip2":{"title":"Filter by CIP 2-digit code based off the programs provided by the institution","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["52"],"type":["array","object"],"properties":{},"minItems":1},"cip2_name":{"title":"Filter by CIP 2-digit names based off the programs provided by the institution","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Business, Management, Marketing, and Related Support Services"],"type":["array","object"],"properties":{},"minItems":1},"cip6":{"title":"Filter by CIP 6-digit code based off the programs provided by the institution","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["52.0201"],"type":["array","object"],"properties":{},"minItems":1},"cip6_name":{"title":"Filter by CIP 6-digit names based off the programs provided by the institution","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Business Administration and Management, General"],"type":["array","object"],"properties":{},"minItems":1},"program":{"title":"Filter by id of the program provided by the institution","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["0bbb843c75b8cb93ceb9"],"type":["array","object"],"properties":{},"minItems":1},"program_name":{"title":"Filter by program name provided by the institution","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Business Administration"],"type":["array","object"],"properties":{},"minItems":1},"inst_gradyear":{"title":"Filter by alumni graduation years","description":"`start` and `end` may be omitted to make them unbounded.","type":"object","properties":{"start":{"title":"Earliest alumni graduation date","example":"2015","type":["string","integer"]},"end":{"title":"Latest alumni graduation date","example":"2017","type":["string","integer"]}},"additionalProperties":false},"is_graduate":{"title":"Filter by graduation status provided by the institution","example":[true],"type":"array","minItems":1},"degree_level":{"title":"Filter by id of the degree level provided by the institution","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["9cd8b048d5af8f4f0bf9"],"type":["array","object"],"properties":{},"minItems":1},"degree_level_name":{"title":"Filter by degree level name provided by the institution","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Bachelor of Science"],"type":["array","object"],"properties":{},"minItems":1},"loc_status":{"title":"Filter by id of the alumni's location status","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["6a696de6202f59d891c9"],"type":["array","object"],"properties":{},"minItems":1},"loc_status_name":{"title":"Filter by alumni's location status","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["RESIDES IN REGION"],"type":["array","object"],"properties":{},"minItems":1},"emp_status":{"title":"Filter by id of the alumni's employment status","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["64a03a88861cfccf4362"],"type":["array","object"],"properties":{},"minItems":1},"race":{"title":"Filter by the id of an alumni's race","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Pacific Islander"],"type":["array","object"],"properties":{},"minItems":1},"ethnicity":{"title":"Filter by the id of an alumni's ethnicity","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Hispanic"],"type":["array","object"],"properties":{},"minItems":1},"gender":{"title":"Filter by the id of an alumni's gender","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["male"],"type":["array","object"],"properties":{},"minItems":1},"age_grad_band":{"title":"Filter by the id of an alumni's age band of graduation","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["20-24"],"type":["array","object"],"properties":{},"minItems":1},"race_name":{"title":"Filter by alumni's race name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Pacific Islander"],"type":["array","object"],"properties":{},"minItems":1},"ethnicity_name":{"title":"Filter by alumni's ethnicity name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Hispanic"],"type":["array","object"],"properties":{},"minItems":1},"gender_name":{"title":"Filter by alumni's gender name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["male"],"type":["array","object"],"properties":{},"minItems":1},"age_grad_band_name":{"title":"Filter by alumni's age band of graduation name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["20-24"],"type":["array","object"],"properties":{},"minItems":1},"education_status":{"title":"Filter by alumni's education status id","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["WOgkRibmrQRX"],"type":["array","object"],"properties":{},"minItems":1},"education_status_name":{"title":"Filter by alumni's education status name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Continued"],"type":["array","object"],"properties":{},"minItems":1},"birth_year":{"title":"Filter by alumni's birth year","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["1979"],"type":["array","object"],"properties":{},"minItems":1},"emp_status_name":{"title":"Filter by alumni's employment status","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["EMPLOYED IN FIELD"],"type":["array","object"],"properties":{},"minItems":1},"additional_education_name":{"title":"Filter by alumni's additional education name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Pursued subsequent education at our institution"],"type":["array","object"],"properties":{},"minItems":1},"additional_education":{"title":"Filter by alumni's additional education","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["UHVyc3VlZCBzdWJzZXF1ZW50IGVkdWNhdGlvbiBhdCBvdGhlciBpbnN0aXR1dGlvbnM="],"type":["array","object"],"properties":{},"minItems":1},"nsc_completion_date":{"title":"Filter by alumni's completion date","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["2003-07-17"],"type":["array","object"],"properties":{},"minItems":1},"nsc_degree_level_name":{"title":"Filter by alumni's degree level name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["ASSOCIATES"],"type":["array","object"],"properties":{},"minItems":1},"nsc_degree_level_title_name":{"title":"Filter by alumni's degree level title name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Associate of Arts"],"type":["array","object"],"properties":{},"minItems":1},"nsc_degree_level_title":{"title":"Filter by alumni's degree level title","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["QXNzb2NpYXRlIG9mIEFydHM="],"type":["array","object"],"properties":{},"minItems":1},"nsc_degree_level":{"title":"Filter by alumni's degree level","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["UPTHiBKJsjUQiznA9xsA9yb1Rbcoxrr5NgYAVCLe"],"type":["array","object"],"properties":{},"minItems":1},"nsc_end_date":{"title":"Filter by alumni's end date","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["2023-06-05"],"type":["array","object"],"properties":{},"minItems":1},"nsc_enroll_status_name":{"title":"Filter by alumni's enrollment status name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Full Time"],"type":["array","object"],"properties":{},"minItems":1},"nsc_enroll_status":{"title":"Filter by alumni's enrollment status","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["RlVMTCBUSU1F"],"type":["array","object"],"properties":{},"minItems":1},"nsc_enrollment_level_name":{"title":"Filter by alumni's enrollment level name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Associates"],"type":["array","object"],"properties":{},"minItems":1},"nsc_enrollment_level":{"title":"Filter by alumni's enrollment level","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["ASSOCIATES"],"type":["array","object"],"properties":{},"minItems":1},"nsc_institution_ipeds":{"title":"Filter by alumni's institution ipeds id","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[113528],"type":["array","object"],"properties":{},"minItems":1},"nsc_institution_ipeds_name":{"title":"Filter by alumni's institution ipeds name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["University of Idaho"],"type":["array","object"],"properties":{},"minItems":1},"nsc_institution_ope_id":{"title":"Filter by alumni's institution ope id","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["831777-77"],"type":["array","object"],"properties":{},"minItems":1},"nsc_institution_school_category_name":{"title":"Filter by alumni's institution school category name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Private Not For-Profit"],"type":["array","object"],"properties":{},"minItems":1},"nsc_institution_school_category":{"title":"Filter by alumni's institution school category","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["PRIV-NFP"],"type":["array","object"],"properties":{},"minItems":1},"nsc_institution_school_name":{"title":"Filter by alumni's institution school name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["DEEP SPRINGS COLLEGE"],"type":["array","object"],"properties":{},"minItems":1},"nsc_institution_school_state_name":{"title":"Filter by alumni's institution school state name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Arizona"],"type":["array","object"],"properties":{},"minItems":1},"nsc_institution_school_state":{"title":"Filter by alumni's institution school state","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["4"],"type":["array","object"],"properties":{},"minItems":1},"nsc_institution_school_type_name":{"title":"Filter by alumni's institution school type name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Four year"],"type":["array","object"],"properties":{},"minItems":1},"nsc_institution_school_type":{"title":"Filter by alumni's institution school type","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["4"],"type":["array","object"],"properties":{},"minItems":1},"nsc_num_semesters":{"title":"Filter by alumni's number of semesters","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[5],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_completion_date":{"title":"Filter by alumni's prior completion date","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["2021-01-09"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_degree_level_name":{"title":"Filter by alumni's prior degree level name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["ASSOCIATES"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_degree_level_title_name":{"title":"Filter by alumni's prior degree level title name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Associate of Arts"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_degree_level_title":{"title":"Filter by alumni's prior degree level title","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["QXNzb2NpYXRlIG9mIEFydHM="],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_degree_level":{"title":"Filter by alumni's prior degree level","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["UPTHiBKJsjUQiznA9xsA9yb1Rbcoxrr5NgYAVCLe"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_end_date":{"title":"Filter by alumni's prior end date","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["2021-07-13"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_enroll_status_name":{"title":"Filter by alumni's prior enrollment status name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Half Time"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_enroll_status":{"title":"Filter by alumni's prior enrollment status","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["MS8yIFRJTUU="],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_enrollment_level_name":{"title":"Filter by alumni's prior enrollment level name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Associates"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_enrollment_level":{"title":"Filter by alumni's prior enrollment nsc_prior_degree_level","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["ASSOCIATES"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_institution_ipeds":{"title":"Filter by alumni's prior institution ipeds id","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[113528],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_institution_ipeds_name":{"title":"Filter by alumni's prior institution ipeds name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["University of Idaho"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_institution_ope_id":{"title":"Filter by alumni's prior institution ope id","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["413521-69"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_institution_school_category_name":{"title":"Filter by alumni's prior institution school category name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Public"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_institution_school_category":{"title":"Filter by alumni's prior institution school category","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["PUB"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_institution_school":{"title":"Filter by alumni's prior institution school","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["879f726747ef3fdd65f7b0f6df0d6384c0a9445c2a9b31cea51d5645e9ad4ca9"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_institution_school_name":{"title":"Filter by alumni's prior institution school name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["PIERRES SCHOOL OF COSMETOLOGY"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_institution_school_state_name":{"title":"Filter by alumni's prior institution school state name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Arkansas"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_institution_school_state":{"title":"Filter by alumni's prior institution school state","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["5"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_institution_school_type_name":{"title":"Filter by alumni's prior institution school type name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Two year"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_institution_school_type":{"title":"Filter by alumni's prior institution school type","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["2"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_num_semesters":{"title":"Filter by alumni's prior number of semesters","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[6],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_program_cip_name":{"title":"Filter by alumni's prior program cip name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["3-D Modeling and Design Technology/Technician"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_program_cip":{"title":"Filter by alumni's prior program cip","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["15.1307"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_start_date":{"title":"Filter by alumni's prior start date","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["1992-08-05"],"type":["array","object"],"properties":{},"minItems":1},"nsc_program_cip_name":{"title":"Filter by alumni's program cip name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Actuarial Science"],"type":["array","object"],"properties":{},"minItems":1},"nsc_program_cip":{"title":"Filter by alumni's program cip","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["52.1304"],"type":["array","object"],"properties":{},"minItems":1},"nsc_start_date":{"title":"Filter by alumni's start date","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["1996-06-20"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_completion_date":{"title":"Filter by alumni's subsequent completion date","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["2021-07-02"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_degree_level_name":{"title":"Filter by alumni's subsequent degree level name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["BACHELORS"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_degree_level_title_name":{"title":"Filter by alumni's subsequent degree level title name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Bachelor of Arts"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_degree_level_title":{"title":"Filter by alumni's subsequent degree level title","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["QmFjaGVsb3Igb2YgQXJ0cw=="],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_degree_level":{"title":"Filter by alumni's subsequent degree level","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["SawiAejPwYWZhLYDda6ggXpUQZ8ygFolNgYAVCLe"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_end_date":{"title":"Filter by alumni's subsequent end date","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["2023-01-23"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_enroll_status_name":{"title":"Filter by alumni's subsequent enrollment status name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Deceased"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_enroll_status":{"title":"Filter by alumni's subsequent enrollment status","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["REVDRUFTRUQ="],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_enrollment_level_name":{"title":"Filter by alumni's subsequent enrollment level name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Bachelors"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_enrollment_level":{"title":"Filter by alumni's subsequent enrollment level","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["BACHELORS"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_institution_ipeds":{"title":"Filter by alumni's subsequent institution ipeds id","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[176910],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_institution_ipeds_name":{"title":"Filter by alumni's subsequent institution ipeds name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["University of Idaho"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_institution_ope_id":{"title":"Filter by alumni's subsequent institution ope id","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["865681-20"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_institution_school_category_name":{"title":"Filter by alumni's subsequent institution school category name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Private For-Profit"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_institution_school_category":{"title":"Filter by alumni's subsequent institution school category","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["PRIV-FP"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_institution_school":{"title":"Filter by alumni's subsequent institution school","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["879f726747ef3fdd65f7b0f6df0d6384c0a9445c2a9b31cea51d5645e9ad4ca9"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_institution_school_name":{"title":"Filter by alumni's subsequent institution school name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Central Christian College of the Bible"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_institution_school_state_name":{"title":"Filter by alumni's subsequent institution school state name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Colorado"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_institution_school_state":{"title":"Filter by alumni's subsequent institution school state","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["8"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_institution_school_type_name":{"title":"Filter by alumni's subsequent institution school type name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Four year"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_institution_school_type":{"title":"Filter by alumni's subsequent institution school type","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["4"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_num_semesters":{"title":"Filter by alumni's subsequent number of semesters","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[3],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_program_cip_name":{"title":"Filter by alumni's subsequent program cip name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Abdominal Radiology Fellowship Program"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_program_cip":{"title":"Filter by alumni's subsequent program cip","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["61.2603"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_start_date":{"title":"Filter by alumni's subsequent start date","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["2022-09-25"],"type":["array","object"],"properties":{},"minItems":1},"nsc_match_status":{"title":"Filter by alumni matched with NSC data","description":"This filters to alumni that are matched with NSC data.","type":"boolean","example":true},"is_job_after_grad_year":{"title":"Filter by alumni's job type","description":"This indicates whether a profile's current job started after graduation.\n\nNot all accounts will have this field, check [meta](#get-account-account_id-meta) filters and facets for availability.","type":"boolean","example":true},"is_highest_level_award":{"title":"Filter by alumni's degree status","description":"This filters to profiles that represent the highest and the most recent awarded degree.\n\nNot all accounts will have this field, check [meta](#get-account-account_id-meta) filters and facets for availability.","type":"boolean","example":true},"match_status":{"title":"Filter by alumni matched with a profile","description":"This filters to alumni that are matched to a profile.","type":"boolean","example":true},"match_score":{"title":"Filter by alumni match score","description":"This filters to alumni that are matched to a match score range","type":"object","properties":{"lower_bound":{"title":"Lower bound for match score (inclusive).","type":"number","minimum":0,"example":0.01},"upper_bound":{"title":"Upper bound for match score (inclusive).","type":"number","minimum":0,"example":0.8}},"additionalProperties":false},"nsc_prior_is_completion":{"title":"Filter by alumni with prior completions","description":"This filters to alumni that are matched to a profile.","type":"boolean","example":true},"nsc_has_prior":{"title":"Filter by alumni with prior education","description":"This filters to alumni that are matched to a profile.","type":"boolean","example":true},"nsc_subsequent_is_completion":{"title":"Filter by alumni with subsequent completions","description":"This filters to alumni that are matched to a profile.","type":"boolean","example":true},"nsc_has_subsequent":{"title":"Filter by alumni with subsequent education","description":"This filters to alumni that are matched to a profile.","type":"boolean","example":true},"bucketed_career_events":{"title":"Filter by career events","description":"An object or list of objects describing career events. Career events in a list will be ANDed together, fields within a bucketed_career_events object will be ANDed together, values in an bucketed_career_events field will be ORed together.","type":["object","array"],"properties":{"organization":{"title":"Filter by organization","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["employer"],"properties":{},"minItems":1},"event_type":{"title":"Filter by event type","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["employment"],"properties":{},"minItems":1},"sequence_order_number":{"title":"Filter by sequence order number","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["1"],"properties":{},"minItems":1},"high_level_grouping":{"title":"Filter by high level grouping","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["39-0000"],"properties":{},"minItems":1},"low_level_grouping":{"title":"Filter by low level grouping","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["39-1022"],"properties":{},"minItems":1},"career_events_estimated_wage":{"title":"Filter by alumni's estimated wage","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[63000],"type":["array","object"],"properties":{},"minItems":1},"career_events_event_in_field":{"title":"Filter by alumni that were in field during this event","description":"This filters to alumni that were in field for this event.","type":"boolean","example":true}},"additionalProperties":false,"items":{"description":"An object describing a single career event.","type":"object","properties":{"organization":{"title":"Filter by organization","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["employer"],"properties":{},"minItems":1},"event_type":{"title":"Filter by event type","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["employment"],"properties":{},"minItems":1},"sequence_order_number":{"title":"Filter by sequence order number","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["1"],"properties":{},"minItems":1},"high_level_grouping":{"title":"Filter by high level grouping","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["39-0000"],"properties":{},"minItems":1},"low_level_grouping":{"title":"Filter by low level grouping","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["39-1022"],"properties":{},"minItems":1},"career_events_estimated_wage":{"title":"Filter by alumni's estimated wage","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[63000],"type":["array","object"],"properties":{},"minItems":1},"career_events_event_in_field":{"title":"Filter by alumni that were in field during this event","description":"This filters to alumni that were in field for this event.","type":"boolean","example":true}},"additionalProperties":false},"minItems":1},"career_events":{"title":"Filter by career events","description":"An object or list of objects describing career events. Career events in a list will be ANDed together, fields within an career_events object will be ANDed together, values in an career_events field will be ORed together.","type":["object","array"],"properties":{"organization":{"title":"Filter by organization","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["employer"],"properties":{},"minItems":1},"event_type":{"title":"Filter by event type","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["employment"],"properties":{},"minItems":1},"sequence_order_number":{"title":"Filter by sequence order number","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["1"],"properties":{},"minItems":1},"high_level_grouping":{"title":"Filter by high level grouping","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["39-0000"],"properties":{},"minItems":1},"low_level_grouping":{"title":"Filter by low level grouping","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["39-1022"],"properties":{},"minItems":1},"career_events_estimated_wage":{"title":"Filter by alumni's estimated wage","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[63000],"type":["array","object"],"properties":{},"minItems":1},"career_events_event_in_field":{"title":"Filter by alumni that were in field during this event","description":"This filters to alumni that were in field for this event.","type":"boolean","example":true}},"additionalProperties":false,"items":{"description":"An object describing a single career event.","type":"object","properties":{"organization":{"title":"Filter by organization","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["employer"],"properties":{},"minItems":1},"event_type":{"title":"Filter by event type","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["employment"],"properties":{},"minItems":1},"sequence_order_number":{"title":"Filter by sequence order number","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["1"],"properties":{},"minItems":1},"high_level_grouping":{"title":"Filter by high level grouping","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["39-0000"],"properties":{},"minItems":1},"low_level_grouping":{"title":"Filter by low level grouping","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["39-1022"],"properties":{},"minItems":1},"career_events_estimated_wage":{"title":"Filter by alumni's estimated wage","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[63000],"type":["array","object"],"properties":{},"minItems":1},"career_events_event_in_field":{"title":"Filter by alumni that were in field during this event","description":"This filters to alumni that were in field for this event.","type":"boolean","example":true}},"additionalProperties":false},"minItems":1}},"additionalProperties":false},"rank":{"title":"Choose how to rank your results","type":"object","properties":{"by":{"title":"What metric to use to rank the ranking facet","description":"Some metrics may be approximations for performance reasons.","type":"string"},"limit":{"title":"Limit the number of ranked items returned","description":"Unlimited rankings (passing a maximum of `0`) are not valid for job titles, cities, companies, skills, and certifications facets.","default":10,"type":"integer","minimum":0,"maximum":1000},"extra_metrics":{"title":"Request additional metrics for each ranked group returned","description":"In addition to 'by' metric, calculate these metrics for each ranked group. Some metrics may be approximations for performance reasons.","type":"array","items":{"type":"string"},"minItems":1},"minProfiles":{"title":"Filter ranked items by number of profiles for the item","description":"Require ranked items to have at least this many profiles matching the filter.","default":1,"type":"integer","minimum":1},"order":{"title":"What order to sort the ranking results","default":"desc","type":"string","enum":["asc","desc"]},"include":{"title":"Filter ranked items to only those provided in this field","description":"This field does not affect totals matched by the request query, it only filters the items returned in the ranking.","type":"array","items":{"type":["string","integer"],"minLength":1},"minItems":1},"exclude":{"title":"Filter ranked items to only those not provided in this field","description":"This field does not affect totals matched by the request query, it only filters the items returned in the ranking.","type":"array","items":{"type":["string","integer"],"minLength":1},"minItems":1}},"required":["by"],"additionalProperties":false}},"required":["filter","rank"]}}},"required":true},"responses":{"200":{"description":"OK","content":{"application/json":{"example":{"data":{"ranking":{"buckets":[{"key":null,"value":"Best Buy","employed_in_field":2,"unique_schools":4,"alumni":3},{"key":"95682034","value":"United States Army","employed_in_field":0,"unique_schools":5,"alumni":3}],"ranking_dimension":"company","limit":20,"rank_by":"alumni"},"totals":{"employed_in_field":49,"unique_schools":99,"alumni":100}}},"schema":{"$schema":"http://json-schema.org/draft-07/schema","type":"object","$id":"responses/ranking.schema.json","properties":{"data":{"type":"object","properties":{"totals":{"type":"object","properties":{"alumni":{"type":"integer","minimum":0},"collectionCount":{"type":"integer","minimum":0},"average":{"type":"number","minimum":0},"median":{"type":"number","minimum":0},"percentile":{"type":"integer","minimum":0},"unique":{"type":"integer","minimum":0}},"required":["alumni"],"additionalProperties":true},"ranking":{"type":"object","properties":{"ranking_dimension":{"type":"string","minLength":1},"rank_by":{"type":"string","enum":["alumni","uniqueSchools","uniqueCompanies"]},"limit":{"type":"integer","minimum":0},"buckets":{"type":"array","items":{"type":"object","properties":{"key":{"type":["string","integer","null"],"minLength":1,"minimum":0},"value":{"type":["string","integer","null"],"minLength":1},"alumni":{"type":"integer","minimum":0},"uniqueSchools":{"type":"integer","minimum":0},"uniqueCompanies":{"type":"integer","minimum":0},"employedInField":{"type":"integer","minimum":0},"averageWage":{"type":"number","minimum":0},"estimatedWage":{"type":"number","minimum":0},"resideInRegion":{"type":"integer","minimum":0}},"required":["key","value"],"additionalProperties":true}}},"required":["ranking_dimension","rank_by","limit","buckets"],"additionalProperties":false}},"required":["totals","ranking"],"additionalProperties":false}},"required":["data"],"additionalProperties":false}}}},"400":{"$ref":"#/components/responses/400"},"404":{"$ref":"#/components/responses/404"}},"operationId":"alumni_post_rankings"}},"/rankings/{rankingDimension}/rankings/{nestedRankingDimension}":{"post":{"tags":["Rankings"],"summary":"Nested rankings","description":"Get a nested ranking (e.g. top companies, then top skills per company).","parameters":[{"$ref":"#/components/parameters/accountIdQuery"},{"$ref":"#/components/parameters/rankingDimension"},{"$ref":"#/components/parameters/nestedRankingDimension"}],"requestBody":{"content":{"application/json":{"example":{"filter":{"inst_gradyear":{"start":2017,"end":2019}},"rank":{"by":"alumni","limit":5,"extra_metrics":["bucketed_career_events_estimated_wage"]},"nested_rank":{"by":"alumni","limit":5}},"schema":{"$schema":"http://json-schema.org/draft-07/schema","$id":"requests/nested-ranking.schema.json","type":"object","additionalProperties":false,"properties":{"filter":{"title":"Add filters to your postings query","type":"object","properties":{"academic_unit":{"title":"Filter by the id of the alumni's academic unit provided by the institution","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).\n\nNot all accounts will have this field, check [meta](#get-account-account_id-meta) filters and facets for availability.","example":["Q29sbGVnZSBvZiBTY2llbmNlCg=="],"type":["array","object"],"properties":{},"minItems":1},"academic_unit_name":{"title":"Filter by the name of the alumni's academic unit provided by the institution","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).\n\nNot all accounts will have this field, check [meta](#get-account-account_id-meta) filters and facets for availability.","example":["College of Science"],"type":["array","object"],"properties":{},"minItems":1},"academic_subunit":{"title":"Filter by the id of the alumni's academic sub unit provided by the institution","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).\n\nNot all account will have this field, check [meta](#get-account-account_id-meta) filters and facets for availability.","example":["RGVwYXJ0bWVudCBvZiBCaW9sb2dpY2FsIFNjaWVuY2Vz"],"type":["array","object"],"properties":{},"minItems":1},"academic_subunit_name":{"title":"Filtery by the name of the alumni's academic sub unit provided by the institution","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).\n\nNot all accounts will have this field, check [meta](#get-account-account_id-meta) filters and facets for availability.","example":["Department of Biological Sciences"],"type":["array","object"],"properties":{},"minItems":1},"campus":{"title":"Filter by the id of the campus the alumni attended as provided by the institution","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).\n\nNot all accounts will have this field, check [meta](#get-account-account_id-meta) filters and facets for availability.","example":["V1NVIFRyaS1DaXRpZXM="],"type":["array","object"],"properties":{},"minItems":1},"campus_name":{"title":"Filter by the name of the campus the alumni attended as provided by the institution","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).\n\nNot all accounts will have this field, check [meta](#get-account-account_id-meta) filters and facets for availability.","example":["WSU Tri-Cities"],"type":["array","object"],"properties":{},"minItems":1},"country":{"title":"Filter by country id","default":["9b202ecbc6d45c6d8901d989a918878397a3eb9d00e8f48022fc051b19d21a1d"],"type":"array","items":{"type":"string","minLength":1},"minItems":1},"country_name":{"title":"Filter by country name","default":["US"],"type":"array","items":{"type":"string","minLength":1,"enum":["US","GB","CA"]},"minItems":1},"city":{"title":"Filter by city id","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["ChIJ0WHAIi0hoFQRbK3q5g0V_T4"],"type":["array","object"],"properties":{},"minItems":1},"city_name":{"title":"Filter by city names with state abbreviations","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Moscow, ID"],"type":["array","object"],"properties":{},"minItems":1},"county":{"title":"Filter by Lightcast county (FIPS) codes","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[16057],"type":["array","object"],"properties":{},"minItems":1},"county_name":{"title":"Filter by Lightcast county (FIPS) names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Latah, ID"],"type":["array","object"],"properties":{},"minItems":1},"fips":{"title":"Filter by Lightcast county (FIPS) codes","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[16057],"type":["array","object"],"properties":{},"minItems":1},"fips_name":{"title":"Filter by Lightcast county (FIPS) names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Latah, ID"],"type":["array","object"],"properties":{},"minItems":1},"msa":{"title":"Filter by Lightcast MSA codes (metro or micro)","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[34140],"type":["array","object"],"properties":{},"minItems":1},"msa_name":{"title":"Filter by Lightcast MSA names (metro or micro)","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Moscow, ID"],"type":["array","object"],"properties":{},"minItems":1},"state":{"title":"Filter by state 2-digit FIPS","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[16],"type":["array","object"],"properties":{},"minItems":1},"state_name":{"title":"Filter by state names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Idaho"],"type":["array","object"],"properties":{},"minItems":1},"title":{"title":"Filter by job title codes","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["53.30837"],"type":["array","object"],"properties":{},"minItems":1},"title_name":{"title":"Filter by job title names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Web Developer"],"type":["array","object"],"properties":{},"minItems":1},"onet":{"title":"Filter by Lightcast O*NET codes","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["29-1141.00"],"type":["array","object"],"properties":{},"minItems":1},"onet_name":{"title":"Filter by Lightcast O*NET names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Registered Nurses"],"type":["array","object"],"properties":{},"minItems":1},"soc2":{"title":"Filter by Lightcast level 2 SOC codes","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["11-0000"],"type":["array","object"],"properties":{},"minItems":1},"soc2_name":{"title":"Filter by Lightcast level 2 SOC names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Management Occupations"],"type":["array","object"],"properties":{},"minItems":1},"soc3":{"title":"Filter by Lightcast level 3 SOC codes","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["11-1000"],"type":["array","object"],"properties":{},"minItems":1},"soc3_name":{"title":"Filter by Lightcast level 3 SOC names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Top Executives"],"type":["array","object"],"properties":{},"minItems":1},"soc4":{"title":"Filter by Lightcast level 4 SOC codes","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["11-1010"],"type":["array","object"],"properties":{},"minItems":1},"soc4_name":{"title":"Filter by Lightcast level 4 SOC names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Chief Executives"],"type":["array","object"],"properties":{},"minItems":1},"soc5":{"title":"Filter by Lightcast level 5 SOC codes","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["11-1011"],"type":["array","object"],"properties":{},"minItems":1},"soc5_name":{"title":"Filter by Lightcast level 5 SOC names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Chief Executives"],"type":["array","object"],"properties":{},"minItems":1},"company":{"title":"Filter by normalized company codes","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["NC95f2bd68-11c7-4140-92ab-7b82fd2d9f7e"],"type":["array","object"],"properties":{},"minItems":1},"company_name":{"title":"Filter by normalized company names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Microsoft"],"type":["array","object"],"properties":{},"minItems":1},"schools":{"title":"Filter by school ids","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["53bff579e4b04710d09fde45"],"type":["array","object"],"properties":{},"minItems":1},"schools_name":{"title":"Filter by school name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["University of Idaho"],"type":["array","object"],"properties":{},"minItems":1},"naics2":{"title":"Filter by Lightcast level 2 NAICS codes","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[51],"type":["array","object"],"properties":{},"minItems":1},"naics2_name":{"title":"Filter by Lightcast level 2 NAICS names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Information"],"type":["array","object"],"properties":{},"minItems":1},"naics3":{"title":"Filter by Lightcast level 3 NAICS codes","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[511],"type":["array","object"],"properties":{},"minItems":1},"naics3_name":{"title":"Filter by Lightcast level 3 NAICS names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Publishing Industries (except Internet)"],"type":["array","object"],"properties":{},"minItems":1},"naics4":{"title":"Filter by Lightcast level 4 NAICS codes","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[5111],"type":["array","object"],"properties":{},"minItems":1},"naics4_name":{"title":"Filter by Lightcast level 4 NAICS names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Newspaper, Periodical, Book, and Directory Publishers"],"type":["array","object"],"properties":{},"minItems":1},"naics5":{"title":"Filter by Lightcast level 5 NAICS codes","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[51113],"type":["array","object"],"properties":{},"minItems":1},"naics5_name":{"title":"Filter by Lightcast level 5 NAICS names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Book Publishers"],"type":["array","object"],"properties":{},"minItems":1},"naics6":{"title":"Filter by Lightcast level 6 NAICS codes","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[511130],"type":["array","object"],"properties":{},"minItems":1},"naics6_name":{"title":"Filter by Lightcast level 6 NAICS names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Book Publishers"],"type":["array","object"],"properties":{},"minItems":1},"lot_specialized_occupation":{"title":"Filter by specialized occupation ids","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["27121011"],"type":["array","object"],"minItems":1,"properties":{},"additionalProperties":false},"lot_specialized_occupation_name":{"title":"Filter by specialized occupation names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["E-Commerce Assistant"],"type":["array","object"],"minItems":1,"properties":{},"additionalProperties":false},"lot_occupation":{"title":"Filter by occupation ids","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["271210"],"type":["array","object"],"minItems":1,"properties":{},"additionalProperties":false},"lot_occupation_name":{"title":"Filter by occupation names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["E-Commerce Analyst"],"type":["array","object"],"minItems":1,"properties":{},"additionalProperties":false},"lot_occupation_group":{"title":"Filter by occupation group ids","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["2712"],"type":["array","object"],"minItems":1,"properties":{},"additionalProperties":false},"lot_occupation_group_name":{"title":"Filter by occupation group names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Marketing Specialists"],"type":["array","object"],"minItems":1,"properties":{},"additionalProperties":false},"lot_career_area":{"title":"Filter by career area ids","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["27"],"type":["array","object"],"minItems":1,"properties":{},"additionalProperties":false},"lot_career_area_name":{"title":"Filter by career area names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Marketing and Public Relations"],"type":["array","object"],"minItems":1,"properties":{},"additionalProperties":false},"skills":{"title":"Filter by skill codes (any skill type)","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["KS7G2FY662ZPN6H4DZND"],"type":["array","object"],"properties":{},"minItems":1},"skills_name":{"title":"Filter by skill names (any skill type)","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["SQL (Programming Language)"],"type":["array","object"],"properties":{},"minItems":1},"cip2":{"title":"Filter by CIP 2-digit code based off the programs provided by the institution","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["52"],"type":["array","object"],"properties":{},"minItems":1},"cip2_name":{"title":"Filter by CIP 2-digit names based off the programs provided by the institution","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Business, Management, Marketing, and Related Support Services"],"type":["array","object"],"properties":{},"minItems":1},"cip6":{"title":"Filter by CIP 6-digit code based off the programs provided by the institution","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["52.0201"],"type":["array","object"],"properties":{},"minItems":1},"cip6_name":{"title":"Filter by CIP 6-digit names based off the programs provided by the institution","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Business Administration and Management, General"],"type":["array","object"],"properties":{},"minItems":1},"program":{"title":"Filter by id of the program provided by the institution","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["0bbb843c75b8cb93ceb9"],"type":["array","object"],"properties":{},"minItems":1},"program_name":{"title":"Filter by program name provided by the institution","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Business Administration"],"type":["array","object"],"properties":{},"minItems":1},"inst_gradyear":{"title":"Filter by alumni graduation years","description":"`start` and `end` may be omitted to make them unbounded.","type":"object","properties":{"start":{"title":"Earliest alumni graduation date","example":"2015","type":["string","integer"]},"end":{"title":"Latest alumni graduation date","example":"2017","type":["string","integer"]}},"additionalProperties":false},"is_graduate":{"title":"Filter by graduation status provided by the institution","example":[true],"type":"array","minItems":1},"degree_level":{"title":"Filter by id of the degree level provided by the institution","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["9cd8b048d5af8f4f0bf9"],"type":["array","object"],"properties":{},"minItems":1},"degree_level_name":{"title":"Filter by degree level name provided by the institution","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Bachelor of Science"],"type":["array","object"],"properties":{},"minItems":1},"loc_status":{"title":"Filter by id of the alumni's location status","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["6a696de6202f59d891c9"],"type":["array","object"],"properties":{},"minItems":1},"loc_status_name":{"title":"Filter by alumni's location status","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["RESIDES IN REGION"],"type":["array","object"],"properties":{},"minItems":1},"emp_status":{"title":"Filter by id of the alumni's employment status","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["64a03a88861cfccf4362"],"type":["array","object"],"properties":{},"minItems":1},"race":{"title":"Filter by the id of an alumni's race","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Pacific Islander"],"type":["array","object"],"properties":{},"minItems":1},"ethnicity":{"title":"Filter by the id of an alumni's ethnicity","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Hispanic"],"type":["array","object"],"properties":{},"minItems":1},"gender":{"title":"Filter by the id of an alumni's gender","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["male"],"type":["array","object"],"properties":{},"minItems":1},"age_grad_band":{"title":"Filter by the id of an alumni's age band of graduation","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["20-24"],"type":["array","object"],"properties":{},"minItems":1},"race_name":{"title":"Filter by alumni's race name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Pacific Islander"],"type":["array","object"],"properties":{},"minItems":1},"ethnicity_name":{"title":"Filter by alumni's ethnicity name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Hispanic"],"type":["array","object"],"properties":{},"minItems":1},"gender_name":{"title":"Filter by alumni's gender name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["male"],"type":["array","object"],"properties":{},"minItems":1},"age_grad_band_name":{"title":"Filter by alumni's age band of graduation name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["20-24"],"type":["array","object"],"properties":{},"minItems":1},"education_status":{"title":"Filter by alumni's education status id","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["WOgkRibmrQRX"],"type":["array","object"],"properties":{},"minItems":1},"education_status_name":{"title":"Filter by alumni's education status name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Continued"],"type":["array","object"],"properties":{},"minItems":1},"birth_year":{"title":"Filter by alumni's birth year","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["1979"],"type":["array","object"],"properties":{},"minItems":1},"emp_status_name":{"title":"Filter by alumni's employment status","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["EMPLOYED IN FIELD"],"type":["array","object"],"properties":{},"minItems":1},"additional_education_name":{"title":"Filter by alumni's additional education name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Pursued subsequent education at our institution"],"type":["array","object"],"properties":{},"minItems":1},"additional_education":{"title":"Filter by alumni's additional education","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["UHVyc3VlZCBzdWJzZXF1ZW50IGVkdWNhdGlvbiBhdCBvdGhlciBpbnN0aXR1dGlvbnM="],"type":["array","object"],"properties":{},"minItems":1},"nsc_completion_date":{"title":"Filter by alumni's completion date","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["2003-07-17"],"type":["array","object"],"properties":{},"minItems":1},"nsc_degree_level_name":{"title":"Filter by alumni's degree level name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["ASSOCIATES"],"type":["array","object"],"properties":{},"minItems":1},"nsc_degree_level_title_name":{"title":"Filter by alumni's degree level title name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Associate of Arts"],"type":["array","object"],"properties":{},"minItems":1},"nsc_degree_level_title":{"title":"Filter by alumni's degree level title","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["QXNzb2NpYXRlIG9mIEFydHM="],"type":["array","object"],"properties":{},"minItems":1},"nsc_degree_level":{"title":"Filter by alumni's degree level","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["UPTHiBKJsjUQiznA9xsA9yb1Rbcoxrr5NgYAVCLe"],"type":["array","object"],"properties":{},"minItems":1},"nsc_end_date":{"title":"Filter by alumni's end date","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["2023-06-05"],"type":["array","object"],"properties":{},"minItems":1},"nsc_enroll_status_name":{"title":"Filter by alumni's enrollment status name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Full Time"],"type":["array","object"],"properties":{},"minItems":1},"nsc_enroll_status":{"title":"Filter by alumni's enrollment status","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["RlVMTCBUSU1F"],"type":["array","object"],"properties":{},"minItems":1},"nsc_enrollment_level_name":{"title":"Filter by alumni's enrollment level name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Associates"],"type":["array","object"],"properties":{},"minItems":1},"nsc_enrollment_level":{"title":"Filter by alumni's enrollment level","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["ASSOCIATES"],"type":["array","object"],"properties":{},"minItems":1},"nsc_institution_ipeds":{"title":"Filter by alumni's institution ipeds id","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[113528],"type":["array","object"],"properties":{},"minItems":1},"nsc_institution_ipeds_name":{"title":"Filter by alumni's institution ipeds name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["University of Idaho"],"type":["array","object"],"properties":{},"minItems":1},"nsc_institution_ope_id":{"title":"Filter by alumni's institution ope id","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["831777-77"],"type":["array","object"],"properties":{},"minItems":1},"nsc_institution_school_category_name":{"title":"Filter by alumni's institution school category name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Private Not For-Profit"],"type":["array","object"],"properties":{},"minItems":1},"nsc_institution_school_category":{"title":"Filter by alumni's institution school category","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["PRIV-NFP"],"type":["array","object"],"properties":{},"minItems":1},"nsc_institution_school_name":{"title":"Filter by alumni's institution school name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["DEEP SPRINGS COLLEGE"],"type":["array","object"],"properties":{},"minItems":1},"nsc_institution_school_state_name":{"title":"Filter by alumni's institution school state name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Arizona"],"type":["array","object"],"properties":{},"minItems":1},"nsc_institution_school_state":{"title":"Filter by alumni's institution school state","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["4"],"type":["array","object"],"properties":{},"minItems":1},"nsc_institution_school_type_name":{"title":"Filter by alumni's institution school type name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Four year"],"type":["array","object"],"properties":{},"minItems":1},"nsc_institution_school_type":{"title":"Filter by alumni's institution school type","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["4"],"type":["array","object"],"properties":{},"minItems":1},"nsc_num_semesters":{"title":"Filter by alumni's number of semesters","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[5],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_completion_date":{"title":"Filter by alumni's prior completion date","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["2021-01-09"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_degree_level_name":{"title":"Filter by alumni's prior degree level name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["ASSOCIATES"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_degree_level_title_name":{"title":"Filter by alumni's prior degree level title name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Associate of Arts"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_degree_level_title":{"title":"Filter by alumni's prior degree level title","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["QXNzb2NpYXRlIG9mIEFydHM="],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_degree_level":{"title":"Filter by alumni's prior degree level","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["UPTHiBKJsjUQiznA9xsA9yb1Rbcoxrr5NgYAVCLe"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_end_date":{"title":"Filter by alumni's prior end date","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["2021-07-13"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_enroll_status_name":{"title":"Filter by alumni's prior enrollment status name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Half Time"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_enroll_status":{"title":"Filter by alumni's prior enrollment status","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["MS8yIFRJTUU="],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_enrollment_level_name":{"title":"Filter by alumni's prior enrollment level name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Associates"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_enrollment_level":{"title":"Filter by alumni's prior enrollment nsc_prior_degree_level","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["ASSOCIATES"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_institution_ipeds":{"title":"Filter by alumni's prior institution ipeds id","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[113528],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_institution_ipeds_name":{"title":"Filter by alumni's prior institution ipeds name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["University of Idaho"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_institution_ope_id":{"title":"Filter by alumni's prior institution ope id","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["413521-69"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_institution_school_category_name":{"title":"Filter by alumni's prior institution school category name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Public"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_institution_school_category":{"title":"Filter by alumni's prior institution school category","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["PUB"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_institution_school":{"title":"Filter by alumni's prior institution school","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["879f726747ef3fdd65f7b0f6df0d6384c0a9445c2a9b31cea51d5645e9ad4ca9"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_institution_school_name":{"title":"Filter by alumni's prior institution school name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["PIERRES SCHOOL OF COSMETOLOGY"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_institution_school_state_name":{"title":"Filter by alumni's prior institution school state name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Arkansas"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_institution_school_state":{"title":"Filter by alumni's prior institution school state","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["5"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_institution_school_type_name":{"title":"Filter by alumni's prior institution school type name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Two year"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_institution_school_type":{"title":"Filter by alumni's prior institution school type","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["2"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_num_semesters":{"title":"Filter by alumni's prior number of semesters","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[6],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_program_cip_name":{"title":"Filter by alumni's prior program cip name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["3-D Modeling and Design Technology/Technician"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_program_cip":{"title":"Filter by alumni's prior program cip","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["15.1307"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_start_date":{"title":"Filter by alumni's prior start date","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["1992-08-05"],"type":["array","object"],"properties":{},"minItems":1},"nsc_program_cip_name":{"title":"Filter by alumni's program cip name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Actuarial Science"],"type":["array","object"],"properties":{},"minItems":1},"nsc_program_cip":{"title":"Filter by alumni's program cip","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["52.1304"],"type":["array","object"],"properties":{},"minItems":1},"nsc_start_date":{"title":"Filter by alumni's start date","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["1996-06-20"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_completion_date":{"title":"Filter by alumni's subsequent completion date","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["2021-07-02"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_degree_level_name":{"title":"Filter by alumni's subsequent degree level name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["BACHELORS"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_degree_level_title_name":{"title":"Filter by alumni's subsequent degree level title name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Bachelor of Arts"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_degree_level_title":{"title":"Filter by alumni's subsequent degree level title","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["QmFjaGVsb3Igb2YgQXJ0cw=="],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_degree_level":{"title":"Filter by alumni's subsequent degree level","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["SawiAejPwYWZhLYDda6ggXpUQZ8ygFolNgYAVCLe"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_end_date":{"title":"Filter by alumni's subsequent end date","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["2023-01-23"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_enroll_status_name":{"title":"Filter by alumni's subsequent enrollment status name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Deceased"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_enroll_status":{"title":"Filter by alumni's subsequent enrollment status","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["REVDRUFTRUQ="],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_enrollment_level_name":{"title":"Filter by alumni's subsequent enrollment level name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Bachelors"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_enrollment_level":{"title":"Filter by alumni's subsequent enrollment level","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["BACHELORS"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_institution_ipeds":{"title":"Filter by alumni's subsequent institution ipeds id","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[176910],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_institution_ipeds_name":{"title":"Filter by alumni's subsequent institution ipeds name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["University of Idaho"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_institution_ope_id":{"title":"Filter by alumni's subsequent institution ope id","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["865681-20"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_institution_school_category_name":{"title":"Filter by alumni's subsequent institution school category name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Private For-Profit"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_institution_school_category":{"title":"Filter by alumni's subsequent institution school category","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["PRIV-FP"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_institution_school":{"title":"Filter by alumni's subsequent institution school","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["879f726747ef3fdd65f7b0f6df0d6384c0a9445c2a9b31cea51d5645e9ad4ca9"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_institution_school_name":{"title":"Filter by alumni's subsequent institution school name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Central Christian College of the Bible"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_institution_school_state_name":{"title":"Filter by alumni's subsequent institution school state name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Colorado"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_institution_school_state":{"title":"Filter by alumni's subsequent institution school state","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["8"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_institution_school_type_name":{"title":"Filter by alumni's subsequent institution school type name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Four year"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_institution_school_type":{"title":"Filter by alumni's subsequent institution school type","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["4"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_num_semesters":{"title":"Filter by alumni's subsequent number of semesters","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[3],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_program_cip_name":{"title":"Filter by alumni's subsequent program cip name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Abdominal Radiology Fellowship Program"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_program_cip":{"title":"Filter by alumni's subsequent program cip","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["61.2603"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_start_date":{"title":"Filter by alumni's subsequent start date","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["2022-09-25"],"type":["array","object"],"properties":{},"minItems":1},"nsc_match_status":{"title":"Filter by alumni matched with NSC data","description":"This filters to alumni that are matched with NSC data.","type":"boolean","example":true},"is_job_after_grad_year":{"title":"Filter by alumni's job type","description":"This indicates whether a profile's current job started after graduation.\n\nNot all accounts will have this field, check [meta](#get-account-account_id-meta) filters and facets for availability.","type":"boolean","example":true},"is_highest_level_award":{"title":"Filter by alumni's degree status","description":"This filters to profiles that represent the highest and the most recent awarded degree.\n\nNot all accounts will have this field, check [meta](#get-account-account_id-meta) filters and facets for availability.","type":"boolean","example":true},"match_status":{"title":"Filter by alumni matched with a profile","description":"This filters to alumni that are matched to a profile.","type":"boolean","example":true},"match_score":{"title":"Filter by alumni match score","description":"This filters to alumni that are matched to a match score range","type":"object","properties":{"lower_bound":{"title":"Lower bound for match score (inclusive).","type":"number","minimum":0,"example":0.01},"upper_bound":{"title":"Upper bound for match score (inclusive).","type":"number","minimum":0,"example":0.8}},"additionalProperties":false},"nsc_prior_is_completion":{"title":"Filter by alumni with prior completions","description":"This filters to alumni that are matched to a profile.","type":"boolean","example":true},"nsc_has_prior":{"title":"Filter by alumni with prior education","description":"This filters to alumni that are matched to a profile.","type":"boolean","example":true},"nsc_subsequent_is_completion":{"title":"Filter by alumni with subsequent completions","description":"This filters to alumni that are matched to a profile.","type":"boolean","example":true},"nsc_has_subsequent":{"title":"Filter by alumni with subsequent education","description":"This filters to alumni that are matched to a profile.","type":"boolean","example":true},"bucketed_career_events":{"title":"Filter by career events","description":"An object or list of objects describing career events. Career events in a list will be ANDed together, fields within a bucketed_career_events object will be ANDed together, values in an bucketed_career_events field will be ORed together.","type":["object","array"],"properties":{"organization":{"title":"Filter by organization","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["employer"],"properties":{},"minItems":1},"event_type":{"title":"Filter by event type","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["employment"],"properties":{},"minItems":1},"sequence_order_number":{"title":"Filter by sequence order number","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["1"],"properties":{},"minItems":1},"high_level_grouping":{"title":"Filter by high level grouping","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["39-0000"],"properties":{},"minItems":1},"low_level_grouping":{"title":"Filter by low level grouping","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["39-1022"],"properties":{},"minItems":1},"career_events_estimated_wage":{"title":"Filter by alumni's estimated wage","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[63000],"type":["array","object"],"properties":{},"minItems":1},"career_events_event_in_field":{"title":"Filter by alumni that were in field during this event","description":"This filters to alumni that were in field for this event.","type":"boolean","example":true}},"additionalProperties":false,"items":{"description":"An object describing a single career event.","type":"object","properties":{"organization":{"title":"Filter by organization","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["employer"],"properties":{},"minItems":1},"event_type":{"title":"Filter by event type","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["employment"],"properties":{},"minItems":1},"sequence_order_number":{"title":"Filter by sequence order number","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["1"],"properties":{},"minItems":1},"high_level_grouping":{"title":"Filter by high level grouping","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["39-0000"],"properties":{},"minItems":1},"low_level_grouping":{"title":"Filter by low level grouping","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["39-1022"],"properties":{},"minItems":1},"career_events_estimated_wage":{"title":"Filter by alumni's estimated wage","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[63000],"type":["array","object"],"properties":{},"minItems":1},"career_events_event_in_field":{"title":"Filter by alumni that were in field during this event","description":"This filters to alumni that were in field for this event.","type":"boolean","example":true}},"additionalProperties":false},"minItems":1},"career_events":{"title":"Filter by career events","description":"An object or list of objects describing career events. Career events in a list will be ANDed together, fields within an career_events object will be ANDed together, values in an career_events field will be ORed together.","type":["object","array"],"properties":{"organization":{"title":"Filter by organization","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["employer"],"properties":{},"minItems":1},"event_type":{"title":"Filter by event type","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["employment"],"properties":{},"minItems":1},"sequence_order_number":{"title":"Filter by sequence order number","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["1"],"properties":{},"minItems":1},"high_level_grouping":{"title":"Filter by high level grouping","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["39-0000"],"properties":{},"minItems":1},"low_level_grouping":{"title":"Filter by low level grouping","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["39-1022"],"properties":{},"minItems":1},"career_events_estimated_wage":{"title":"Filter by alumni's estimated wage","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[63000],"type":["array","object"],"properties":{},"minItems":1},"career_events_event_in_field":{"title":"Filter by alumni that were in field during this event","description":"This filters to alumni that were in field for this event.","type":"boolean","example":true}},"additionalProperties":false,"items":{"description":"An object describing a single career event.","type":"object","properties":{"organization":{"title":"Filter by organization","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["employer"],"properties":{},"minItems":1},"event_type":{"title":"Filter by event type","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["employment"],"properties":{},"minItems":1},"sequence_order_number":{"title":"Filter by sequence order number","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["1"],"properties":{},"minItems":1},"high_level_grouping":{"title":"Filter by high level grouping","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["39-0000"],"properties":{},"minItems":1},"low_level_grouping":{"title":"Filter by low level grouping","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["39-1022"],"properties":{},"minItems":1},"career_events_estimated_wage":{"title":"Filter by alumni's estimated wage","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[63000],"type":["array","object"],"properties":{},"minItems":1},"career_events_event_in_field":{"title":"Filter by alumni that were in field during this event","description":"This filters to alumni that were in field for this event.","type":"boolean","example":true}},"additionalProperties":false},"minItems":1}},"additionalProperties":false},"rank":{"title":"Choose how to rank your results","type":"object","properties":{"by":{"title":"What metric to use to rank the ranking facet","description":"Some metrics may be approximations for performance reasons.","type":"string"},"limit":{"title":"Limit the number of ranked items returned","description":"Unlimited rankings (passing a maximum of `0`) are not valid for job titles, cities, companies, skills, and certifications facets.","default":10,"type":"integer","minimum":0,"maximum":1000},"extra_metrics":{"title":"Request additional metrics for each ranked group returned","description":"In addition to 'by' metric, calculate these metrics for each ranked group. Some metrics may be approximations for performance reasons.","type":"array","items":{"type":"string"},"minItems":1},"minProfiles":{"title":"Filter ranked items by number of profiles for the item","description":"Require ranked items to have at least this many profiles matching the filter.","default":1,"type":"integer","minimum":1},"order":{"title":"What order to sort the ranking results","default":"desc","type":"string","enum":["asc","desc"]},"include":{"title":"Filter ranked items to only those provided in this field","description":"This field does not affect totals matched by the request query, it only filters the items returned in the ranking.","type":"array","items":{"type":["string","integer"],"minLength":1},"minItems":1},"exclude":{"title":"Filter ranked items to only those not provided in this field","description":"This field does not affect totals matched by the request query, it only filters the items returned in the ranking.","type":"array","items":{"type":["string","integer"],"minLength":1},"minItems":1}},"required":["by"],"additionalProperties":false},"nested_rank":{"title":"Choose how to rank your results","type":"object","properties":{"by":{"title":"What metric to use to rank the ranking facet","description":"Some metrics may be approximations for performance reasons.","type":"string"},"limit":{"title":"Limit the number of ranked items returned","description":"Unlimited rankings (passing a maximum of `0`) are not valid for job titles, cities, companies, skills, and certifications facets.","default":10,"type":"integer","minimum":0,"maximum":1000},"extra_metrics":{"title":"Request additional metrics for each ranked group returned","description":"In addition to 'by' metric, calculate these metrics for each ranked group. Some metrics may be approximations for performance reasons.","type":"array","items":{"type":"string"},"minItems":1},"minProfiles":{"title":"Filter ranked items by number of profiles for the item","description":"Require ranked items to have at least this many profiles matching the filter.","default":1,"type":"integer","minimum":1},"order":{"title":"What order to sort the ranking results","default":"desc","type":"string","enum":["asc","desc"]},"include":{"title":"Filter ranked items to only those provided in this field","description":"This field does not affect totals matched by the request query, it only filters the items returned in the ranking.","type":"array","items":{"type":["string","integer"],"minLength":1},"minItems":1},"exclude":{"title":"Filter ranked items to only those not provided in this field","description":"This field does not affect totals matched by the request query, it only filters the items returned in the ranking.","type":"array","items":{"type":["string","integer"],"minLength":1},"minItems":1}},"required":["by"],"additionalProperties":false}},"required":["filter","rank","nested_rank"]}}},"required":true},"responses":{"200":{"description":"OK","content":{"application/json":{"example":{"data":{"ranking":{"buckets":[{"value":"Eldridge Electric, Inc","alumni":1,"ranking":{"buckets":[{"key":"id123","value":"Eldridge Electric, Inc","alumni":1}],"ranking_dimension":"company","limit":5,"rank_by":"alumni"}}],"ranking_dimension":"company","limit":5,"rank_by":"alumni"},"totals":{"alumni":1}}},"schema":{"$schema":"http://json-schema.org/draft-07/schema","type":"object","$id":"responses/nested-ranking.schema.json","properties":{"data":{"type":"object","properties":{"totals":{"type":"object","properties":{"alumni":{"type":"integer","minimum":0},"collectionCount":{"type":"integer","minimum":0},"average":{"type":"number","minimum":0},"median":{"type":"number","minimum":0},"percentile":{"type":"integer","minimum":0},"unique":{"type":"integer","minimum":0}},"required":["alumni"],"additionalProperties":true},"ranking":{"type":"object","properties":{"ranking_dimension":{"type":"string","minLength":1},"rank_by":{"type":"string","enum":["alumni","uniqueSchools","uniqueCompanies"]},"limit":{"type":"integer","minimum":0},"buckets":{"type":"array","items":{"type":"object","properties":{"key":{"type":["string","integer","null"],"minLength":1,"minimum":0},"value":{"type":["string","integer","null"],"minLength":1},"alumni":{"type":"integer","minimum":0},"uniqueSchools":{"type":"integer","minimum":0},"uniqueCompanies":{"type":"integer","minimum":0},"averageWage":{"type":"number","minimum":0},"estimatedWage":{"type":"number","minimum":0},"ranking":{"type":"object","properties":{"ranking_dimension":{"type":"string","minLength":1},"rank_by":{"type":"string","enum":["alumni","uniqueSchools","uniqueCompanies"]},"limit":{"type":"integer","minimum":0},"buckets":{"type":"array","items":{"type":"object","properties":{"key":{"type":["string","integer","null"],"minLength":1,"minimum":0},"value":{"type":["string","integer","null"],"minLength":1},"alumni":{"type":"integer","minimum":0},"uniqueSchools":{"type":"integer","minimum":0},"uniqueCompanies":{"type":"integer","minimum":0},"employedInField":{"type":"integer","minimum":0},"averageWage":{"type":"number","minimum":0},"estimatedWage":{"type":"number","minimum":0},"resideInRegion":{"type":"integer","minimum":0}},"required":["key","value"],"additionalProperties":true}}},"required":["ranking_dimension","rank_by","limit","buckets"]}},"required":["value","ranking"],"additionalProperties":true}}},"required":["ranking_dimension","rank_by","limit","buckets"],"additionalProperties":false}},"required":["totals","ranking"],"additionalProperties":false}},"required":["data"],"additionalProperties":false}}}},"400":{"$ref":"#/components/responses/400"},"404":{"$ref":"#/components/responses/404"}},"operationId":"alumni_post_nestedrankings"}},"/rankings/{rankingDimension}/rankings/{nestedRankingDimension}/intersect":{"post":{"tags":["Rankings"],"summary":"Get intersection","description":"Intersection matrix of any two facets (e.g. programs and occupations). Data is returned as a matrix. `employed_in_field_pct` and `value` links create the contents of the intersections between the two facets (the `sources` and `targets` nodes). The `employed_in_field_pct` values refer to the degree to which the alumni are employed in field (e.g. value of 1 corresponds to 100% employed-in-field). The `value` values refer to the number of profiles shared between the two facets. Look at the account meta to get a list of available facets.","parameters":[{"$ref":"#/components/parameters/accountIdQuery"},{"$ref":"#/components/parameters/rankingDimension"},{"$ref":"#/components/parameters/nestedRankingDimension"}],"requestBody":{"content":{"application/json":{"example":{"filter":{},"intersect":{"limit":2}},"schema":{"$schema":"http://json-schema.org/draft-07/schema","$id":"requests/intersect.schema.json","description":"Request matrices that contain the intersections between a given `{sourceFacet}` and `{targetFacet}`. The values within the matrices represent the amount of matching profiles at each intersection, and the degree to which these alumni are employed in-field.","type":"object","additionalProperties":false,"properties":{"filter":{"title":"Add filters to your postings query","type":"object","properties":{"academic_unit":{"title":"Filter by the id of the alumni's academic unit provided by the institution","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).\n\nNot all accounts will have this field, check [meta](#get-account-account_id-meta) filters and facets for availability.","example":["Q29sbGVnZSBvZiBTY2llbmNlCg=="],"type":["array","object"],"properties":{},"minItems":1},"academic_unit_name":{"title":"Filter by the name of the alumni's academic unit provided by the institution","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).\n\nNot all accounts will have this field, check [meta](#get-account-account_id-meta) filters and facets for availability.","example":["College of Science"],"type":["array","object"],"properties":{},"minItems":1},"academic_subunit":{"title":"Filter by the id of the alumni's academic sub unit provided by the institution","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).\n\nNot all account will have this field, check [meta](#get-account-account_id-meta) filters and facets for availability.","example":["RGVwYXJ0bWVudCBvZiBCaW9sb2dpY2FsIFNjaWVuY2Vz"],"type":["array","object"],"properties":{},"minItems":1},"academic_subunit_name":{"title":"Filtery by the name of the alumni's academic sub unit provided by the institution","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).\n\nNot all accounts will have this field, check [meta](#get-account-account_id-meta) filters and facets for availability.","example":["Department of Biological Sciences"],"type":["array","object"],"properties":{},"minItems":1},"campus":{"title":"Filter by the id of the campus the alumni attended as provided by the institution","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).\n\nNot all accounts will have this field, check [meta](#get-account-account_id-meta) filters and facets for availability.","example":["V1NVIFRyaS1DaXRpZXM="],"type":["array","object"],"properties":{},"minItems":1},"campus_name":{"title":"Filter by the name of the campus the alumni attended as provided by the institution","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).\n\nNot all accounts will have this field, check [meta](#get-account-account_id-meta) filters and facets for availability.","example":["WSU Tri-Cities"],"type":["array","object"],"properties":{},"minItems":1},"country":{"title":"Filter by country id","default":["9b202ecbc6d45c6d8901d989a918878397a3eb9d00e8f48022fc051b19d21a1d"],"type":"array","items":{"type":"string","minLength":1},"minItems":1},"country_name":{"title":"Filter by country name","default":["US"],"type":"array","items":{"type":"string","minLength":1,"enum":["US","GB","CA"]},"minItems":1},"city":{"title":"Filter by city id","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["ChIJ0WHAIi0hoFQRbK3q5g0V_T4"],"type":["array","object"],"properties":{},"minItems":1},"city_name":{"title":"Filter by city names with state abbreviations","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Moscow, ID"],"type":["array","object"],"properties":{},"minItems":1},"county":{"title":"Filter by Lightcast county (FIPS) codes","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[16057],"type":["array","object"],"properties":{},"minItems":1},"county_name":{"title":"Filter by Lightcast county (FIPS) names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Latah, ID"],"type":["array","object"],"properties":{},"minItems":1},"fips":{"title":"Filter by Lightcast county (FIPS) codes","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[16057],"type":["array","object"],"properties":{},"minItems":1},"fips_name":{"title":"Filter by Lightcast county (FIPS) names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Latah, ID"],"type":["array","object"],"properties":{},"minItems":1},"msa":{"title":"Filter by Lightcast MSA codes (metro or micro)","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[34140],"type":["array","object"],"properties":{},"minItems":1},"msa_name":{"title":"Filter by Lightcast MSA names (metro or micro)","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Moscow, ID"],"type":["array","object"],"properties":{},"minItems":1},"state":{"title":"Filter by state 2-digit FIPS","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[16],"type":["array","object"],"properties":{},"minItems":1},"state_name":{"title":"Filter by state names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Idaho"],"type":["array","object"],"properties":{},"minItems":1},"title":{"title":"Filter by job title codes","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["53.30837"],"type":["array","object"],"properties":{},"minItems":1},"title_name":{"title":"Filter by job title names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Web Developer"],"type":["array","object"],"properties":{},"minItems":1},"onet":{"title":"Filter by Lightcast O*NET codes","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["29-1141.00"],"type":["array","object"],"properties":{},"minItems":1},"onet_name":{"title":"Filter by Lightcast O*NET names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Registered Nurses"],"type":["array","object"],"properties":{},"minItems":1},"soc2":{"title":"Filter by Lightcast level 2 SOC codes","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["11-0000"],"type":["array","object"],"properties":{},"minItems":1},"soc2_name":{"title":"Filter by Lightcast level 2 SOC names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Management Occupations"],"type":["array","object"],"properties":{},"minItems":1},"soc3":{"title":"Filter by Lightcast level 3 SOC codes","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["11-1000"],"type":["array","object"],"properties":{},"minItems":1},"soc3_name":{"title":"Filter by Lightcast level 3 SOC names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Top Executives"],"type":["array","object"],"properties":{},"minItems":1},"soc4":{"title":"Filter by Lightcast level 4 SOC codes","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["11-1010"],"type":["array","object"],"properties":{},"minItems":1},"soc4_name":{"title":"Filter by Lightcast level 4 SOC names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Chief Executives"],"type":["array","object"],"properties":{},"minItems":1},"soc5":{"title":"Filter by Lightcast level 5 SOC codes","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["11-1011"],"type":["array","object"],"properties":{},"minItems":1},"soc5_name":{"title":"Filter by Lightcast level 5 SOC names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Chief Executives"],"type":["array","object"],"properties":{},"minItems":1},"company":{"title":"Filter by normalized company codes","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["NC95f2bd68-11c7-4140-92ab-7b82fd2d9f7e"],"type":["array","object"],"properties":{},"minItems":1},"company_name":{"title":"Filter by normalized company names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Microsoft"],"type":["array","object"],"properties":{},"minItems":1},"schools":{"title":"Filter by school ids","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["53bff579e4b04710d09fde45"],"type":["array","object"],"properties":{},"minItems":1},"schools_name":{"title":"Filter by school name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["University of Idaho"],"type":["array","object"],"properties":{},"minItems":1},"naics2":{"title":"Filter by Lightcast level 2 NAICS codes","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[51],"type":["array","object"],"properties":{},"minItems":1},"naics2_name":{"title":"Filter by Lightcast level 2 NAICS names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Information"],"type":["array","object"],"properties":{},"minItems":1},"naics3":{"title":"Filter by Lightcast level 3 NAICS codes","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[511],"type":["array","object"],"properties":{},"minItems":1},"naics3_name":{"title":"Filter by Lightcast level 3 NAICS names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Publishing Industries (except Internet)"],"type":["array","object"],"properties":{},"minItems":1},"naics4":{"title":"Filter by Lightcast level 4 NAICS codes","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[5111],"type":["array","object"],"properties":{},"minItems":1},"naics4_name":{"title":"Filter by Lightcast level 4 NAICS names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Newspaper, Periodical, Book, and Directory Publishers"],"type":["array","object"],"properties":{},"minItems":1},"naics5":{"title":"Filter by Lightcast level 5 NAICS codes","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[51113],"type":["array","object"],"properties":{},"minItems":1},"naics5_name":{"title":"Filter by Lightcast level 5 NAICS names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Book Publishers"],"type":["array","object"],"properties":{},"minItems":1},"naics6":{"title":"Filter by Lightcast level 6 NAICS codes","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[511130],"type":["array","object"],"properties":{},"minItems":1},"naics6_name":{"title":"Filter by Lightcast level 6 NAICS names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Book Publishers"],"type":["array","object"],"properties":{},"minItems":1},"lot_specialized_occupation":{"title":"Filter by specialized occupation ids","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["27121011"],"type":["array","object"],"minItems":1,"properties":{},"additionalProperties":false},"lot_specialized_occupation_name":{"title":"Filter by specialized occupation names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["E-Commerce Assistant"],"type":["array","object"],"minItems":1,"properties":{},"additionalProperties":false},"lot_occupation":{"title":"Filter by occupation ids","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["271210"],"type":["array","object"],"minItems":1,"properties":{},"additionalProperties":false},"lot_occupation_name":{"title":"Filter by occupation names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["E-Commerce Analyst"],"type":["array","object"],"minItems":1,"properties":{},"additionalProperties":false},"lot_occupation_group":{"title":"Filter by occupation group ids","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["2712"],"type":["array","object"],"minItems":1,"properties":{},"additionalProperties":false},"lot_occupation_group_name":{"title":"Filter by occupation group names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Marketing Specialists"],"type":["array","object"],"minItems":1,"properties":{},"additionalProperties":false},"lot_career_area":{"title":"Filter by career area ids","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["27"],"type":["array","object"],"minItems":1,"properties":{},"additionalProperties":false},"lot_career_area_name":{"title":"Filter by career area names","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Marketing and Public Relations"],"type":["array","object"],"minItems":1,"properties":{},"additionalProperties":false},"skills":{"title":"Filter by skill codes (any skill type)","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["KS7G2FY662ZPN6H4DZND"],"type":["array","object"],"properties":{},"minItems":1},"skills_name":{"title":"Filter by skill names (any skill type)","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["SQL (Programming Language)"],"type":["array","object"],"properties":{},"minItems":1},"cip2":{"title":"Filter by CIP 2-digit code based off the programs provided by the institution","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["52"],"type":["array","object"],"properties":{},"minItems":1},"cip2_name":{"title":"Filter by CIP 2-digit names based off the programs provided by the institution","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Business, Management, Marketing, and Related Support Services"],"type":["array","object"],"properties":{},"minItems":1},"cip6":{"title":"Filter by CIP 6-digit code based off the programs provided by the institution","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["52.0201"],"type":["array","object"],"properties":{},"minItems":1},"cip6_name":{"title":"Filter by CIP 6-digit names based off the programs provided by the institution","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Business Administration and Management, General"],"type":["array","object"],"properties":{},"minItems":1},"program":{"title":"Filter by id of the program provided by the institution","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["0bbb843c75b8cb93ceb9"],"type":["array","object"],"properties":{},"minItems":1},"program_name":{"title":"Filter by program name provided by the institution","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Business Administration"],"type":["array","object"],"properties":{},"minItems":1},"inst_gradyear":{"title":"Filter by alumni graduation years","description":"`start` and `end` may be omitted to make them unbounded.","type":"object","properties":{"start":{"title":"Earliest alumni graduation date","example":"2015","type":["string","integer"]},"end":{"title":"Latest alumni graduation date","example":"2017","type":["string","integer"]}},"additionalProperties":false},"is_graduate":{"title":"Filter by graduation status provided by the institution","example":[true],"type":"array","minItems":1},"degree_level":{"title":"Filter by id of the degree level provided by the institution","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["9cd8b048d5af8f4f0bf9"],"type":["array","object"],"properties":{},"minItems":1},"degree_level_name":{"title":"Filter by degree level name provided by the institution","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Bachelor of Science"],"type":["array","object"],"properties":{},"minItems":1},"loc_status":{"title":"Filter by id of the alumni's location status","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["6a696de6202f59d891c9"],"type":["array","object"],"properties":{},"minItems":1},"loc_status_name":{"title":"Filter by alumni's location status","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["RESIDES IN REGION"],"type":["array","object"],"properties":{},"minItems":1},"emp_status":{"title":"Filter by id of the alumni's employment status","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["64a03a88861cfccf4362"],"type":["array","object"],"properties":{},"minItems":1},"race":{"title":"Filter by the id of an alumni's race","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Pacific Islander"],"type":["array","object"],"properties":{},"minItems":1},"ethnicity":{"title":"Filter by the id of an alumni's ethnicity","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Hispanic"],"type":["array","object"],"properties":{},"minItems":1},"gender":{"title":"Filter by the id of an alumni's gender","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["male"],"type":["array","object"],"properties":{},"minItems":1},"age_grad_band":{"title":"Filter by the id of an alumni's age band of graduation","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["20-24"],"type":["array","object"],"properties":{},"minItems":1},"race_name":{"title":"Filter by alumni's race name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Pacific Islander"],"type":["array","object"],"properties":{},"minItems":1},"ethnicity_name":{"title":"Filter by alumni's ethnicity name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Hispanic"],"type":["array","object"],"properties":{},"minItems":1},"gender_name":{"title":"Filter by alumni's gender name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["male"],"type":["array","object"],"properties":{},"minItems":1},"age_grad_band_name":{"title":"Filter by alumni's age band of graduation name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["20-24"],"type":["array","object"],"properties":{},"minItems":1},"education_status":{"title":"Filter by alumni's education status id","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["WOgkRibmrQRX"],"type":["array","object"],"properties":{},"minItems":1},"education_status_name":{"title":"Filter by alumni's education status name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Continued"],"type":["array","object"],"properties":{},"minItems":1},"birth_year":{"title":"Filter by alumni's birth year","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["1979"],"type":["array","object"],"properties":{},"minItems":1},"emp_status_name":{"title":"Filter by alumni's employment status","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["EMPLOYED IN FIELD"],"type":["array","object"],"properties":{},"minItems":1},"additional_education_name":{"title":"Filter by alumni's additional education name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Pursued subsequent education at our institution"],"type":["array","object"],"properties":{},"minItems":1},"additional_education":{"title":"Filter by alumni's additional education","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["UHVyc3VlZCBzdWJzZXF1ZW50IGVkdWNhdGlvbiBhdCBvdGhlciBpbnN0aXR1dGlvbnM="],"type":["array","object"],"properties":{},"minItems":1},"nsc_completion_date":{"title":"Filter by alumni's completion date","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["2003-07-17"],"type":["array","object"],"properties":{},"minItems":1},"nsc_degree_level_name":{"title":"Filter by alumni's degree level name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["ASSOCIATES"],"type":["array","object"],"properties":{},"minItems":1},"nsc_degree_level_title_name":{"title":"Filter by alumni's degree level title name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Associate of Arts"],"type":["array","object"],"properties":{},"minItems":1},"nsc_degree_level_title":{"title":"Filter by alumni's degree level title","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["QXNzb2NpYXRlIG9mIEFydHM="],"type":["array","object"],"properties":{},"minItems":1},"nsc_degree_level":{"title":"Filter by alumni's degree level","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["UPTHiBKJsjUQiznA9xsA9yb1Rbcoxrr5NgYAVCLe"],"type":["array","object"],"properties":{},"minItems":1},"nsc_end_date":{"title":"Filter by alumni's end date","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["2023-06-05"],"type":["array","object"],"properties":{},"minItems":1},"nsc_enroll_status_name":{"title":"Filter by alumni's enrollment status name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Full Time"],"type":["array","object"],"properties":{},"minItems":1},"nsc_enroll_status":{"title":"Filter by alumni's enrollment status","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["RlVMTCBUSU1F"],"type":["array","object"],"properties":{},"minItems":1},"nsc_enrollment_level_name":{"title":"Filter by alumni's enrollment level name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Associates"],"type":["array","object"],"properties":{},"minItems":1},"nsc_enrollment_level":{"title":"Filter by alumni's enrollment level","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["ASSOCIATES"],"type":["array","object"],"properties":{},"minItems":1},"nsc_institution_ipeds":{"title":"Filter by alumni's institution ipeds id","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[113528],"type":["array","object"],"properties":{},"minItems":1},"nsc_institution_ipeds_name":{"title":"Filter by alumni's institution ipeds name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["University of Idaho"],"type":["array","object"],"properties":{},"minItems":1},"nsc_institution_ope_id":{"title":"Filter by alumni's institution ope id","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["831777-77"],"type":["array","object"],"properties":{},"minItems":1},"nsc_institution_school_category_name":{"title":"Filter by alumni's institution school category name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Private Not For-Profit"],"type":["array","object"],"properties":{},"minItems":1},"nsc_institution_school_category":{"title":"Filter by alumni's institution school category","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["PRIV-NFP"],"type":["array","object"],"properties":{},"minItems":1},"nsc_institution_school_name":{"title":"Filter by alumni's institution school name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["DEEP SPRINGS COLLEGE"],"type":["array","object"],"properties":{},"minItems":1},"nsc_institution_school_state_name":{"title":"Filter by alumni's institution school state name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Arizona"],"type":["array","object"],"properties":{},"minItems":1},"nsc_institution_school_state":{"title":"Filter by alumni's institution school state","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["4"],"type":["array","object"],"properties":{},"minItems":1},"nsc_institution_school_type_name":{"title":"Filter by alumni's institution school type name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Four year"],"type":["array","object"],"properties":{},"minItems":1},"nsc_institution_school_type":{"title":"Filter by alumni's institution school type","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["4"],"type":["array","object"],"properties":{},"minItems":1},"nsc_num_semesters":{"title":"Filter by alumni's number of semesters","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[5],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_completion_date":{"title":"Filter by alumni's prior completion date","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["2021-01-09"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_degree_level_name":{"title":"Filter by alumni's prior degree level name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["ASSOCIATES"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_degree_level_title_name":{"title":"Filter by alumni's prior degree level title name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Associate of Arts"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_degree_level_title":{"title":"Filter by alumni's prior degree level title","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["QXNzb2NpYXRlIG9mIEFydHM="],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_degree_level":{"title":"Filter by alumni's prior degree level","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["UPTHiBKJsjUQiznA9xsA9yb1Rbcoxrr5NgYAVCLe"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_end_date":{"title":"Filter by alumni's prior end date","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["2021-07-13"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_enroll_status_name":{"title":"Filter by alumni's prior enrollment status name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Half Time"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_enroll_status":{"title":"Filter by alumni's prior enrollment status","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["MS8yIFRJTUU="],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_enrollment_level_name":{"title":"Filter by alumni's prior enrollment level name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Associates"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_enrollment_level":{"title":"Filter by alumni's prior enrollment nsc_prior_degree_level","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["ASSOCIATES"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_institution_ipeds":{"title":"Filter by alumni's prior institution ipeds id","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[113528],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_institution_ipeds_name":{"title":"Filter by alumni's prior institution ipeds name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["University of Idaho"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_institution_ope_id":{"title":"Filter by alumni's prior institution ope id","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["413521-69"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_institution_school_category_name":{"title":"Filter by alumni's prior institution school category name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Public"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_institution_school_category":{"title":"Filter by alumni's prior institution school category","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["PUB"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_institution_school":{"title":"Filter by alumni's prior institution school","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["879f726747ef3fdd65f7b0f6df0d6384c0a9445c2a9b31cea51d5645e9ad4ca9"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_institution_school_name":{"title":"Filter by alumni's prior institution school name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["PIERRES SCHOOL OF COSMETOLOGY"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_institution_school_state_name":{"title":"Filter by alumni's prior institution school state name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Arkansas"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_institution_school_state":{"title":"Filter by alumni's prior institution school state","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["5"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_institution_school_type_name":{"title":"Filter by alumni's prior institution school type name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Two year"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_institution_school_type":{"title":"Filter by alumni's prior institution school type","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["2"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_num_semesters":{"title":"Filter by alumni's prior number of semesters","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[6],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_program_cip_name":{"title":"Filter by alumni's prior program cip name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["3-D Modeling and Design Technology/Technician"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_program_cip":{"title":"Filter by alumni's prior program cip","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["15.1307"],"type":["array","object"],"properties":{},"minItems":1},"nsc_prior_start_date":{"title":"Filter by alumni's prior start date","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["1992-08-05"],"type":["array","object"],"properties":{},"minItems":1},"nsc_program_cip_name":{"title":"Filter by alumni's program cip name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Actuarial Science"],"type":["array","object"],"properties":{},"minItems":1},"nsc_program_cip":{"title":"Filter by alumni's program cip","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["52.1304"],"type":["array","object"],"properties":{},"minItems":1},"nsc_start_date":{"title":"Filter by alumni's start date","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["1996-06-20"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_completion_date":{"title":"Filter by alumni's subsequent completion date","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["2021-07-02"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_degree_level_name":{"title":"Filter by alumni's subsequent degree level name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["BACHELORS"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_degree_level_title_name":{"title":"Filter by alumni's subsequent degree level title name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Bachelor of Arts"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_degree_level_title":{"title":"Filter by alumni's subsequent degree level title","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["QmFjaGVsb3Igb2YgQXJ0cw=="],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_degree_level":{"title":"Filter by alumni's subsequent degree level","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["SawiAejPwYWZhLYDda6ggXpUQZ8ygFolNgYAVCLe"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_end_date":{"title":"Filter by alumni's subsequent end date","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["2023-01-23"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_enroll_status_name":{"title":"Filter by alumni's subsequent enrollment status name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Deceased"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_enroll_status":{"title":"Filter by alumni's subsequent enrollment status","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["REVDRUFTRUQ="],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_enrollment_level_name":{"title":"Filter by alumni's subsequent enrollment level name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Bachelors"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_enrollment_level":{"title":"Filter by alumni's subsequent enrollment level","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["BACHELORS"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_institution_ipeds":{"title":"Filter by alumni's subsequent institution ipeds id","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[176910],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_institution_ipeds_name":{"title":"Filter by alumni's subsequent institution ipeds name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["University of Idaho"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_institution_ope_id":{"title":"Filter by alumni's subsequent institution ope id","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["865681-20"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_institution_school_category_name":{"title":"Filter by alumni's subsequent institution school category name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Private For-Profit"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_institution_school_category":{"title":"Filter by alumni's subsequent institution school category","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["PRIV-FP"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_institution_school":{"title":"Filter by alumni's subsequent institution school","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["879f726747ef3fdd65f7b0f6df0d6384c0a9445c2a9b31cea51d5645e9ad4ca9"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_institution_school_name":{"title":"Filter by alumni's subsequent institution school name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Central Christian College of the Bible"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_institution_school_state_name":{"title":"Filter by alumni's subsequent institution school state name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Colorado"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_institution_school_state":{"title":"Filter by alumni's subsequent institution school state","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["8"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_institution_school_type_name":{"title":"Filter by alumni's subsequent institution school type name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Four year"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_institution_school_type":{"title":"Filter by alumni's subsequent institution school type","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["4"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_num_semesters":{"title":"Filter by alumni's subsequent number of semesters","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[3],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_program_cip_name":{"title":"Filter by alumni's subsequent program cip name","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["Abdominal Radiology Fellowship Program"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_program_cip":{"title":"Filter by alumni's subsequent program cip","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["61.2603"],"type":["array","object"],"properties":{},"minItems":1},"nsc_subsequent_start_date":{"title":"Filter by alumni's subsequent start date","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":["2022-09-25"],"type":["array","object"],"properties":{},"minItems":1},"nsc_match_status":{"title":"Filter by alumni matched with NSC data","description":"This filters to alumni that are matched with NSC data.","type":"boolean","example":true},"is_job_after_grad_year":{"title":"Filter by alumni's job type","description":"This indicates whether a profile's current job started after graduation.\n\nNot all accounts will have this field, check [meta](#get-account-account_id-meta) filters and facets for availability.","type":"boolean","example":true},"is_highest_level_award":{"title":"Filter by alumni's degree status","description":"This filters to profiles that represent the highest and the most recent awarded degree.\n\nNot all accounts will have this field, check [meta](#get-account-account_id-meta) filters and facets for availability.","type":"boolean","example":true},"match_status":{"title":"Filter by alumni matched with a profile","description":"This filters to alumni that are matched to a profile.","type":"boolean","example":true},"match_score":{"title":"Filter by alumni match score","description":"This filters to alumni that are matched to a match score range","type":"object","properties":{"lower_bound":{"title":"Lower bound for match score (inclusive).","type":"number","minimum":0,"example":0.01},"upper_bound":{"title":"Upper bound for match score (inclusive).","type":"number","minimum":0,"example":0.8}},"additionalProperties":false},"nsc_prior_is_completion":{"title":"Filter by alumni with prior completions","description":"This filters to alumni that are matched to a profile.","type":"boolean","example":true},"nsc_has_prior":{"title":"Filter by alumni with prior education","description":"This filters to alumni that are matched to a profile.","type":"boolean","example":true},"nsc_subsequent_is_completion":{"title":"Filter by alumni with subsequent completions","description":"This filters to alumni that are matched to a profile.","type":"boolean","example":true},"nsc_has_subsequent":{"title":"Filter by alumni with subsequent education","description":"This filters to alumni that are matched to a profile.","type":"boolean","example":true},"bucketed_career_events":{"title":"Filter by career events","description":"An object or list of objects describing career events. Career events in a list will be ANDed together, fields within a bucketed_career_events object will be ANDed together, values in an bucketed_career_events field will be ORed together.","type":["object","array"],"properties":{"organization":{"title":"Filter by organization","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["employer"],"properties":{},"minItems":1},"event_type":{"title":"Filter by event type","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["employment"],"properties":{},"minItems":1},"sequence_order_number":{"title":"Filter by sequence order number","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["1"],"properties":{},"minItems":1},"high_level_grouping":{"title":"Filter by high level grouping","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["39-0000"],"properties":{},"minItems":1},"low_level_grouping":{"title":"Filter by low level grouping","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["39-1022"],"properties":{},"minItems":1},"career_events_estimated_wage":{"title":"Filter by alumni's estimated wage","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[63000],"type":["array","object"],"properties":{},"minItems":1},"career_events_event_in_field":{"title":"Filter by alumni that were in field during this event","description":"This filters to alumni that were in field for this event.","type":"boolean","example":true}},"additionalProperties":false,"items":{"description":"An object describing a single career event.","type":"object","properties":{"organization":{"title":"Filter by organization","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["employer"],"properties":{},"minItems":1},"event_type":{"title":"Filter by event type","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["employment"],"properties":{},"minItems":1},"sequence_order_number":{"title":"Filter by sequence order number","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["1"],"properties":{},"minItems":1},"high_level_grouping":{"title":"Filter by high level grouping","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["39-0000"],"properties":{},"minItems":1},"low_level_grouping":{"title":"Filter by low level grouping","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["39-1022"],"properties":{},"minItems":1},"career_events_estimated_wage":{"title":"Filter by alumni's estimated wage","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[63000],"type":["array","object"],"properties":{},"minItems":1},"career_events_event_in_field":{"title":"Filter by alumni that were in field during this event","description":"This filters to alumni that were in field for this event.","type":"boolean","example":true}},"additionalProperties":false},"minItems":1},"career_events":{"title":"Filter by career events","description":"An object or list of objects describing career events. Career events in a list will be ANDed together, fields within an career_events object will be ANDed together, values in an career_events field will be ORed together.","type":["object","array"],"properties":{"organization":{"title":"Filter by organization","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["employer"],"properties":{},"minItems":1},"event_type":{"title":"Filter by event type","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["employment"],"properties":{},"minItems":1},"sequence_order_number":{"title":"Filter by sequence order number","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["1"],"properties":{},"minItems":1},"high_level_grouping":{"title":"Filter by high level grouping","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["39-0000"],"properties":{},"minItems":1},"low_level_grouping":{"title":"Filter by low level grouping","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["39-1022"],"properties":{},"minItems":1},"career_events_estimated_wage":{"title":"Filter by alumni's estimated wage","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[63000],"type":["array","object"],"properties":{},"minItems":1},"career_events_event_in_field":{"title":"Filter by alumni that were in field during this event","description":"This filters to alumni that were in field for this event.","type":"boolean","example":true}},"additionalProperties":false,"items":{"description":"An object describing a single career event.","type":"object","properties":{"organization":{"title":"Filter by organization","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["employer"],"properties":{},"minItems":1},"event_type":{"title":"Filter by event type","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["employment"],"properties":{},"minItems":1},"sequence_order_number":{"title":"Filter by sequence order number","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["1"],"properties":{},"minItems":1},"high_level_grouping":{"title":"Filter by high level grouping","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["39-0000"],"properties":{},"minItems":1},"low_level_grouping":{"title":"Filter by low level grouping","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","type":["array","object"],"example":["39-1022"],"properties":{},"minItems":1},"career_events_estimated_wage":{"title":"Filter by alumni's estimated wage","description":"This value may be an array of values to filter by (inclusively) or an object describing more nuanced filtering (for details see [Filtering](#filtering) above).","example":[63000],"type":["array","object"],"properties":{},"minItems":1},"career_events_event_in_field":{"title":"Filter by alumni that were in field during this event","description":"This filters to alumni that were in field for this event.","type":"boolean","example":true}},"additionalProperties":false},"minItems":1}},"additionalProperties":false},"intersect":{"title":"Choose how to perform an intersect","type":"object","properties":{"limit":{"title":"Number of data points to pull for each dimension in the matrix","type":"integer","minimum":1,"maximum":100,"default":10}},"additionalProperties":false}},"required":["filter","intersect"]}}},"required":true},"responses":{"200":{"description":"OK","content":{"application/json":{"example":{"data":{"links":{"value":[[0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1],[0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2],[12,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23]],"employed_in_field_pct":[[0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0.67,0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.52]]},"nodes":{"sources":["37422702","95682034","37394732","37844418","39428791","39850046","40125822","99483306","100021586","105498897","106302591","107528546","14481564","16095965","1629540","1714950","2217360","2271407","2295140","2661774","Other"],"targets":["SG91c3RvbiwgVFg=","U2FuIEFudG9uaW8sIFRY","RGFsbGFzLCBUWA==","QXVzdGluLCBUWA==","Rm9ydCBXb3J0aCwgVFg=","U3ByaW5nLCBUWA==","Q29ucm9lLCBUWA==","SmFja3NvbnZpbGxlLCBGTA==","TWNLaW5uZXksIFRY","Tm9ydGggUmljaGxhbmQgSGlsbHMsIFRY","U2VhdHRsZSwgV0E=","Q29sbGVnZSBTdGF0aW9uLCBUWA==","Q29tbWVyY2UsIFRY","Q2VkYXIgSGlsbCwgVFg=","Q2hpY2FnbywgSUw=","Q2xldmVsYW5kLCBPSA==","Q3lwcmVzcywgVFg=","QW1hcmlsbG8sIFRY","QXVicmV5LCBUWA==","QXpsZSwgVFg=","Other"]},"source_dimension":"company","target_dimension":"city","total":100}},"schema":{"$schema":"http://json-schema.org/draft-07/schema","type":"object","$id":"responses/intersect.schema.json","properties":{"data":{"properties":{"links":{"type":"object","properties":{"employed_in_field_pct":{"type":"array","items":{"type":"array","items":{"type":"number","minimum":0,"maximum":1},"minLength":2},"minLength":2},"value":{"type":"array","items":{"type":"array","items":{"type":"integer","minimum":0},"minLength":2},"minLength":2}},"required":["employed_in_field_pct","value"],"additionalProperties":false},"nodes":{"type":"object","properties":{"sources":{"type":"array","items":{"type":"string","minLength":1},"minLength":2},"targets":{"type":"array","items":{"type":"string","minLength":1},"minLength":2}},"required":["sources","targets"],"additionalProperties":false},"source_dimension":{"type":"string","minLength":1},"target_dimension":{"type":"string","minLength":1},"total":{"type":"integer","minimum":0}},"required":["links","nodes","source_dimension","target_dimension","total"],"additionalProperties":false}},"required":["data"],"additionalProperties":false}}}},"400":{"$ref":"#/components/responses/400"},"404":{"$ref":"#/components/responses/404"}},"operationId":"alumni_post_intersect"}},"/taxonomies":{"get":{"tags":["Taxonomies"],"summary":"Get taxonomy dimensions","description":"Get available taxonomy dimensions.","parameters":[{"$ref":"#/components/parameters/accountIdQuery"}],"responses":{"200":{"description":"OK","content":{"application/json":{"example":{"data":{"taxonomies":{"cip":"1_0","lot":"1_0","soc":"1_0","area":"1_0","city":"1_0","onet":"1_0","race":"1_0","naics":"1_0","title":"1_0","campus":"1_0","county":"1_0","gender":"1_0","skills":"1_0","company":"1_0"},"taxonomy_dimensions":["inst_age_grad_band","inst_ethnicity","inst_race","inst_gender","inst_program","inst_cip2","inst_cip6","inst_degree_level","inst_campus","inst_academic_unit","inst_academic_subunit","loc_status","city","county","msa","state","country"]}},"schema":{"$schema":"http://json-schema.org/draft-07/schema","$id":"responses/list-taxonomy-dimensions.schema.json","type":"object","properties":{"data":{"type":"object","properties":{"taxonomies":{"type":"object","additionalProperties":{"type":"string"}},"taxonomy_dimensions":{"type":"array","items":{"type":"string","pattern":"^[a-zA-Z0-9_-]+$","minLength":1}}},"required":["taxonomies","taxonomy_dimensions"],"additionalProperties":false}},"required":["data"],"additionalProperties":false}}}}},"operationId":"alumni_get_taxonomy_dimensions"}},"/taxonomies/{taxonomyDimension}":{"get":{"tags":["Taxonomies"],"summary":"Get concepts","description":"Get taxonomy dimension concepts.","parameters":[{"$ref":"#/components/parameters/accountIdQuery"},{"$ref":"#/components/parameters/taxonomyDimension"},{"name":"term","in":"query","description":"Specify search term to filter on.","example":"39742874","schema":{"type":"string"}},{"name":"autocomplete","in":"query","description":"Autocomplete search terms.","schema":{"type":"boolean","default":true}},{"name":"limit","in":"query","description":"How many search results to return.","example":10,"schema":{"type":"integer"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"example":{"data":[{"id":"11","name":"Engineering"}]},"schema":{"$schema":"http://json-schema.org/draft-07/schema","$id":"responses/taxonomy-search.schema.json","type":"object","properties":{"data":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","minLength":1,"minimum":0},"name":{"type":"string","minLength":1}},"required":["id","name"],"additionalProperties":true}}},"required":["data"],"additionalProperties":false}}}},"400":{"$ref":"#/components/responses/400"},"404":{"$ref":"#/components/responses/404"}},"operationId":"alumni_get_taxonomies"},"post":{"tags":["Taxonomies"],"summary":"Lookup concept","description":"Lookup a taxonomy dimension value by ID.","parameters":[{"$ref":"#/components/parameters/accountIdQuery"},{"$ref":"#/components/parameters/taxonomyDimension"}],"requestBody":{"content":{"application/json":{"example":{"ids":["11"]},"schema":{"$schema":"http://json-schema.org/draft-07/schema","$id":"requests/taxonomy-lookup.schema.json","type":"object","properties":{"ids":{"type":"array","items":{"type":["string","integer"],"minLength":1},"minItems":1,"maxItems":10000}},"required":["ids"],"additionalProperties":false}}},"required":true},"responses":{"200":{"description":"OK","content":{"application/json":{"example":{"data":[{"id":"11","name":"Engineering"}]},"schema":{"$schema":"http://json-schema.org/draft-07/schema","$id":"responses/taxonomy-lookup.schema.json","type":"object","properties":{"data":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","minLength":1,"minimum":0},"name":{"type":"string","minLength":1}},"required":["id","name"],"additionalProperties":true}}},"required":["data"],"additionalProperties":false}}}},"400":{"$ref":"#/components/responses/400"},"404":{"$ref":"#/components/responses/404"}},"operationId":"alumni_post_taxonomies"}}},"components":{"schemas":{},"responses":{"400":{"description":"bad request","content":{"application/json":{"example":{"errors":[{"status":400,"title":"Bad request","detail":"Unknown occupation 1234 for dimension lotocc"}]},"schema":{"$schema":"http://json-schema.org/draft-07/schema","type":"object","$id":"responses/error.schema.json","properties":{"errors":{"type":"array","items":{"type":"object","properties":{"status":{"type":"integer","minimum":400,"maximum":599},"title":{"type":"string","minLength":1},"detail":{"type":["string","null"],"minLength":1}},"required":["status","title","detail"],"additionalProperties":false},"minItems":1}},"required":["errors"],"additionalProperties":false}}}},"403":{"description":"forbidden","content":{"application/json":{"example":{"errors":[{"status":403,"title":"Forbidden","detail":"Insufficient permissions"}]},"schema":{"$ref":"#/components/responses/400/content/application~1json/schema"}}}},"404":{"description":"requested resource not found","content":{"application/json":{"example":{"errors":[{"status":404,"title":"Not found","detail":"Invalid request path (dimension: foo): value is not a valid enumeration member; permitted: 'lotocc', 'lotspecocc'"}]},"schema":{"$ref":"#/components/responses/400/content/application~1json/schema"}}}}},"parameters":{"accountId":{"name":"accountId","in":"path","required":true,"example":"334336","schema":{"type":"string"}},"schemaId":{"name":"schemaId","in":"path","required":true,"example":"schema-1","schema":{"type":"string"}},"datasetId":{"name":"datasetId","in":"path","required":true,"example":"local-test-data","schema":{"type":"string"}},"accountIdQuery":{"name":"accountId","in":"query","required":false,"description":"Optional account id. If omitted, defaults to the active account when one exists; otherwise the first linked account. Use this when the client has more than one account.","example":"334336","schema":{"type":"string"}},"sequenceType":{"name":"sequenceType","in":"path","required":true,"example":"bucketed_career_events","schema":{"type":"string"}},"rankingDimension":{"name":"rankingDimension","in":"path","required":true,"example":"title_name","schema":{"type":"string"}},"nestedRankingDimension":{"name":"nestedRankingDimension","in":"path","required":true,"example":"title_name","schema":{"type":"string"}},"taxonomyDimension":{"name":"taxonomyDimension","in":"path","required":true,"example":"title","schema":{"type":"string"}},"limit":{"name":"limit","in":"query","description":"Specify page limit.","example":1,"schema":{"type":"integer"}},"page":{"name":"page","in":"query","description":"Specify pagination number.","example":1,"schema":{"type":"integer"}}},"examples":{},"requestBodies":{},"headers":{},"securitySchemes":{"oauth2":{"description":"OAuth 2.0 for authenticating all API requests.","type":"oauth2","flows":{"clientCredentials":{"tokenUrl":"https://auth.emsicloud.com/connect/token","scopes":{"alumni-pathways":"Access to Alumni 2.0"}}}}},"links":{},"callbacks":{}},"security":[{"oauth2":["alumni-pathways"]}]}