Organization Name
← Back to Question Bank
Details
Sample version of the rendered form.
Form Data
What the form data looks like when it is submitted.
{ "name": "Example Organization"}CommonGrants Data
What the data looks like translated to the CommonGrants data model using the mapping-to-cg.
{ "organizations": { "primary": { "name": "Example Organization" } }}JSON Schema
Provides the structure and data validation for this question.
$id: QuestionOrgName.yamltype: objectrequired: - nameunevaluatedProperties: not: {}examples: - name: Example Organizationdescription: The legal name of the applicant organizationx-ui-schema: type: VerticalLayout elements: - type: Control scope: '#/properties/name' label: Organization Legal Namex-mapping-to-cg: organizations: primary: name: field: namex-mapping-from-cg: name: field: organizations.primary.namex-tags: - organization - nameproperties: name: type: string description: The organization's legal nameUI Schema
Describes how to present the question in the form UI.
{ "type": "VerticalLayout", "elements": [ { "type": "Control", "scope": "#/properties/name", "label": "Organization Legal Name" } ]}Mapping to CommonGrants
How to translate this question into the CommonGrants ProposalBase data model.
{ "organizations": { "primary": { "name": { "field": "name" } } }}Mapping from CommonGrants
How to pre-fill this question with data from the ProposalBase data model.
{ "name": { "field": "organizations.primary.name" }}