This section outlines the content types and their relationships used in the NIAID Data Ecosystem portal.
Collection Types
Collection types are content-types managing several entries. For each available collection type, multiple entries can be created.
Category
Purpose: Organizes content across the portal into meaningful groups.
API Routes
GET /api/categories?populate=*
Fields
Field |
Type |
Required |
Description |
name |
string |
β
|
Display name of the category. |
docs |
Relation to Doc |
β |
Documentation pages associated with this category. |
events |
Relation to Event |
β |
Events grouped under this category. |
feature |
Relation to Featured |
β |
Featured pages associated with this category. |
news |
Relation to News |
β |
News items assigned to this category. |
order |
number |
β |
Used to determine display order of categories in lists. |
Doc
Purpose: Provides user-facing documentation, guides, and informational content for the portal.
API Routes
GET /api/docs?populate=*
Fields
Field |
Type |
Required |
Description |
name |
string |
β
|
Title of the documentation page. |
slug |
UID |
β
|
Auto-generated URL path where the documentation page is accessible. |
subtitle |
string |
β |
Secondary heading or summary shown below the title. |
description |
rich text |
β |
Main content body, supporting Markdown formatting. |
category |
Relation to Category |
β |
One or more categories the page is associated with. |
order |
number |
β |
Determines the position of this page relative to others in category listings. |
Event
Purpose: Information about events related to the NIAID Data Ecosystem.
API Routes
GET /api/events?populate=*
Fields
Field |
Type |
Required |
Description |
name |
string |
β
|
Title of the event. |
shortDescription |
string |
β
|
Short content to display as a preview in homepage cards. |
slug |
UID |
β
|
Auto-generated URL path where the event long content is accessible. |
subtitle |
string |
β |
Secondary heading or summary shown below the title. |
eventDate |
date |
β |
Date when the event takes place. |
description |
rich text |
β |
Main content body, supporting Markdown formatting. |
image |
media |
β |
Uploads and links to one media asset (e.g., JPG, PNG, SVG) to be used as thumbnail. |
categories |
Relation to Category |
β |
One or more categories the event is associated with. |
Link Category
Purpose: A category of links that allows grouping of similar links.
API Routes
GET /api/link-categories?populate=*
Fields
Field |
Type |
Required |
Description |
name |
string |
β
|
Name of the category to group links by. |
url |
string |
β |
Optional URL for the category. |
description |
string |
β |
Optional description of the category. |
News
Purpose: Updates about features and releases related to the NIAID Data Ecosystem.
API Routes
GET /api/news-reports?populate=*
Fields
Field |
Type |
Required |
Description |
name |
string |
β
|
Title of the news item. |
shortDescription |
string |
β
|
Short content to display as a preview in homepage cards. |
slug |
UID |
β
|
Auto-generated URL path where the news long content is accessible. |
subtitle |
string |
β |
Secondary heading or summary shown below the title. |
description |
rich text |
β |
Main content body, supporting Markdown formatting. |
image |
media |
β |
Uploads and links to one media asset (e.g., JPG, PNG, SVG) to be used as thumbnail. |
categories |
Relation to Category |
β |
One or more categories the news item is associated with. |
Notice
Purpose: Displays alerts about downtimes or other issues that may impact users. Notices appear in a banner across the top of all portal pages.
API Routes
GET /api/notices?populate=*
Fields
Field |
Type |
Required |
Description |
heading |
string |
β
|
Short title displayed in the notice banner. |
description |
rich text |
β
|
Full message content. Supports Markdown formatting. |
state |
enum |
β
|
Defines the type of notice (e.g., info, error, warning, success). Defaults to warning . |
isActive |
boolean |
β
|
Toggle to show or hide the notice on the portal. Defaults to true . |
affectedRepository |
string |
β |
Optional name of the repository affected by the issue. |
Single Types
Single types are content-types with only one entry.
About page
Purpose: Holds the static content displayed on the portalβs "About" page.
API Routes
GET /api/about-page?populate=*
Fields
Field |
Type |
Required |
Description |
name |
string |
β
|
Title of the about page. |
description |
rich text |
β
|
Main content on the about page, supporting Markdown formatting. |
subtitle |
string |
β |
Secondary heading or summary shown below the title. |
Disclaimer page
Purpose: Holds the static content displayed on the portalβs "Disclaimer" page.
API Routes
GET /api/disclaimer-page?populate=*
Fields
Field |
Type |
Required |
Description |
name |
string |
β
|
Title of the disclaimer page. |
description |
rich text |
β
|
Main content on the disclaimer page, supporting Markdown formatting. |
subtitle |
string |
β |
Secondary heading or summary shown below the title. |
Integration page
Purpose: The Knowledge Center's integration page has a unique layout. This single type contains the static content.
API Routes
GET /api/integration-page?populate=*
Top-Level Fields
Field |
Type |
Required |
Description |
title |
string |
β
|
Main title of the page. |
description |
rich text |
β |
Primary body content. Supports Markdown formatting. |
overview |
Component (repeatable) |
β |
Introductory or summary section cards. |
tabs |
Component |
β |
Contains grouped content organized under tabs. |
textBlocks |
Component (repeatable) |
β |
Additional modular text sections that may be reused elsewhere. |
Component: overview
(Repeatable)
Field |
Type |
Required |
Description |
title |
string |
β
|
Title of the section. |
slug |
UID |
β
|
Auto-generated URL path used for anchor links. |
description |
rich text |
β |
Main description content. |
image |
media |
β |
Optional image representing the section. |
Component: tabs
Field |
Type |
Required |
Description |
title |
string |
β
|
Tab group title. |
slug |
UID |
β
|
Auto-generated URL path used for anchor links. |
description |
rich text |
β |
Optional text describing the group of tabs. |
panels |
Component (repeatable) |
β |
Panels within the tab group. |
Component: panels
(Repeatable)
Field |
Type |
Required |
Description |
title |
string |
β
|
Panel title shown in the UI. |
cards |
Component (repeatable) |
β |
List of card items inside the panel. |
Component: cards
(Repeatable)
Field |
Type |
Required |
Description |
title |
string |
β
|
Card title. |
content |
rich text |
β
|
Rich text or Markdown content. |
additionalInfo |
rich text |
β |
Optional supplementary text. |
icon |
media |
β |
Icon representing the cardβs topic. |
isRequired |
boolean |
β |
Signals to user that this card item is a requirement. |
Component: textBlocks
(Repeatable)
Field |
Type |
Required |
Description |
title |
string |
β
|
Section title. |
slug |
UID |
β |
Auto-generated URL path used for anchor links. |
description |
rich text |
β |
Main content block. Supports Markdown. |
Shared Components
Component: Link Item
Purpose: A reusable component with properties often used in tandem with link URLs.
Field |
Type |
Required |
Description |
label |
string |
β
|
Label or name associated with the link. |
url |
UID |
β
|
Link URL. |
isExternal |
boolean |
β
|
Whether the link points to an external page. |
image |
media |
β |
Accompanying image or logo. |
categories |
Component (repeatable) - Link-category |
β |
Associated Link Category group with this URL. |
π Relevant Strapi documentation