Fiscal Sponsor UEI
← Back to Question Bank
Details
Sample version of the rendered form.
Form Data
What the form data looks like when it is submitted.
{ "uei": "XY9876543210"}CommonGrants Data
What the data looks like translated to the CommonGrants data model using the mapping-to-cg.
{ "organizations": { "otherOrgs": { "fiscalSponsor": { "uei": "XY9876543210" } } }}JSON Schema
Provides the structure and data validation for this question.
$id: QuestionFiscalSponsorUei.yamltype: objectunevaluatedProperties: not: {}examples: - uei: XY9876543210 - uei: AB1234567890description: The Unique Entity Identifier (UEI) for the fiscal sponsorx-ui-schema: type: VerticalLayout elements: - type: Control scope: '#/properties/uei' label: Fiscal Sponsor UEIx-mapping-to-cg: organizations: otherOrgs: fiscalSponsor: uei: field: ueix-mapping-from-cg: uei: field: organizations.otherOrgs.fiscalSponsor.ueix-entity: - fiscalSponsorx-tags: - organization - identifierrequired: - ueiproperties: uei: description: SAM.gov Unique Entity Identifier $schema: https://json-schema.org/draft/2020-12/schema $id: samUEI.yaml type: string examples: - 12ABC34DEF56 pattern: ^[A-z0-9]{12}$UI Schema
Describes how to present the question in the form UI.
{ "type": "VerticalLayout", "elements": [ { "type": "Control", "scope": "#/properties/uei", "label": "Fiscal Sponsor UEI" } ]}Mapping to CommonGrants
How to translate this question into the CommonGrants ProposalBase data model.
{ "organizations": { "otherOrgs": { "fiscalSponsor": { "uei": { "field": "uei" } } } }}Mapping from CommonGrants
How to pre-fill this question with data from the ProposalBase data model.
{ "uei": { "field": "organizations.otherOrgs.fiscalSponsor.uei" }}