-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #25 from seasidesparrow/title_note_xref.20231011
Adds storage for title and subtitle notes separate from the title text
- Loading branch information
Showing
2 changed files
with
25 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"title": "Title", | ||
"description": "Holds the title data, including multiple language fields, and a list to hold any notes/xrefs provided by the publisher", | ||
"type": "object", | ||
"properties": { | ||
"textEnglish": { | ||
"type": "string" | ||
}, | ||
"textNative": { | ||
"type": "string" | ||
}, | ||
"langNative": { | ||
"type": "string" | ||
}, | ||
"textNotes": { | ||
"type": "array", | ||
"description": "Footnotes and xrefs associated with title(s)", | ||
"items": { | ||
"type": "string" | ||
} | ||
} | ||
} | ||
} |