search_cases
Search VICP cases with structured filters. - query: free text matched against petitioner identifier, condition, package id, caption name and the AI case summary. - vaccine: canonical vaccine name (use get_filters() for valid values, e.g. "Influenza (flu)", "DTaP/DPT", "MMR", "COVID-19", "Hepatitis B"). - condition_category / outcome: exact values from get_filters(). - pediatric_only uses the broad pediatric cohort definition (is_minor OR is_minor_inferred OR age<18) — strict age-only filtering undercounts pediatric cases substantially. - dates are ISO strings (YYYY-MM-DD); awards are USD integers. - sort: decision_date_desc|decision_date_asc|filed_asc|filed_desc|award_desc|award_asc - Returns total match count plus one page of compact case records with canonical URLs. Use get_case(package_id) for the full record.
Parameters18
| query | any | optional | |
| vaccine | any | optional | |
| condition_category | any | optional | |
| outcome | any | optional | |
| is_death | any | optional | |
| pediatric_only | boolean | optional | |
| autism_related | boolean | optional | |
| special_master | any | optional | |
| attorney | any | optional | |
| min_award | any | optional | |
| max_award | any | optional | |
| decided_from | any | optional | |
| decided_to | any | optional | |
| filed_from | any | optional | |
| filed_to | any | optional | |
| sort | string | optional | |
| limit | integer | optional | |
| offset | integer | optional |
Raw schema
{
"type": "object",
"properties": {
"query": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Query"
},
"vaccine": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Vaccine"
},
"condition_category": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Condition Category"
},
"outcome": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Outcome"
},
"is_death": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": null,
"title": "Is Death"
},
"pediatric_only": {
"default": false,
"title": "Pediatric Only",
"type": "boolean"
},
"autism_related": {
"default": false,
"title": "Autism Related",
"type": "boolean"
},
"special_master": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Special Master"
},
"attorney": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Attorney"
},
"min_award": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Min Award"
},
"max_award": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Max Award"
},
"decided_from": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Decided From"
},
"decided_to": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Decided To"
},
"filed_from": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Filed From"
},
"filed_to": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Filed To"
},
"sort": {
"default": "decision_date_desc",
"title": "Sort",
"type": "string"
},
"limit": {
"default": 20,
"title": "Limit",
"type": "integer"
},
"offset": {
"default": 0,
"title": "Offset",
"type": "integer"
}
},
"title": "search_casesArguments"
}