Fiscal Sponsor EIN
← Back to Question Bank
Details
Sample version of the rendered form.
Form Data
What the form data looks like when it is submitted.
{ "ein": "98-7654321"}CommonGrants Data
What the data looks like translated to the CommonGrants data model using the mapping-to-cg.
{ "organizations": { "otherOrgs": { "fiscalSponsor": { "ein": "98-7654321" } } }}JSON Schema
Provides the structure and data validation for this question.
$id: QuestionFiscalSponsorEin.yamltype: objectunevaluatedProperties: not: {}examples: - ein: 98-7654321 - ein: 12-3456789description: 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: ein: field: einx-mapping-from-cg: ein: field: organizations.otherOrgs.fiscalSponsor.einx-entity: - fiscalSponsorx-tags: - organization - identifierrequired: - einproperties: ein: description: Employer Identification Number $schema: https://json-schema.org/draft/2020-12/schema $id: employerTaxId.yaml type: string examples: - 12-3456789 pattern: ^[0-9]{2}-[0-9]{7}$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": { "ein": { "field": "ein" } } } }}Mapping from CommonGrants
How to pre-fill this question with data from the ProposalBase data model.
{ "ein": { "field": "organizations.otherOrgs.fiscalSponsor.ein" }}