You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To provide a dedicated field for expressing career goals and job search intentions in a clear, concise format. While the schema currently includes basics.summary for background information, there's no standardized way to express forward-looking career objectives.
Use Case Examples
Here are several examples of how the objective field would be used in practice:
{
"basics": {
"name": "Jane Smith",
"email": "[email protected]"
},
"objective": "Seeking a senior software engineering role focusing on Go development in a cloud-native environment"
}
{
"basics": {
"name": "Michael Chen",
"email": "[email protected]"
},
"objective": "Looking to transition into technical product management at a healthcare technology company"
}
{
"objective": {
"type": "string",
"description": "A concise statement of career goals or job search intentions",
"maxLength": 400
}
}
Rationale
Distinct from Summary: While basics.summary covers professional background and experience, objective serves a different purpose by explicitly stating career goals.
Recruitment Value: Many recruiters and hiring managers specifically look for clear intention statements when screening resumes. A standardized field makes this information easily parsable.
Schema Simplicity: Implementing this as a simple string field maintains the schema's clean design while adding significant value for job seekers and recruiters.
Implementation Notes
The field would be optional
Recommended to keep content brief (hence the 400-character limit suggestion)
Placed at root level for easy access and visibility
Migration Impact
This addition is backward compatible and requires no changes to existing resume documents.
For theme authors, this presents an opportunity to enhance their themes by incorporating the objective field in a prominent location. Theme authors can maintain backward compatibility by gracefully handling cases where the objective field is not present, while still providing an optimal presentation when it is included. This approach allows for a smooth transition as users gradually adopt the new field in their resume documents.
Discussion Points
Would appreciate feedback from the community on:
The appropriate character limit
Whether this should be at root level or nested elsewhere
Any other potential considerations I might have missed
Relationship to Previous Proposals
This proposal builds upon and supersedes Issue #418("Add 'objective' to basics") from April 2021, which raised a similar need but with less detailed specifications. While #418 suggested placing the objective field within the basics section, this proposal advocates for a root-level placement for several reasons:
Career objectives are distinct from basic personal information and deserve their own top-level presence in the schema
Root-level placement provides better visibility and easier access for parsing
This approach maintains cleaner separation of concerns between personal information and career goals
The suggestion in #418 to add desired_job_title as an array could be considered as a separate proposal, as it serves a different purpose from the career objective statement and might warrant its own discussion.
Given the more comprehensive nature of this proposal and its detailed technical specifications, I'd suggest closing #418 as a duplicate of this issue instead of vice-versa.
Thank you for considering this proposal.
The text was updated successfully, but these errors were encountered:
Purpose
To provide a dedicated field for expressing career goals and job search intentions in a clear, concise format. While the schema currently includes
basics.summary
for background information, there's no standardized way to express forward-looking career objectives.Use Case Examples
Here are several examples of how the objective field would be used in practice:
Proposed Schema Change
Add a new top-level field:
Rationale
Distinct from Summary: While
basics.summary
covers professional background and experience,objective
serves a different purpose by explicitly stating career goals.Recruitment Value: Many recruiters and hiring managers specifically look for clear intention statements when screening resumes. A standardized field makes this information easily parsable.
Schema Simplicity: Implementing this as a simple string field maintains the schema's clean design while adding significant value for job seekers and recruiters.
Implementation Notes
Migration Impact
This addition is backward compatible and requires no changes to existing resume documents.
For theme authors, this presents an opportunity to enhance their themes by incorporating the objective field in a prominent location. Theme authors can maintain backward compatibility by gracefully handling cases where the objective field is not present, while still providing an optimal presentation when it is included. This approach allows for a smooth transition as users gradually adopt the new field in their resume documents.
Discussion Points
Would appreciate feedback from the community on:
Relationship to Previous Proposals
This proposal builds upon and supersedes Issue #418 ("Add 'objective' to basics") from April 2021, which raised a similar need but with less detailed specifications. While #418 suggested placing the objective field within the
basics
section, this proposal advocates for a root-level placement for several reasons:The suggestion in #418 to add
desired_job_title
as an array could be considered as a separate proposal, as it serves a different purpose from the career objective statement and might warrant its own discussion.Given the more comprehensive nature of this proposal and its detailed technical specifications, I'd suggest closing #418 as a duplicate of this issue instead of vice-versa.
Thank you for considering this proposal.
The text was updated successfully, but these errors were encountered: