Generic 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": "AB1234567890"}CommonGrants Data
What the data looks like translated to the CommonGrants data model using the mapping-to-cg.
{ "uei": "AB1234567890"}JSON Schema
Provides the structure and data validation for this question.
$id: QuestionUei.yamltype: objectrequired: - ueiexamples: - uei: AB1234567890description: A generic Unique Entity Identifier (UEI) questionx-ui-schema: type: VerticalLayout elements: - type: Control scope: '#/properties/uei' label: Unique Entity Identifier (UEI)x-mapping-to-cg: uei: field: ueix-mapping-from-cg: uei: field: ueix-tags: - generic - identifierproperties: 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": "Unique Entity Identifier (UEI)" } ]}Mapping to CommonGrants
How to translate this question into the CommonGrants ProposalBase data model.
{ "uei": { "field": "uei" }}Mapping from CommonGrants
How to pre-fill this question with data from the ProposalBase data model.
{ "uei": { "field": "uei" }}