Skip to content

Commit 2b2cb89

Browse files
committed
CODE: Person: remove quotes from descriptions
1 parent 56038c7 commit 2b2cb89

1 file changed

Lines changed: 22 additions & 22 deletions

File tree

schemas/Person.yml

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -35,108 +35,108 @@ properties:
3535
title: Email
3636
type: string
3737
format: email
38-
description: "This person's email."
38+
description: This person's email.
3939

4040
familyName:
4141
title: 'Family Name(s) / Last Name(s)'
4242
type: string
43-
description: "This person's family name(s) or last name(s)."
43+
description: This person's family name(s) or last name(s).
4444

4545
gender:
4646
title: Gender
4747
type: string
48-
description: "This person's self-reported gender identity."
48+
description: This person's self-reported gender identity.
4949

5050
givenName:
5151
title: 'Given Name(s) / First Name(s)'
5252
type: string
53-
description: "This person's first name(s) or given name(s), including middle name(s) if any."
53+
description: This person's first name(s) or given name(s), including middle name(s) if any.
5454

5555
id:
5656
title: ID
57-
description: 'A unique database identifier for this Person.'
57+
description: A unique database identifier for this Person.
5858

5959
initials:
6060
title: Initials
6161
type: string
62-
description: "This person's initials. If a pseudonym is used for this person, use the initials of the pseudonym rather than their actual initials."
62+
description: This person's initials. If a pseudonym is used for this person, use the initials of the pseudonym rather than their actual initials.
6363

6464
languages:
6565
title: Languages Spoken
6666
type: array
6767
uniqueItems: true
68-
description: 'A list of the languages that this person speaks. Each item should be a DLx Language object or Database Reference to a Language object, optionally with a few additional properties such as `ageLearned`, etc., Because the DLx Language object consists minimally of just the language name, not all details about the language need to be provided here.'
68+
description: A list of the languages that this person speaks. Each item should be a DLx Language object or Database Reference to a Language object, optionally with a few additional properties such as `ageLearned`, etc., Because the DLx Language object consists minimally of just the language name, not all details about the language need to be provided here.
6969
items:
7070
title: Proficiency
71-
description: "Information about this person's proficiency in this language."
71+
description: Information about this person's proficiency in this language.
7272
type: object
7373
properties:
7474

7575
ageLearned:
7676
title: Age Learned
7777
type: integer
7878
minimum: 0
79-
description: 'The age at which this person learned this language.'
79+
description: The age at which this person learned this language.
8080

8181
notes:
8282
title: Notes
8383
type: array
8484
uniqueItems: true
85-
description: "Notes about this person's use of this language."
85+
description: Notes about this person's use of this language.
8686
items:
8787
$ref: https://schemas.digitallinguistics.io/Note.json
8888

8989
language:
9090
title: Language (Database Reference)
9191
$ref: https://schemas.digitallinguistics.io/DatabaseReference.json
92-
description: 'The language that the person has experience with.'
92+
description: The language that the person has experience with.
9393

9494
proficiency:
9595
title: Proficiency
9696
$ref: https://schemas.digitallinguistics.io/MultiLangString.json
97-
description: 'The proficiency level of this person in this Language.'
97+
description: The proficiency level of this person in this Language.
9898

9999
yearsKnown:
100100
title: Years Known
101101
type: number
102-
description: 'The number of years this person has known this Language'
102+
description: The number of years this person has known this Language.
103103

104104
link:
105105
title: Link
106106
type: string
107107
format: uri
108-
description: 'A URL where a presentational format for this resource may be viewed.'
108+
description: A URL where a presentational format for this resource may be viewed.
109109

110110
notes:
111111
title: Notes
112112
type: array
113113
uniqueItems: true
114-
description: 'An array of notes about this person'
114+
description: An array of notes about this person.
115115
items:
116116
$ref: https://schemas.digitallinguistics.io/Note.json
117117

118118
phone:
119119
title: Phone Number
120120
type: string
121-
description: 'A phone number for this Person.'
121+
description: A phone number for this Person.
122122

123123
pseudonym:
124124
title: Pseudonym
125125
type: string
126-
description: 'A pseudonym for this Person.'
126+
description: A pseudonym for this Person.
127127

128128
startDate:
129129
title: Start Date
130130
type: string
131-
description: 'The date a person began work on a project, a language documentation, the transcription of a text, or another form of data collection or research. This field is most useful when the Person object is being used as part of the `Language.people` and `Text.people` fields.'
131+
description: The date a person began work on a project, a language documentation, the transcription of a text, or another form of data collection or research. This field is most useful when the Person object is being used as part of the `Language.people` and `Text.people` fields.
132132
oneOf:
133133
- format: date
134134
- format: date-time
135135

136136
endDate:
137137
title: End Date
138138
type: string
139-
description: 'The date a person finished work on a project, a language documentation, the transcription of a text, or another form of data collection or research. This field is most useful when the Person object is being used as part of the `Language.people` and `Text.people` fields.'
139+
description: The date a person finished work on a project, a language documentation, the transcription of a text, or another form of data collection or research. This field is most useful when the Person object is being used as part of the `Language.people` and `Text.people` fields.
140140
oneOf:
141141
- format: date
142142
- format: date-time
@@ -145,20 +145,20 @@ properties:
145145
title: Tags
146146
type: object
147147
$ref: https://schemas.digitallinguistics.io/Tags.json
148-
description: 'A set of tags for this Person.'
148+
description: A set of tags for this Person.
149149

150150
type:
151151
title: Type
152152
type: string
153153
const: Person
154154
readOnly: true
155-
description: 'The type of object. Must be set to `Person`.'
155+
description: The type of object. Must be set to `Person`.
156156

157157
url:
158158
title: URL
159159
type: string
160160
format: uri
161-
description: 'The URL where the JSON data for this Person may be accessed.'
161+
description: The URL where the JSON data for this Person may be accessed.
162162

163163
examples:
164164

0 commit comments

Comments
 (0)