Organization DUNS
← Back to Question Bank
Details
Sample version of the rendered form.
Form Data
What the form data looks like when it is submitted.
{ "duns": "123456789"}CommonGrants Data
What the data looks like translated to the CommonGrants data model using the mapping-to-cg.
{ "organizations": { "primary": { "duns": "123456789" } }}JSON Schema
Provides the structure and data validation for this question.
$id: QuestionOrgDuns.yamltype: objectrequired: - dunsunevaluatedProperties: not: {}examples: - duns: '123456789'description: The DUNS number for the applicant organizationx-ui-schema: type: VerticalLayout elements: - type: Control scope: '#/properties/duns' label: DUNS Numberx-mapping-to-cg: organizations: primary: duns: field: dunsx-mapping-from-cg: duns: field: organizations.primary.dunsx-entity: - primaryOrgx-tags: - organization - identifierproperties: duns: description: The organization's Data Universal Numbering System (DUNS) number $schema: https://json-schema.org/draft/2020-12/schema $id: duns.yaml type: string examples: - 123456789-1234 - 12-345-6789 - '123456789'UI Schema
Describes how to present the question in the form UI.
{ "type": "VerticalLayout", "elements": [ { "type": "Control", "scope": "#/properties/duns", "label": "DUNS Number" } ]}Mapping to CommonGrants
How to translate this question into the CommonGrants ProposalBase data model.
{ "organizations": { "primary": { "duns": { "field": "duns" } } }}Mapping from CommonGrants
How to pre-fill this question with data from the ProposalBase data model.
{ "duns": { "field": "organizations.primary.duns" }}