Fiscal Sponsor Name
← Back to Question Bank
Details
Sample version of the rendered form.
Form Data
What the form data looks like when it is submitted.
{ "name": "Example Fiscal Sponsor"}CommonGrants Data
What the data looks like translated to the CommonGrants data model using the mapping-to-cg.
{ "organizations": { "otherOrgs": { "fiscalSponsor": { "name": "Example Fiscal Sponsor" } } }}JSON Schema
Provides the structure and data validation for this question.
$id: QuestionFiscalSponsorName.yamltype: objectrequired: - nameunevaluatedProperties: not: {}examples: - name: Example Fiscal Sponsordescription: The legal name of the fiscal sponsor organizationx-ui-schema: type: VerticalLayout elements: - type: Control scope: '#/properties/name' label: Fiscal Sponsor Legal Namex-mapping-to-cg: organizations: otherOrgs: fiscalSponsor: name: field: namex-mapping-from-cg: name: field: organizations.otherOrgs.fiscalSponsor.namex-entity: - fiscalSponsorx-tags: - organization - nameproperties: name: type: string description: The fiscal sponsor's legal nameUI Schema
Describes how to present the question in the form UI.
{ "type": "VerticalLayout", "elements": [ { "type": "Control", "scope": "#/properties/name", "label": "Fiscal Sponsor Legal Name" } ]}Mapping to CommonGrants
How to translate this question into the CommonGrants ProposalBase data model.
{ "organizations": { "otherOrgs": { "fiscalSponsor": { "name": { "field": "name" } } } }}Mapping from CommonGrants
How to pre-fill this question with data from the ProposalBase data model.
{ "name": { "field": "organizations.otherOrgs.fiscalSponsor.name" }}