Skip to content

Commit

Permalink
v0.14.1 (#75)
Browse files Browse the repository at this point in the history
* add autonym property to Language schema

* update docs

* add `transcript` attribute to Phrase

closes #74
  • Loading branch information
dwhieb authored Mar 16, 2017
1 parent 49dc86a commit 3183506
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions schemas/Phrase.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{

"$schema": "http://json-schema.org/schema#",
"id": "http://cdn.digitallinguistics.io/schemas/Phrase-1.0.0.json",
"id": "http://cdn.digitallinguistics.io/schemas/Phrase-1.1.0.json",

"title": "Phrase",
"type": "object",
Expand Down Expand Up @@ -76,9 +76,15 @@
"$ref": "http://cdn.digitallinguistics.io/schemas/Tags.json"
},

"transcript": {
"title": "Transcript",
"description": "A transcript of this phrase, including things like prosodic markup, overlap, pauses, and various other discourse features. This field is intended for use by those doing discourse or conversation analysis, who need to mark up their text without affecting the phonemic transcription (in the `transcription` property). The transcript may be in multiple languages/orthographies, or representational systems (e.g. you might have a `CA` transcript and a `DT` transcript, for discourse transcripts using Conversationa Analysis and Discourse Transcription conventions respectively).",
"$ref": "http://cdn.digitallinguistics.io/schemas/MultiLangString.json"
},

"transcription": {
"title": "Transcription",
"description": "The transcriptions for this phrase, optionally in multiple orthographies.",
"description": "The transcriptions for this phrase, optionally in multiple orthographies. This field is intended for use with purely phonemic / morphophonemic transcriptions. Punctuation should generally be avoided. To add punctuation and other discourse-level transcriptional features, use the `transcript` property.",
"$ref": "http://cdn.digitallinguistics.io/schemas/MultiLangString.json"
},

Expand Down

0 comments on commit 3183506

Please sign in to comment.