Primary Contact Title
← Back to Question Bank
Details
Sample version of the rendered form.
Form Data
What the form data looks like when it is submitted.
{ "title": "Chief Executive Officer"}CommonGrants Data
What the data looks like translated to the CommonGrants data model using the mapping-to-cg.
{ "contacts": { "primary": { "title": "Chief Executive Officer" } }}JSON Schema
Provides the structure and data validation for this question.
$id: QuestionPocTitle.yamltype: objectrequired: - titleunevaluatedProperties: not: {}examples: - title: Chief Executive Officerdescription: The job title of the primary point of contactx-ui-schema: type: VerticalLayout elements: - type: Control scope: '#/properties/title' label: Job Titlex-mapping-to-cg: contacts: primary: title: field: titlex-mapping-from-cg: title: field: contacts.primary.titlex-tags: - contactproperties: title: type: string description: The contact's job title or roleUI Schema
Describes how to present the question in the form UI.
{ "type": "VerticalLayout", "elements": [ { "type": "Control", "scope": "#/properties/title", "label": "Job Title" } ]}Mapping to CommonGrants
How to translate this question into the CommonGrants ProposalBase data model.
{ "contacts": { "primary": { "title": { "field": "title" } } }}Mapping from CommonGrants
How to pre-fill this question with data from the ProposalBase data model.
{ "title": { "field": "contacts.primary.title" }}