Skip to content
Get in touch

Organization

An organization that can apply to or host funding opportunities.

PropertyTypeRequiredDescription
namestringYesThe organization’s legal name as registered with relevant authorities.
addressAddressYesThe organization’s primary mailing address.
typestringYesThe organization’s type (e.g., “Nonprofit”, “For-Profit”, etc.)
einstringNoThe organization’s Employer Identification Number (EIN).
ueistringNoThe organization’s Unique Entity Identifier (UEI).
dunsstringNoThe organization’s Data Universal Numbering System (DUNS) number.
missionstringNoThe organization’s mission statement.
yearFoundedintegerNoThe calendar year the organization was founded.
socialsRecord<OrgSocialLinks>NoThe organization’s social media and web presence links.

A JSON example of this model is:

{
"name": "Example Organization",
"address": {
"street1": "123 Main St",
"city": "Anytown",
"stateOrProvince": "CA",
"country": "US",
"postalCode": "12345"
},
"type": "Nonprofit",
"ein": "123456789",
"uei": "123456789",
"duns": "123456789",
"mission": "To provide support and resources to the community.",
"yearFounded": 2024,
"fiscalYearStart": "2024-01-01",
"fiscalYearEnd": "2024-12-31"
}

A record of the organization’s social media and web presence links.

PropertyTypeRequiredDescription
websitestringNoThe organization’s primary website URL.
facebookstringNoThe organization’s Facebook profile URL.
twitterstringNoThe organization’s Twitter/X profile URL.
instagramstringNoThe organization’s Instagram profile URL.
linkedinstringNoThe organization’s LinkedIn profile URL.
otherSocialsRecord<string>NoAdditional social media profiles not covered by the standard fields.

A JSON example of this model is:

{
"website": "https://example.com",
"facebook": "https://facebook.com/example",
"twitter": "https://twitter.com/example",
"instagram": "https://instagram.com/example",
"linkedin": "https://linkedin.com/company/example",
"otherSocials": {
"youtube": "https://youtube.com/example",
"tiktok": "https://tiktok.com/example"
}
}