Skip to content
Get in touch

Organization

An organization that can apply to or host funding opportunities.

PropertyTypeRequiredDescription
iduuidYesThe organization’s unique identifier.
namestringYesThe organization’s legal name as registered with relevant authorities.
typePCSOrgTypeNoThe organization’s type within the Philanthropy Classification System (PCS).
einemployerTaxIdNoThe organization’s Employer Identification Number (EIN).
ueisamUEINoThe organization’s Unique Entity Identifier (UEI).
dunsdunsNoThe organization’s Data Universal Numbering System (DUNS) number.
addressesAddressCollectionNoCollection of physical addresses associated with the organization.
phonesPhoneCollectionNoCollection of phone numbers associated with the organization.
emailsEmailCollectionNoCollection of email addresses associated with the organization.
missionstringNoThe organization’s mission statement.
yearFoundedcalendarYearNoThe calendar year the organization was founded.
socialsOrgSocialLinksNoThe organization’s social media and web presence links.
customFieldsRecord<CustomField>NoCustom fields for the organization.

A JSON example of this model is:

{
"id": "083b4567-e89d-42c8-a439-6c1234567890",
"name": "Example Organization",
"type": {
"term": "Nonprofit",
"class": "Organization types",
"code": "UC000000",
"description": "Nonprofit organization"
},
"ein": "123456789",
"uei": "123456789",
"duns": "123456789",
"addresses": {
"primary": {
"street1": "456 Main St",
"street2": "Suite 100",
"city": "Anytown",
"stateOrProvince": "CA",
"country": "US",
"postalCode": "12345"
},
"otherAddresses": {
"satellite": {
"street1": "456 Main St",
"street2": "Suite 100",
"city": "Anytown",
"stateOrProvince": "CA",
"country": "US",
"postalCode": "12345"
},
"international": {
"street1": "123 Rue Principale",
"city": "Montreal",
"stateOrProvince": "QC",
"country": "CA",
"postalCode": "H2Y 1C6"
}
}
},
"phones": {
"primary": {
"countryCode": "+1",
"number": "444-456-1230",
"isMobile": true
},
"fax": {
"countryCode": "+1",
"number": "555-123-4567",
"extension": "123",
"isMobile": false
},
"otherPhones": {
"support": {
"countryCode": "+1",
"number": "333-456-1230",
"isMobile": false
},
"marketing": {
"countryCode": "+1",
"number": "444-456-1230",
"isMobile": true
}
}
},
"emails": {
"primary": "info@example.com",
"otherEmails": {
"support": "support@example.com",
"marketing": "marketing@example.com"
}
},
"mission": "To provide support and resources to the community.",
"yearFounded": "2024",
"socials": {
"website": "https://www.example.com",
"facebook": "https://www.facebook.com/example",
"twitterOrX": "https://x.com/example",
"instagram": "https://www.instagram.com/example",
"linkedin": "https://www.linkedin.com/company/example",
"otherSocials": {
"youtube": "https://www.youtube.com/example"
}
}
}

A collection of social media and web presence links for an organization.

PropertyTypeRequiredDescription
websiteurlNoThe organization’s primary website URL.
facebookurlNoThe organization’s Facebook profile URL.
twitterOrXurlNoThe organization’s Twitter/X profile URL.
blueskyurlNoThe organization’s Bluesky profile URL.
instagramurlNoThe organization’s Instagram profile URL.
linkedinurlNoThe organization’s LinkedIn profile URL.
otherSocialsRecord<url>NoAdditional social media profiles not covered by the standard fields.

A JSON example of this model is:

{
"website": "https://www.example.com",
"facebook": "https://www.facebook.com/example",
"twitterOrX": "https://x.com/example",
"bluesky": "https://bsky.app/profile/example",
"instagram": "https://www.instagram.com/example",
"linkedin": "https://www.linkedin.com/company/example",
"otherSocials": {
"youtube": "https://www.youtube.com/example",
"tiktok": "https://tiktok.com/example"
}
}