Organization EIN
← Back to Question Bank
Details
Sample version of the rendered form.
The organization's Employer Identification Number
Form Data
What the form data looks like when it is submitted.
{ "ein": "123456789"}CommonGrants Data
What the data looks like translated to the CommonGrants data model using the mapping-to-cg.
{ "organizations": { "primary": { "identifiers": { "org:us:ein": { "id": "123456789" } } } }}JSON Schema
Provides the structure and data validation for this question.
type: objectrequired: - einexamples: - ein: '123456789'description: 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: identifiers: org:us:ein: id: field: einx-mapping-from-cg: ein: field: organizations.primary.identifiers.org:us:ein.idx-entity: - primaryOrgx-tags: - organization - identifierproperties: ein: description: The organization's 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": "Employer Identification Number (EIN)" } ]}Mapping to CommonGrants
How to translate this question into the CommonGrants ProposalBase data model.
{ "organizations": { "primary": { "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.primary.identifiers.org:us:ein.id" }}