1
2
3
4
5
6
7
8
9
10
11 errors = ()
12 integers = ()
13 strings = (
14 "SortSerialName",
15 "Year",
16 "Month",
17 "Day",
18 "IndexingSubset",
19 "IndexOnlineYN",
20 "CurrentlyIndexedYN",
21 "Coverage",
22 "MinorTitleChangeYN",
23 "Coden",
24 "AcidFreeYN",
25 "ContinuationNotes",
26 "NlmUniqueID",
27 "Title",
28 "MedlineTA",
29 "Country",
30 "Place",
31 "Publisher",
32 "PublicationFirstYear",
33 "PublicationEndYear",
34 "Frequency",
35 "ISOAbbreviation",
36 "ISSN",
37 "XrTitle",
38 "Language",
39 "BroadJournalHeading",
40 "CurrentlyIndexedForSubset",
41 )
42
43 lists = (
44 "IndexingHistoryList",
45 "BroadJournalHeadingList",
46 "CrossReferenceList",
47 "SerialSet",
48 )
49
50 dictionaries = (
51 "CrossReference",
52 "PublicationInfo",
53 "DateOfAction",
54 "IlsCreatedTimestamp",
55 "IlsUpdatedTimestamp",
56 "IndexingHistory",
57 )
58
59 structures = {
60 "Serial": ["Language"],
61 }
62
63 items = ()
64