-
Notifications
You must be signed in to change notification settings - Fork 281
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support yyyy-season date format #180
Comments
From the schema the field is a date type ("format": "date"). Date is a Mongo supported Data type. Putting non date information into this field may compromise the ability to sort and other bulk operations. |
I'm against this. It hurts machine-readability, and deviates from a known standard: dates. |
There is a machine-readable proposal for ISO 8601-compatible seasonal dates: http://www.loc.gov/standards/datetime/pre-submission.html#season Furthermore, not sure if this should be part of this specific issue: what exactly are the requirements for the 'date' format? It is not part of the JSON Schema specification, and the themes on jsonresume.org only seem to work with yyyy-mm-dd dates. |
agreed with @RobertMortimer @dandydev @publysher. |
agreed to be against season (for now). |
@publysher The requirement (going forward) of a |
Therefore, the representation of seasonal dates is regionally ambiguous. Rejecting. |
Addition: If one wants a representation of seasons it would be frontend only and not supported via the schema or data itself as far as the consensus goes. |
I've noticed that many people use seasons to describe their career history. A user might say that they started working at a company in the Fall of 2015, for example.
Would it be helpful to build this into the schema? Does anyone have a suggestion for how we might go about doing this? It's a tricky problem, since seasons come with their own localization headaches, plus their start- and end-dates often change from year to year.
It's obviously very easy to render a YYYY-MM-DD date as YYYY-Season, but I'm having trouble thinking about how to do the opposite – that is, if we allow users to input a date as YYYY-Season, how do we store that?
Adding a "season": field feels a bit silly.
The text was updated successfully, but these errors were encountered: