Sinar / popolo.contenttypes

GNU General Public License v2.0
1 stars 2 forks source link

Implement other detailed names field for Other Names and Persons #13

Open kaerumy opened 4 years ago

kaerumy commented 4 years ago

https://www.popoloproject.com/specs/person/name-component.html

This should be implemented in fieldset "Detailed Names" (so it shows as a tab in form), and not required.

  "family_name": {
      "description": "One or more family names",
      "type": ["string", "null"]
    },
    "given_name": {
      "description": "One or more primary given names",
      "type": ["string", "null"]
    },
    "additional_name": {
      "description": "One or more secondary given names",
      "type": ["string", "null"]
    },
    "honorific_prefix": {
      "description": "One or more honorifics preceding a person's name",
      "type": ["string", "null"]
    },
    "honorific_suffix": {
      "description": "One or more honorifics following a person's name",
      "type": ["string", "null"]
    },
    "patronymic_name": {
      "description": "One or more patronymic names",
      "type": ["string", "null"]
    },