Organization 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": "12-3456789"}CommonGrants Data
What the data looks like translated to the CommonGrants data model using the mapping-to-cg.
{ "organizations": { "primary": { "ein": "12-3456789" } }}JSON Schema
Provides the structure and data validation for this question.
$id: QuestionOrgEin.yamltype: objectrequired: - einunevaluatedProperties: not: {}examples: - ein: 12-3456789description: The Employer Identification Number (EIN) for the applicant organizationx-ui-schema: type: VerticalLayout elements: - type: Control scope: '#/properties/ein' label: Employer Identification Number (EIN)x-mapping-to-cg: organizations: primary: ein: field: einx-mapping-from-cg: ein: field: organizations.primary.einx-tags: - organization - identifierproperties: ein: description: The organization's 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": "Employer Identification Number (EIN)" } ]}Mapping to CommonGrants
How to translate this question into the CommonGrants ProposalBase data model.
{ "organizations": { "primary": { "ein": { "field": "ein" } } }}Mapping from CommonGrants
How to pre-fill this question with data from the ProposalBase data model.
{ "ein": { "field": "organizations.primary.ein" }}