Fiscal Sponsor EIN
← Back to Question Bank
Details
Sample version of the rendered form.
Employer Identification Number
Form Data
What the form data looks like when it is submitted.
{ "ein": "987654321"}CommonGrants Data
What the data looks like translated to the CommonGrants data model using the mapping-to-cg.
{ "organizations": { "otherOrgs": { "fiscalSponsor": { "identifiers": { "org:us:ein": { "id": "987654321" } } } } }}JSON Schema
Provides the structure and data validation for this question.
type: objectexamples: - ein: '987654321' - ein: '123456789'description: The Employer Identification Number (EIN) for the fiscal sponsorx-ui-schema: type: VerticalLayout elements: - type: Control scope: '#/properties/ein' label: Fiscal Sponsor EINx-mapping-to-cg: organizations: otherOrgs: fiscalSponsor: identifiers: org:us:ein: id: field: einx-mapping-from-cg: ein: field: organizations.otherOrgs.fiscalSponsor.identifiers.org:us:ein.idx-entity: - fiscalSponsorx-tags: - organization - identifierrequired: - einproperties: ein: description: Employer Identification Number $schema: https://json-schema.org/draft/2020-12/schema type: string examples: - '123456789' pattern: ^[0-9]{9}$UI Schema
Describes how to present the question in the form UI.
{ "type": "VerticalLayout", "elements": [ { "type": "Control", "scope": "#/properties/ein", "label": "Fiscal Sponsor EIN" } ]}Mapping to CommonGrants
How to translate this question into the CommonGrants ProposalBase data model.
{ "organizations": { "otherOrgs": { "fiscalSponsor": { "identifiers": { "org:us:ein": { "id": { "field": "ein" } } } } } }}Mapping from CommonGrants
How to pre-fill this question with data from the ProposalBase data model.
{ "ein": { "field": "organizations.otherOrgs.fiscalSponsor.identifiers.org:us:ein.id" }}