AnnualReport
A USCIRF annual report documenting international religious freedom conditions and providing policy recommendations to the U.S. government.
Federal GovernmentReligious FreedomInternational Human RightsForeign Policy
Properties
| Name | Type | Description |
|---|---|---|
| report_year | integer | Year of the annual report publication. |
| title | string | Full title of the annual report. |
| publication_date | string | Date the report was published. |
| cpc_countries | array | Countries recommended for Country of Particular Concern designation. |
| swl_countries | array | Countries recommended for the Special Watch List. |
| epc_entities | array | Non-state actors recommended for Entity of Particular Concern designation. |
| countries_assessed | integer | Total number of countries assessed in the report. |
| report_url | string | URL to access the full annual report. |
| pdf_url | string | Direct URL to the PDF version of the annual report. |
| key_themes | array | Major thematic findings or focus areas for the reporting year. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/us-commission-on-international-religious-freedom/refs/heads/main/json-schema/uscirf-annual-report-schema.json",
"title": "AnnualReport",
"description": "A USCIRF annual report documenting international religious freedom conditions and providing policy recommendations to the U.S. government.",
"type": "object",
"properties": {
"report_year": {
"type": "integer",
"description": "Year of the annual report publication.",
"example": 2026
},
"title": {
"type": "string",
"description": "Full title of the annual report.",
"example": "2026 Annual Report of the United States Commission on International Religious Freedom"
},
"publication_date": {
"type": "string",
"format": "date",
"description": "Date the report was published."
},
"cpc_countries": {
"type": "array",
"description": "Countries recommended for Country of Particular Concern designation.",
"items": {
"type": "string"
},
"example": ["Afghanistan", "Burma", "China", "Cuba", "Eritrea", "India"]
},
"swl_countries": {
"type": "array",
"description": "Countries recommended for the Special Watch List.",
"items": {
"type": "string"
},
"example": ["Algeria", "Azerbaijan", "Egypt", "Indonesia"]
},
"epc_entities": {
"type": "array",
"description": "Non-state actors recommended for Entity of Particular Concern designation.",
"items": {
"type": "string"
},
"example": ["al-Shabaab", "Boko Haram", "the Houthis"]
},
"countries_assessed": {
"type": "integer",
"description": "Total number of countries assessed in the report.",
"minimum": 0
},
"report_url": {
"type": "string",
"format": "uri",
"description": "URL to access the full annual report.",
"example": "https://www.uscirf.gov/countries/2026-annual-report"
},
"pdf_url": {
"type": "string",
"format": "uri",
"description": "Direct URL to the PDF version of the annual report."
},
"key_themes": {
"type": "array",
"description": "Major thematic findings or focus areas for the reporting year.",
"items": {
"type": "string"
}
}
},
"required": ["report_year", "title", "publication_date"]
}