Organization UEI
← Back to Question Bank
Details
Sample version of the rendered form.
must match pattern "^[A-z0-9]{12}$"
Form Data
What the form data looks like when it is submitted.
{ "uei": "ABC1234567890"}CommonGrants Data
What the data looks like translated to the CommonGrants data model using the mapping-to-cg.
{ "organizations": { "primary": { "uei": "ABC1234567890" } }}JSON Schema
Provides the structure and data validation for this question.
$id: QuestionOrgUei.yamltype: objectrequired: - ueiunevaluatedProperties: not: {}examples: - uei: ABC1234567890description: The Unique Entity Identifier (UEI) for the applicant organizationx-ui-schema: type: VerticalLayout elements: - type: Control scope: '#/properties/uei' label: Unique Entity Identifier (UEI)x-mapping-to-cg: organizations: primary: uei: field: ueix-mapping-from-cg: uei: field: organizations.primary.ueix-tags: - organization - identifierproperties: uei: description: The organization's Unique Entity Identifier from SAM.gov $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": "Unique Entity Identifier (UEI)" } ]}Mapping to CommonGrants
How to translate this question into the CommonGrants ProposalBase data model.
{ "organizations": { "primary": { "uei": { "field": "uei" } } }}Mapping from CommonGrants
How to pre-fill this question with data from the ProposalBase data model.
{ "uei": { "field": "organizations.primary.uei" }}