Principal Investigator 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": "Professor of Biology"}CommonGrants Data
What the data looks like translated to the CommonGrants data model using the mapping-to-cg.
{ "contacts": { "otherContacts": { "principalInvestigator": { "title": "Professor of Biology" } } }}JSON Schema
Provides the structure and data validation for this question.
$id: QuestionPiTitle.yamltype: objectrequired: - titleunevaluatedProperties: not: {}examples: - title: Professor of Biologydescription: The job title of the principal investigatorx-ui-schema: type: VerticalLayout elements: - type: Control scope: '#/properties/title' label: Job Titlex-mapping-to-cg: contacts: otherContacts: principalInvestigator: title: field: titlex-mapping-from-cg: title: field: contacts.otherContacts.principalInvestigator.titlex-entity: - principalInvestigatorx-tags: - person - titleproperties: title: type: string description: The principal investigator'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": { "otherContacts": { "principalInvestigator": { "title": { "field": "title" } } } }}Mapping from CommonGrants
How to pre-fill this question with data from the ProposalBase data model.
{ "title": { "field": "contacts.otherContacts.principalInvestigator.title" }}