From 31835063a2a20c81c92fe41320b0396816996425 Mon Sep 17 00:00:00 2001 From: "Daniel W. Hieber" Date: Thu, 16 Mar 2017 14:25:41 -0500 Subject: [PATCH] v0.14.1 (#75) * add autonym property to Language schema * update docs * add `transcript` attribute to Phrase closes #74 --- schemas/Phrase.json | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/schemas/Phrase.json b/schemas/Phrase.json index 368e1077..11d3356d 100644 --- a/schemas/Phrase.json +++ b/schemas/Phrase.json @@ -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", @@ -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" },