1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395
|
<!--
News Industry Text Format
Document Type Definition - Version 3.1
July 4, 2002
http://www.nitf.org
Copyright (c) 2002. All Rights Reserved.
International Press Telecommunications Council
http://www.iptc.org
NITF 3.1 Modifications:
New recommendations for date formats:
YYYYMMDDTHHMMSS-HHMM (preferred) YYYYMMDDTHHMMSSZ (alternative)
Use YYYYMMDD000000-HHMM when no time is available
(before the HHMM time, the "-" or "+" character may be used)
For these elements:
date.issue, date.release, date.expire, startdate, enddate, date.publication,
revision-history, rights.startdate, rights.enddate, story.date,
chron, event's start-date and end-date, money
Added management-status and management-idref-status attributes to docdata element
values of: usable | embargoed | withheld | canceled
Added management-doc-idref attributes to docdata element
Added an optional gender attribute to PERSON element
Made units attribute of media-reference be optional
For the list of modifications from previous releases, see:
http://www.nitf.org/site/recent-modifications.html
For the list of proposed modifications, see:
http://www.nitf.org/site/proposed-changes.html
-->
<!-- ****************************************************************
DTD Entities
**************************************************************** -->
<!ENTITY % enriched-text '
#PCDATA
| chron
| classifier
| copyrite
| event
| function
| location
| money
| num
| object.title
| org
| person
| postaddr
| virtloc
| a
| br
| em
| lang
| pronounce
| q
'>
<!ENTITY % block.start "tobject?, key-list?, classifier*, byline?, dateline?, copyrite?, abstract?">
<!ENTITY % block.content "p | hl2 | table | nitf-table | media | ol | ul | dl | bq | fn | note | pre | hr">
<!ENTITY % block.end "datasource?">
<!-- Attribute entities -->
<!ENTITY % global-attributes '
id ID #IMPLIED
'>
<!-- Note that any element that has common-attributes, also has that
id attribute, lifted from global-attributes -->
<!ENTITY % common-attributes '
id ID #IMPLIED
class NMTOKENS #IMPLIED
style CDATA #IMPLIED
'>
<!ENTITY % cell.align '
align (left | center | right | justify | char) #IMPLIED
char CDATA #IMPLIED
charoff CDATA #IMPLIED
'>
<!ENTITY % cell.valign '
valign (top | middle | bottom | baseline) #IMPLIED
'>
<!ENTITY % boolean '(true | false)'>
<!-- ****************************************************************
nitf
**************************************************************** -->
<!ELEMENT nitf (head?, body)>
<!ATTLIST nitf
%global-attributes;
uno CDATA #IMPLIED
version CDATA #FIXED "-//IPTC//DTD NITF 3.1//EN"
change.date CDATA #FIXED "July 3, 2002"
change.time CDATA #FIXED "19:30"
baselang CDATA #IMPLIED
class NMTOKENS #IMPLIED
>
<!--
Element nitf
Partial description The root element for NITF.
Full description News Industry Text Format instance. Holds head and body.
id An XML-specific identifier for the element.
uno The universally unique identifier for the document.
version This DTD's formal public identifier.
change.date Date when this DTD was last changed.
change.time Time when this DTD was last changed.
baselang Base language for document. Uses en-US (per ISO 639 and 3166).
class An open placeholder for categorization.
-->
<!-- ****************************************************************
head
**************************************************************** -->
<!ELEMENT head (title?, meta*, tobject?, iim?, docdata?, pubdata*, revision-history*)>
<!ATTLIST head
%global-attributes;
>
<!--
Element head
Partial description Holds metadata about the document as a whole.
Full description Generally does not hold information for direct display to user. Portions of the metadata, though, are often rendered to augment an article.
id Unique identifier for the element.
-->
<!ELEMENT title (#PCDATA)>
<!ATTLIST title
%global-attributes;
type (
main
| subtitle
| parttitle
| alternate
| abbrev
| other
) #IMPLIED
>
<!--
Element title
Partial description Document Title.
Full description Often displayed within a result-list after a search finds this article.
id Unique identifier for the element.
type A categorization for title. (Controlled vocabulary.)
-->
<!ELEMENT meta EMPTY>
<!ATTLIST meta
%global-attributes;
http-equiv NMTOKEN #IMPLIED
name NMTOKEN #IMPLIED
content CDATA #REQUIRED
>
<!--
Element meta
Partial description A construct for sending generic metadata.
Full description Normally is undisplayed.
id Unique identifier for the element.
http-equiv HTTP response header name.
name Name used for this piece of metadata.
content Content associated with the specified name.
-->
<!ELEMENT tobject (tobject.property*, tobject.subject*)>
<!ATTLIST tobject
%global-attributes;
tobject.type CDATA "news"
>
<!--
Element tobject
Partial description Subject code.
Full description Used to identify the type of the news material, based on a Subject Code system.
id Unique identifier for the element.
tobject.type Expanded from News, Data, and Advisory. See NewsML topic set.
-->
<!ELEMENT tobject.property EMPTY>
<!ATTLIST tobject.property
%global-attributes;
tobject.property.type CDATA "current"
>
<!--
Element tobject.property
Partial description Subject code property.
Full description Assigns a property to the object type.
id Unique identifier for the element.
tobject.property.type Includes such items as analysis, feature, and obituary.
-->
<!ELEMENT tobject.subject EMPTY>
<!ATTLIST tobject.subject
%global-attributes;
tobject.subject.ipr CDATA "IPTC"
tobject.subject.refnum NMTOKEN #REQUIRED
tobject.subject.code CDATA #IMPLIED
tobject.subject.type CDATA #IMPLIED
tobject.subject.matter CDATA #IMPLIED
tobject.subject.detail CDATA #IMPLIED
>
<!--
Element tobject.subject
Partial description Assigns subject information to news material based on a Subject Code system.
Full description A three-tiered hierarchy consisting of broad subjects, secondary topics (Subject Matter), and tertiary topics (Subject Detail).
id Unique identifier for the element.
tobject.subject.ipr Information provider reference.
tobject.subject.refnum Eight-digit reference number for all three levels.
tobject.subject.code Three-letter code for the subject type. This attribute is deprecated.
tobject.subject.type First-tier subject description.
tobject.subject.matter Second-tier subject description.
tobject.subject.detail Third-tier subject description.
-->
<!ELEMENT iim (ds*)>
<!ATTLIST iim
%global-attributes;
ver NMTOKEN #IMPLIED
>
<!--
Element iim
Partial description IIM Record 2 Data Container.
Full description Location for IIM Record 2 DataSet information.
id Unique identifier for the element.
ver IIM version number.
-->
<!ELEMENT ds EMPTY>
<!ATTLIST ds
%global-attributes;
num NMTOKEN #REQUIRED
value CDATA #IMPLIED
>
<!--
Element ds
Partial description IIM Record 2 dataset information.
Full description IIM Record 2 dataset information (Record 2 Only).
id Unique identifier for the element.
num IIM field number.
value IIM field value.
-->
<!ELEMENT docdata (
correction
| evloc
| doc-id
| del-list
| urgency
| fixture
| date.issue
| date.release
| date.expire
| doc-scope
| series
| ed-msg
| du-key
| doc.copyright
| doc.rights
| key-list
| identified-content
)*>
<!ATTLIST docdata
%global-attributes;
management-status ( usable
| embargoed
| withheld
| canceled
) #IMPLIED
management-doc-idref CDATA #IMPLIED
management-idref-status ( usable
| embargoed
| withheld
| canceled
) #IMPLIED
>
<!--
Element docdata
Partial description Document metadata.
Full description Container for metadata information about this particular document.
id Unique identifier for the element.
management-status Defines whether this document is a cancellation of a previous doc, and other news management properties.
management-doc-idref Used in conjunction with management-status. Details which document the current one is an update to, etc.
management-idref-status When a management-doc-idref is specified, this attribute contains the new status for that referenced document.
-->
<!ELEMENT correction EMPTY>
<!ATTLIST correction
%global-attributes;
info CDATA #IMPLIED
id-string CDATA #IMPLIED
regsrc CDATA #IMPLIED
>
<!--
Element correction
Partial description Correction information.
Full description Indicates that the item is a correction to a previously published document.
id Unique identifier for the element.
info Contains actual message or instructions regarding the correction.
id-string Document identification string, such as UNO or doc-id.
regsrc Identifies the source of the correction.
-->
<!ELEMENT evloc EMPTY>
<!ATTLIST evloc
%global-attributes;
iso-cc CDATA #IMPLIED
state-prov CDATA #IMPLIED
county-dist CDATA #IMPLIED
city CDATA #IMPLIED
>
<!--
Element evloc
Partial description Event location.
Full description Where an event took place (as opposed to where the story was written).
id Unique identifier for the element.
iso-cc Country code as specified in ISO 3166.
state-prov State or province where the event occurred.
county-dist County or district name.
city City or municipality name.
-->
<!ELEMENT doc-id EMPTY>
<!ATTLIST doc-id
%global-attributes;
regsrc CDATA #IMPLIED
id-string CDATA #IMPLIED
>
<!--
Element doc-id
Partial description Registered identification for document.
Full description Character string that provides a unique, persistent identification for a document.
id Unique identifier for the element.
regsrc Identifies the source of the document or action.
id-string Document identification string.
-->
<!ELEMENT del-list (from-src)*>
<!ATTLIST del-list
%global-attributes;
>
<!--
Element del-list
Partial description Delivery trail of delivery services.
Full description Holds an ordered list of the distribution services that have been involved in the delivery of the document.
id Unique identifier for the element.
-->
<!ELEMENT from-src EMPTY>
<!ATTLIST from-src
%global-attributes;
src-name CDATA #IMPLIED
level-number CDATA #IMPLIED
>
<!--
Element from-src
Partial description Delivery service identifier.
Full description Identifier used to track the transmission path of the document throughout the delivery process.
id Unique identifier for the element.
src-name The entity moving the document.
level-number The position in the transmission path that the src-name occurred.
-->
<!ELEMENT urgency EMPTY>
<!ATTLIST urgency
%global-attributes;
ed-urg NMTOKEN #IMPLIED
>
<!--
Element urgency
Partial description News importance.
Full description Can be used to set the priority for distribution but does not set the actual distribution priority.
id Unique identifier for the element.
ed-urg 1=most, 5=normal, 8=least.
-->
<!ELEMENT fixture EMPTY>
<!ATTLIST fixture
%global-attributes;
fix-id CDATA #IMPLIED
>
<!--
Element fixture
Partial description Specification for named document, such as Heard on the Street or On Language.
Full description Provides a consistent reference to a document whose content is refreshed periodically.
id Unique identifier for the element.
fix-id The name of the fixture.
-->
<!ELEMENT date.issue EMPTY>
<!ATTLIST date.issue
%global-attributes;
norm CDATA #IMPLIED
>
<!--
Element date.issue
Partial description Date/time document was issued.
Full description If not provided, it is assumed to be on receipt.
id Unique identifier for the element.
norm Date/time value normalized to ISO 8601: YYYYMMDDTHHMMSS-HHMM (preferred) YYYYMMDDTHHMMSSZ (alternative). Use YYYYMMDD000000-HHMM when no time is available. Before the HHMM time, the - or + character may be used.
-->
<!ELEMENT date.release EMPTY>
<!ATTLIST date.release
%global-attributes;
norm CDATA #IMPLIED
>
<!--
Element date.release
Partial description Date/time document is available to be released.
Full description If not provided, it is assumed to be on receipt.
id Unique identifier for the element.
norm Date/time value normalized to ISO 8601: YYYYMMDDTHHMMSS-HHMM (preferred) YYYYMMDDTHHMMSSZ (alternative). Use YYYYMMDD000000-HHMM when no time is available
-->
<!ELEMENT date.expire EMPTY>
<!ATTLIST date.expire
%global-attributes;
norm CDATA #IMPLIED
>
<!--
Element date.expire
Partial description Date/time at which the document has no validity.
Full description If not provided, it is assumed to be infinity.
id Unique identifier for the element.
norm Date/time value normalized to ISO 8601: YYYYMMDDTHHMMSS-HHMM (preferred) YYYYMMDDTHHMMSSZ (alternative). Use YYYYMMDD000000-HHMM when no time is available
-->
<!ELEMENT doc-scope EMPTY>
<!ATTLIST doc-scope
%global-attributes;
scope CDATA #IMPLIED
>
<!--
Element doc-scope
Partial description Indicates an area where the document may be of interest.
Full description Where a non-category interest may be specified. These are often geographic in origin, such as Pacific Northwest.
id Unique identifier for the element.
scope Halfway between a Keyword and a Category.
-->
<!ELEMENT series EMPTY>
<!ATTLIST series
%global-attributes;
series.name CDATA #IMPLIED
series.part NMTOKEN "0"
series.totalpart NMTOKEN "0"
>
<!--
Element series
Partial description Series information.
Full description Identification of an article within a series of related articles.
id Unique identifier for the element.
series.name The name of the series.
series.part Numeric order of this article within the series.
series.totalpart Total or expected number of articles in the series; use 0 if unknown or indefinite.
-->
<!ELEMENT ed-msg EMPTY>
<!ATTLIST ed-msg
%global-attributes;
msg-type CDATA #IMPLIED
info CDATA #IMPLIED
>
<!--
Element ed-msg
Partial description Non-publishable editorial message from provider or editor of item.
Full description Place where an information provider can send a note to the editor about the contents of the story.
id Unique identifier for the element.
msg-type The type of message. Providers are urged to use consistent values.
info Contains the actual message for the editorial message.
-->
<!ELEMENT du-key EMPTY>
<!ATTLIST du-key
%global-attributes;
generation NMTOKEN #IMPLIED
part NMTOKEN #IMPLIED
version NMTOKEN #IMPLIED
key CDATA #IMPLIED
>
<!--
Element du-key
Partial description Dynamic Use Key, created daily. Has tree structure indicated by defined form.
Full description Provides a mechanism for grouping and updating versions of stories. The du-key is unique to a story during a period fixed by the provider. After the time has elapsed, the reference is available for reuse.
id Unique identifier for the element.
generation Number indicating the du-key generation level. This number increments with each instance of a story that uses the same du-key.
part The part within the dynamic use key structure.
version Version of a particular use of the dynamic-use key.
key Contains the actual key value.
-->
<!ELEMENT doc.copyright EMPTY>
<!ATTLIST doc.copyright
%global-attributes;
year NMTOKEN #IMPLIED
holder CDATA #IMPLIED
>
<!--
Element doc.copyright
Partial description Copyright information for document header.
Full description A metadata location for the information about the year and holder of the document copyright. This information should be consistant with information in the copyrite tag.
id Unique identifier for the element.
year Year of the document copyright.
holder Holder of the copyright.
-->
<!ELEMENT doc.rights EMPTY>
<!ATTLIST doc.rights
%global-attributes;
owner CDATA #IMPLIED
startdate CDATA #IMPLIED
enddate CDATA #IMPLIED
agent CDATA #IMPLIED
geography CDATA #IMPLIED
location-code CDATA #IMPLIED
code-source CDATA #IMPLIED
type CDATA #IMPLIED
limitations CDATA #IMPLIED
>
<!--
Element doc.rights
Partial description Rights information for use of the document.
Full description Used when the rights holder is not the same as the copyright holder. This information should be consistant with that in the series of rights tags.
id Unique identifier for the element.
owner The owner of the specified rights.
startdate For asserted rights. Date/time value normalized to ISO 8601: YYYYMMDDTHHMMSS-HHMM (preferred) YYYYMMDDTHHMMSSZ (alternative). Use YYYYMMDD000000-HHMM when no time is available
enddate For specified document rights. Date/time value normalized to ISO 8601: YYYYMMDDTHHMMSS-HHMM (preferred) YYYYMMDDTHHMMSSZ (alternative). Use YYYYMMDD000000-HHMM when no time is available
agent The rights agent.
geography Geographic area where rights are asserted.
location-code Coded location from standard list.
code-source Source of coded list information.
type Kind of rights being asserted.
limitations Limitations associated with document rights.
-->
<!ELEMENT key-list (keyword)*>
<!ATTLIST key-list
%global-attributes;
>
<!--
Element key-list
Partial description List of keywords.
Full description Holds a list of keywords about the document.
id Unique identifier for the element.
-->
<!ELEMENT keyword EMPTY>
<!ATTLIST keyword
%global-attributes;
key CDATA #IMPLIED
>
<!--
Element keyword
Partial description Keyword. Can also be a phrase.
Full description Holds the keyword or phrase itself.
id Unique identifier for the element.
key The actual keyword.
-->
<!ELEMENT identified-content (
person
| org
| location
| event
| function
| object.title
| virtloc
| classifier
)*>
<!ATTLIST identified-content
%global-attributes;
>
<!--
Element identified-content
Partial description Holds content identifiers that can apply to document as a whole.
Full description The elements this holds also appear in paragraphs. Note that its children should be EMPTY
id Unique identifier for the element.
-->
<!ELEMENT pubdata EMPTY>
<!ATTLIST pubdata
%global-attributes;
type (
print
| audio
| video
| web
| appliance
| other
) #IMPLIED
item-length CDATA #IMPLIED
unit-of-measure (
word
| character
| byte
| inch
| pica
| cm
| hour
| minute
| second
| other
) #IMPLIED
date.publication CDATA #IMPLIED
name CDATA #IMPLIED
issn CDATA #IMPLIED
volume CDATA #IMPLIED
number CDATA #IMPLIED
issue CDATA #IMPLIED
edition.name CDATA #IMPLIED
edition.area CDATA #IMPLIED
position.section CDATA #IMPLIED
position.sequence CDATA #IMPLIED
ex-ref CDATA #IMPLIED
>
<!--
Element pubdata
Partial description Information about specific instance of an item's publication.
Full description Contains metadata about how the particular news object was used in a specific instance.
id Unique identifier for the element.
type Transport medium, such as print, streaming video or broadcast.
item-length Length of the item; see also unit-of-measure.
unit-of-measure Measure associated with the length of the item; see also item-length.
date.publication For date object was used. Date/time value normalized to ISO 8601: YYYYMMDDTHHMMSS-HHMM (preferred) YYYYMMDDTHHMMSSZ (alternative). Use YYYYMMDD000000-HHMM when no time is available
name Title of the publication.
issn The International Standard Serial Number (ISSN) of the publication in which the news object occurred.
volume Volume of the publication in which the information appeared.
number Publication number, often associated with a volume number.
issue The name of the issue of the publication where the news object occurred. Examples include June, fall, Olympic Special, year-end, etc.
edition.name Name of the edition in which the news object was distributed.
edition.area Area / zone where news object was distributed.
position.section Named section of a publication where a news object appeared, such as Science, Sports, Weekend, etc.
position.sequence Where a news object appeared among a list of items; often the page number.
ex-ref External reference to the rendering of the news object as published, in the form of a URL or URN.
-->
<!ELEMENT revision-history EMPTY>
<!ATTLIST revision-history
%global-attributes;
name CDATA #IMPLIED
function (
writer-author
| editor
| producer
| archivist
| videographer
| graphic-artist
| photographer
| statistician
| other
) #IMPLIED
norm CDATA #IMPLIED
comment CDATA #IMPLIED
>
<!--
Element revision-history
Partial description Information about the creative history of the document; also used as an audit trail.
Full description Includes who made changes, when the changes were made, and why.
id Unique identifier for the element.
name Name of the person who made the revision (usually editor or reporter).
function Job function of individual performing revision.
norm Date of the revision. Date/time value normalized to ISO 8601: YYYYMMDDTHHMMSS-HHMM (preferred) YYYYMMDDTHHMMSSZ (alternative). Use YYYYMMDD000000-HHMM when no time is available
comment Reason for the revision.
-->
<!-- ****************************************************************
body
**************************************************************** -->
<!ELEMENT body (body.head?, body.content*, body.end?)>
<!ATTLIST body
%common-attributes;
>
<!--
Element body
Partial description The content portion of the NITF document.
Full description All items within body are meant for display to the user.
id Unique identifier for the element.
class An open placeholder for categorization.
style An open placeholder for reference by an external stylesheet.
-->
<!-- ****************************************************************
body.head
**************************************************************** -->
<!ELEMENT body.head (
hedline?,
note*,
rights?,
byline*,
distributor?,
dateline*,
abstract?,
series?
)>
<!ATTLIST body.head
%global-attributes;
>
<!--
Element body.head
Partial description Metadata intended to be displayed to the reader.
Full description Holds content such as headline, byline, etc.
id Unique identifier for the element.
-->
<!ELEMENT hedline (hl1, hl2*)>
<!ATTLIST hedline
%common-attributes;
>
<!--
Element hedline
Partial description Container for main headline and subheadlines.
Full description Provides a generally-dependable component for display in search results.
id Unique identifier for the element.
class An open placeholder for categorization.
style An open placeholder for reference by an external stylesheet.
-->
<!ELEMENT hl1 (%enriched-text;)*>
<!ATTLIST hl1 %common-attributes;>
<!--
Element hl1
Partial description Headline 1 (main-headline).
Full description The primary headline of the story.
id Unique identifier for the element.
class An open placeholder for categorization.
style An open placeholder for reference by an external stylesheet.
-->
<!ELEMENT hl2 (%enriched-text;)*>
<!ATTLIST hl2 %common-attributes;>
<!--
Element hl2
Partial description Headline 2 (sub-headline)
Full description A subordinate headline for the article.
id Unique identifier for the element.
class An open placeholder for categorization.
style An open placeholder for reference by an external stylesheet.
-->
<!ELEMENT note (body.content)+>
<!ATTLIST note
%common-attributes;
noteclass (
cpyrt
| end
| hd
| editorsnote
| trademk
| undef
) #IMPLIED
type (std | pa | npa) "std"
>
<!--
Element note
Partial description Document cautionary note.
Full description Potentially publishable.
id Unique identifier for the element.
class An open placeholder for categorization.
style An open placeholder for reference by an external stylesheet.
noteclass The class of note. Copyright, endnote, etc. (Controlled vocabulary.)
type Standards, Publishable Advisory, Non-Publishable Advisory.
-->
<!ELEMENT rights (
#PCDATA
| rights.owner
| rights.startdate
| rights.enddate
| rights.agent
| rights.geography
| rights.type
| rights.limitations
)*>
<!ATTLIST rights
%global-attributes;
>
<!--
Element rights
Partial description Information on rights holder.
Full description Rights to news material other than the copyrights, such as archival, syndication, or distribution.
id Unique identifier for the element.
-->
<!ELEMENT rights.owner (#PCDATA)>
<!ATTLIST rights.owner
%global-attributes;
contact CDATA #IMPLIED
>
<!--
Element rights.owner
Partial description Rights owner
Full description Owner of the rights to the material.
id Unique identifier for the element.
contact Contact information for the owner.
-->
<!ELEMENT rights.startdate (#PCDATA)>
<!ATTLIST rights.startdate
%global-attributes;
norm CDATA #IMPLIED
>
<!--
Element rights.startdate
Partial description Rights start date.
Full description Initial reference date for material rights.
id Unique identifier for the element.
norm Date/time value normalized to ISO 8601: YYYYMMDDTHHMMSS-HHMM (preferred) YYYYMMDDTHHMMSSZ (alternative). Use YYYYMMDD000000-HHMM when no time is available
-->
<!ELEMENT rights.enddate (#PCDATA)>
<!ATTLIST rights.enddate
%global-attributes;
norm CDATA #IMPLIED
>
<!--
Element rights.enddate
Partial description Rights end date.
Full description Terminal reference date for material rights.
id Unique identifier for the element.
norm Date/time value normalized to ISO 8601: YYYYMMDDTHHMMSS-HHMM (preferred) YYYYMMDDTHHMMSSZ (alternative). Use YYYYMMDD000000-HHMM when no time is available
-->
<!ELEMENT rights.agent (#PCDATA)>
<!ATTLIST rights.agent
%global-attributes;
contact CDATA #IMPLIED
>
<!--
Element rights.agent
Partial description Rights agent.
Full description Name of the agent that holds the rights to the material.
id Unique identifier for the element.
contact Contact information for the agent.
-->
<!ELEMENT rights.geography (#PCDATA)>
<!ATTLIST rights.geography
%global-attributes;
location-code CDATA #IMPLIED
code-source CDATA #IMPLIED
>
<!--
Element rights.geography
Partial description Area to which rights apply.
Full description A geographic area.
id Unique identifier for the element.
location-code Coded location from standard list.
code-source Source for the location code.
-->
<!ELEMENT rights.type (#PCDATA)>
<!ATTLIST rights.type
%global-attributes;
>
<!--
Element rights.type
Partial description Type of rights claimed.
Full description Type of material rights claimed (such as distribution).
id Unique identifier for the element.
-->
<!ELEMENT rights.limitations (#PCDATA)>
<!ATTLIST rights.limitations
%global-attributes;
>
<!--
Element rights.limitations
Partial description Limitations (exclusive / nonexclusive) of rights.
Full description Limitation on use of material rights.
id Unique identifier for the element.
-->
<!ELEMENT byline (#PCDATA | person | byttl | location | virtloc)*>
<!ATTLIST byline
%common-attributes;
>
<!--
Element byline
Partial description Container for byline information.
Full description Can either be structured with direct specification of the responsible person / entity and their title or unstructured text can be provided.
id Unique identifier for the element.
class An open placeholder for categorization.
style An open placeholder for reference by an external stylesheet.
-->
<!ELEMENT byttl (#PCDATA | org )*>
<!ATTLIST byttl
%global-attributes;
>
<!--
Element byttl
Partial description Byline title. Often contains an organization.
Full description Title of the person, or entity associated with the byline and a specified person.
id Unique identifier for the element.
-->
<!ELEMENT distributor (#PCDATA | org)*>
<!ATTLIST distributor
%global-attributes;
>
<!--
Element distributor
Partial description Information distributor.
Full description May or may not be the owner or creator.
id Unique identifier for the element.
-->
<!ELEMENT dateline (#PCDATA | location | story.date)*>
<!ATTLIST dateline %common-attributes;>
<!--
Element dateline
Partial description Container for dateline information.
Full description The date and location where the story was created.
id Unique identifier for the element.
class An open placeholder for categorization.
style An open placeholder for reference by an external stylesheet.
-->
<!ELEMENT story.date (#PCDATA)>
<!ATTLIST story.date
%global-attributes;
norm CDATA #IMPLIED
>
<!--
Element story.date
Partial description Date of story.
Full description Printable date.
id Unique identifier for the element.
norm Date/time value normalized to ISO 8601: YYYYMMDDTHHMMSS-HHMM (preferred) YYYYMMDDTHHMMSSZ (alternative). Use YYYYMMDD000000-HHMM when no time is available
-->
<!ELEMENT abstract (%block.content;)+>
<!ATTLIST abstract
%global-attributes;
>
<!--
Element abstract
Partial description Story abstract
Full description summary or synopsis of the contents of the document.
id Unique identifier for the element.
-->
<!-- series: also allowed here -->
<!ELEMENT copyrite (#PCDATA | copyrite.year | copyrite.holder)*>
<!ATTLIST copyrite
%global-attributes;
>
<!--
Element copyrite
Partial description Container for copyright information.
Full description A displayable statement about who owns the copyright to the article.
id Unique identifier for the element.
-->
<!ELEMENT copyrite.year (#PCDATA)>
<!ATTLIST copyrite.year
%global-attributes;
>
<!--
Element copyrite.year
Partial description Copyright year
Full description The year the copyright ownership was established.
id Unique identifier for the element.
-->
<!ELEMENT copyrite.holder (#PCDATA)>
<!ATTLIST copyrite.holder
%global-attributes;
>
<!--
Element copyrite.holder
Partial description Copyright holder.
Full description The name of the holder of the copyright.
id Unique identifier for the element.
-->
<!-- ****************************************************************
body.content
found within body, note, and fn (footnote) elements
**************************************************************** -->
<!ELEMENT body.content (block | %block.content;)*>
<!ATTLIST body.content
%global-attributes;
>
<!--
Element body.content
Partial description Actual body content.
Full description Holds paragraphs, lists, tables, media, and other containers.
id Unique identifier for the element.
-->
<!ELEMENT block ((%block.start;)?, (%block.content;)*, (%block.end;)?)>
<!ATTLIST block %common-attributes;>
<!--
Element block
Partial description A group of related containers.
Full description This container can be used to organize a set of related containers, such as a sidebar.
id Unique identifier for the element.
class An open placeholder for categorization.
style An open placeholder for reference by an external stylesheet.
-->
<!ELEMENT p (%enriched-text;)*>
<!ATTLIST p
%common-attributes;
lede %boolean; #IMPLIED
summary %boolean; #IMPLIED
optional-text %boolean; #IMPLIED
>
<!--
Element p
Partial description Paragraph.
Full description An organized set of sentences.
id Unique identifier for the element.
class An open placeholder for categorization.
style An open placeholder for reference by an external stylesheet.
lede Indicates that the paragraph is the lead paragraph(s) to the news object.
summary Indicates that the associated paragraphs form a summary.
optional-text Indicates that the paragraph could be considered optional.
-->
<!-- hl2 is a block.content member -->
<!ELEMENT table (caption?, (col* | colgroup*), thead?, tfoot?, (tbody+ | tr+))>
<!ATTLIST table
%common-attributes;
tabletype ENTITY #IMPLIED
align (
left
| center
| right
) #IMPLIED
width CDATA #IMPLIED
cols NMTOKEN #IMPLIED
border CDATA #IMPLIED
frame (
void
| above
| below
| hsides
| lhs
| rhs
| vsides
| box
| border
) #IMPLIED
rules (
none
| basic
| rows
| cols
| all
) #IMPLIED
cellspacing CDATA #IMPLIED
cellpadding CDATA #IMPLIED
>
<!--
Element table
Partial description Table of data.
Full description Form is like the form of HTML tables.
id Unique identifier for the element.
class An open placeholder for categorization.
style An open placeholder for reference by an external stylesheet.
tabletype Holds style information.
align Where the table should appear with respect to surrounding text. (Controlled vocabulary.)
width Width of the table, in pixels.
cols Number of columns in the table.
border Describes how the border (if any) should be rendered.
frame Specification of which parts of the frame around the table should be rendered.
rules Indicates the use of rules/lines between rows and columns.
cellspacing A measurement of the number of pixels between cells.
cellpadding A measurement of the number of pixels between a cell's border and its text.
-->
<!ELEMENT media (media-metadata*, (media-reference, media-object?)+, media-caption*, media-producer?)>
<!ATTLIST media
%common-attributes;
media-type CDATA #REQUIRED
>
<!--
Element media
Partial description Generalized media object.
Full description Used to package up a reference to an image, audio, video, etc. with its caption and credit.
id Unique identifier for the element.
class An open placeholder for categorization.
style An open placeholder for reference by an external stylesheet.
media-type text | audio | image | video | data | application | other (Controlled vocabulary.)
-->
<!ELEMENT media-reference (#PCDATA)>
<!ATTLIST media-reference
%global-attributes;
source CDATA #IMPLIED
name CDATA #IMPLIED
mime-type CDATA #IMPLIED
coding CDATA #IMPLIED
time CDATA #IMPLIED
time-unit-of-measure CDATA #IMPLIED
outcue CDATA #IMPLIED
source-credit CDATA #IMPLIED
copyright CDATA #IMPLIED
alternate-text CDATA #IMPLIED
height NMTOKEN #IMPLIED
width NMTOKEN #IMPLIED
units (pixels) #IMPLIED
imagemap CDATA #IMPLIED
noflow (noflow) #IMPLIED
>
<!--
Element media-reference
Partial description Reference to an external media object, OR to its following media-object.
Full description Points to any object, such as photo, audio, video and text; or to executable files.
id Unique identifier for the element.
class An open placeholder for categorization.
style An open placeholder for reference by an external stylesheet.
source URL or other unique ID for external media file.
name Alternate name or description of the object.
mime-type Mime-type for the external media file.
coding How the information is coded.
time Length of time that the media file plays.
time-unit-of-measure Units in which the time attribute is measured.
outcue Provides information about the spoken information that ends an audio clip.
source-credit Indicates the source of the information.
copyright Copyright owner.
alternate-text Plain-text description that can serve as a substitute for the media object.
height Height of the media object.
width Width of the media object.
units Units used for width and height. Default is pixels.
imagemap Indication for whether the media object has an affiliated imagemap.
noflow Indicates if information can flow around figure.
-->
<!ELEMENT media-metadata EMPTY>
<!ATTLIST media-metadata
%global-attributes;
name CDATA #REQUIRED
value CDATA #IMPLIED
>
<!--
Element media-metadata
Partial description Generic metadata placeholder.
Full description Used when the attributes of media-reference do not suffice.
id Unique identifier for the element.
name Name of the metadata item.
value Value of the metadata item.
-->
<!ELEMENT media-object (#PCDATA)>
<!ATTLIST media-object
%common-attributes;
encoding CDATA #REQUIRED
>
<!--
Element media-object
Partial description Inline media data.
Full description Holds binary information, or some other encoded format.
id Unique identifier for the element.
class An open placeholder for categorization.
style An open placeholder for reference by an external stylesheet.
encoding Format the encoded data is in.
-->
<!ELEMENT media-caption (%enriched-text; | %block.content;)*>
<!ATTLIST media-caption
%common-attributes;
>
<!--
Element media-caption
Partial description Text describing media.
Full description Often rendered beneath a photo or video.
id Unique identifier for the element.
class An open placeholder for categorization.
style An open placeholder for reference by an external stylesheet.
-->
<!ELEMENT media-producer (%enriched-text;)*>
<!ATTLIST media-producer
%common-attributes;
>
<!--
Element media-producer
Partial description Byline of media producer.
Full description Also used as a credit for the media.
id Unique identifier for the element.
class An open placeholder for categorization.
style An open placeholder for reference by an external stylesheet.
-->
<!ELEMENT ol (li)+>
<!ATTLIST ol
%common-attributes;
seqnum NMTOKEN #IMPLIED
>
<!--
Element ol
Partial description Ordered list.
Full description Holds list items.
id Unique identifier for the element.
class An open placeholder for categorization.
style An open placeholder for reference by an external stylesheet.
seqnum Sequence number within an ordered list.
-->
<!ELEMENT ul (li)+>
<!ATTLIST ul
%common-attributes;
>
<!--
Element ul
Partial description Unordered list.
Full description Holds list items.
id Unique identifier for the element.
class An open placeholder for categorization.
style An open placeholder for reference by an external stylesheet.
-->
<!ELEMENT li (%enriched-text; | %block.content;)*>
<!ATTLIST li
%common-attributes;
>
<!--
Element li
Partial description List item.
Full description Holds content that is presented within a list.
id Unique identifier for the element.
class An open placeholder for categorization.
style An open placeholder for reference by an external stylesheet.
-->
<!ELEMENT dl (dt | dd)+>
<!ATTLIST dl %common-attributes;>
<!--
Element dl
Partial description Definition list.
Full description Holds terms and their definitions.
id Unique identifier for the element.
class An open placeholder for categorization.
style An open placeholder for reference by an external stylesheet.
-->
<!ELEMENT dt (%enriched-text;)*>
<!ATTLIST dt %common-attributes;>
<!--
Element dt
Partial description Definition term.
Full description Holds the content that is to be defined.
id Unique identifier for the element.
class An open placeholder for categorization.
style An open placeholder for reference by an external stylesheet.
-->
<!ELEMENT dd (block)*>
<!ATTLIST dd %common-attributes;>
<!--
Element dd
Partial description Definition data.
Full description Holds the definition of the term.
id Unique identifier for the element.
class An open placeholder for categorization.
style An open placeholder for reference by an external stylesheet.
-->
<!ELEMENT bq (block+, credit?)*>
<!ATTLIST bq
%common-attributes;
nowrap (nowrap) #IMPLIED
quote-source CDATA #IMPLIED
>
<!--
Element bq
Partial description Block quote.
Full description An extended quotation.
id Unique identifier for the element.
class An open placeholder for categorization.
style An open placeholder for reference by an external stylesheet.
nowrap Directive not to wrap text in the cell.
quote-source Source of a quote.
-->
<!ELEMENT credit (%enriched-text;)*>
<!ATTLIST credit %common-attributes;>
<!--
Element credit
Partial description Names the source of the block quote.
Full description Provides attribution for a block quote.
id Unique identifier for the element.
class An open placeholder for categorization.
style An open placeholder for reference by an external stylesheet.
-->
<!ELEMENT fn (body.content)+>
<!ATTLIST fn %common-attributes;>
<!--
Element fn
Partial description Footnote.
Full description Notes that are often rendered at the end of a document.
id Unique identifier for the element.
class An open placeholder for categorization.
style An open placeholder for reference by an external stylesheet.
-->
<!-- note is a block.content member -->
<!ELEMENT pre (#PCDATA)>
<!ATTLIST pre
%global-attributes;
>
<!--
Element pre
Partial description Preformatted information.
Full description Carriage returns and fixed-width spacing should be maintained.
id Unique identifier for the element.
-->
<!ELEMENT hr EMPTY>
<!ATTLIST hr
%common-attributes;
>
<!--
Element hr
Partial description Horizontal rule.
Full description A rendered divider between sections of text.
id Unique identifier for the element.
class An open placeholder for categorization.
style An open placeholder for reference by an external stylesheet.
-->
<!ELEMENT datasource (#PCDATA)>
<!ATTLIST datasource
%global-attributes;
>
<!--
Element datasource
Partial description Source of the information grouped in a block element.
Full description Cites the source of block content. Allowed only at end of block.
id Unique identifier for the element.
-->
<!-- ****************************************************************
table elements
**************************************************************** -->
<!ELEMENT caption (%enriched-text; | %block.content;)*>
<!ATTLIST caption
%common-attributes;
align (
top
| bottom
| left
| right
) #IMPLIED
>
<!--
Element caption
Partial description Text for the caption of a table.
Full description Appears only within the table element.
id Unique identifier for the element.
class An open placeholder for categorization.
style An open placeholder for reference by an external stylesheet.
align Alignment of the text in the caption.
-->
<!ELEMENT col EMPTY>
<!ATTLIST col
%common-attributes;
span NMTOKEN "1"
width CDATA #IMPLIED
%cell.align;
%cell.valign;
>
<!--
Element col
Partial description Column.
Full description Used to specify formatting for a table column.
id Unique identifier for the element.
class An open placeholder for categorization.
style An open placeholder for reference by an external stylesheet.
span Number of columns a header cell spans.
width Width of the column, in pixels.
align Alignment of text in the column.
char Specifies a single character within a text fragment to act as the axis for text alignment. Default varies by language; for example, default for en-US is period (.).
charoff Specifies the offset to the first occurance of the character specified in char. !!
valign Vertical alignment of text in the column.
-->
<!ELEMENT colgroup (col+)>
<!ATTLIST colgroup
%common-attributes;
%cell.align;
%cell.valign;
>
<!--
Element colgroup
Partial description Column group.
Full description Used to specify formatting for a table column.
id Unique identifier for the element.
class An open placeholder for categorization.
style An open placeholder for reference by an external stylesheet.
align Alignment of text in the column group.
char HTML formatting attribute.
charoff HTML formatting attribute.
valign Vertical alignment of text in the column group.
-->
<!ELEMENT thead (tr+)>
<!ATTLIST thead
%common-attributes;
%cell.align;
%cell.valign;
>
<!--
Element thead
Partial description Table heading.
Full description Used to group rows that can consistently be displayed atop a table.
id Unique identifier for the element.
class An open placeholder for categorization.
style An open placeholder for reference by an external stylesheet.
align Alignment of text in the column group.
char HTML formatting attribute.
charoff HTML formatting attribute.
valign Vertical alignment of text in the column group.
-->
<!ELEMENT tbody (tr+)>
<!ATTLIST tbody
%common-attributes;
%cell.align;
%cell.valign;
>
<!--
Element tbody
Partial description Table body.
Full description Holds the bulk of the data rows of a table.
id Unique identifier for the element.
class An open placeholder for categorization.
style An open placeholder for reference by an external stylesheet.
align Alignment of text in the column group.
char HTML formatting attribute.
charoff HTML formatting attribute.
valign Vertical alignment of text in the column group.
-->
<!ELEMENT tfoot (tr+)>
<!ATTLIST tfoot
%common-attributes;
%cell.align;
%cell.valign;
>
<!--
Element tfoot
Partial description Table footer.
Full description Used to group rows that can consistently be displayed below a table.
id Unique identifier for the element.
class An open placeholder for categorization.
style An open placeholder for reference by an external stylesheet.
align Alignment of text in the column group.
char HTML formatting attribute.
charoff HTML formatting attribute.
valign Vertical alignment of text in the column group.
-->
<!ELEMENT tr (th | td)+>
<!ATTLIST tr
%common-attributes;
%cell.align;
%cell.valign;
>
<!--
Element tr
Partial description Table row.
Full description Holds cells of a table.
id Unique identifier for the element.
class An open placeholder for categorization.
style An open placeholder for reference by an external stylesheet.
align Alignment of text in the column group.
char HTML formatting attribute.
charoff HTML formatting attribute.
valign Vertical alignment of text in the column group.
-->
<!ELEMENT th (%enriched-text; | %block.content;)*>
<!ATTLIST th
%common-attributes;
axis CDATA #IMPLIED
axes CDATA #IMPLIED
nowrap (nowrap) #IMPLIED
rowspan NMTOKEN #IMPLIED
colspan NMTOKEN #IMPLIED
%cell.align;
%cell.valign;
>
<!--
Element th
Partial description Table header cell.
Full description Holds content intended to be a label.
id Unique identifier for the element.
class An open placeholder for categorization.
style An open placeholder for reference by an external stylesheet.
axis HTML formatting attribute.
axes HTML formatting attribute.
nowrap Directive not to wrap text in the cell.
rowspan Number of horizontal rows a cell spans.
colspan Number of vertical columns a cell spans.
align Alignment of text in the column group.
char HTML formatting attribute.
charoff HTML formatting attribute.
valign Vertical alignment of text in the column group.
-->
<!ELEMENT td (%enriched-text; | %block.content;)*>
<!ATTLIST td
%common-attributes;
axis CDATA #IMPLIED
axes CDATA #IMPLIED
nowrap (nowrap) #IMPLIED
rowspan NMTOKEN #IMPLIED
colspan NMTOKEN #IMPLIED
%cell.align;
%cell.valign;
>
<!--
Element td
Partial description Table data cell.
Full description Holds content intended to be data.
id Unique identifier for the element.
class An open placeholder for categorization.
style An open placeholder for reference by an external stylesheet.
axis HTML formatting attribute.
axes HTML formatting attribute.
nowrap Directive not to wrap text in the cell.
rowspan Number of horizontal rows a cell spans.
colspan Number of vertical columns a cell spans.
align Alignment of text in the column group.
char HTML formatting attribute.
charoff HTML formatting attribute.
valign Vertical alignment of text in the column group.
-->
<!-- ****************************************************************
text elements
chron | copyrite | event | function | location | money | num
| object.title | org | person | postaddr | virtloc | a | br
| em | lang | pronounce | q
**************************************************************** -->
<!ELEMENT chron (#PCDATA)>
<!ATTLIST chron
%common-attributes;
norm CDATA #IMPLIED
>
<!--
Element chron
Partial description Date and time.
Full description Used to normalize inline date and time references.
id Unique identifier for the element.
class An open placeholder for categorization.
style An open placeholder for reference by an external stylesheet.
norm Date/time value normalized to ISO 8601: YYYYMMDDTHHMMSS-HHMM (preferred) YYYYMMDDTHHMMSSZ (alternative). Use YYYYMMDD000000-HHMM when no time is available
-->
<!-- copyrite allowed here, also -->
<!ELEMENT event (#PCDATA | alt-code)*>
<!ATTLIST event
%common-attributes;
start-date CDATA #IMPLIED
end-date CDATA #IMPLIED
idsrc CDATA #IMPLIED
value CDATA #IMPLIED
>
<!--
Element event
Partial description An event.
Full description An activity that is considered newsworthy.
id Unique identifier for the element.
class An open placeholder for categorization.
style An open placeholder for reference by an external stylesheet.
start-date When the event is set to start. Date/time value normalized to ISO 8601: YYYYMMDDTHHMMSS-HHMM (preferred) YYYYMMDDTHHMMSSZ (alternative). Use YYYYMMDD000000-HHMM when no time is available
end-date When the event is set to end. Date/time value normalized to ISO 8601: YYYYMMDDTHHMMSS-HHMM (preferred) YYYYMMDDTHHMMSSZ (alternative). Use YYYYMMDD000000-HHMM when no time is available
idsrc The source (taxonomy) for the element's value attribute.
value The code or symbol for the element.
-->
<!ELEMENT function (#PCDATA | alt-code)*>
<!ATTLIST function
%global-attributes;
idsrc CDATA #IMPLIED
value CDATA #IMPLIED
>
<!--
Element function
Partial description Role played by a person.
Full description Can be either a description, such as interior decorator, or a formal title, such as president, chairman, owner, captain, manager.
id Unique identifier for the element.
idsrc The source (taxonomy) for the element's value attribute.
value The code or symbol for the element.
-->
<!ELEMENT location (#PCDATA | sublocation | city | state | region | country | alt-code)*>
<!ATTLIST location
%common-attributes;
location-code CDATA #IMPLIED
code-source CDATA #IMPLIED
>
<!--
Element location
Partial description Significant place mentioned in an article.
Full description Used to normalize locations.
id Unique identifier for the element.
class An open placeholder for categorization.
style An open placeholder for reference by an external stylesheet.
location-code The code or symbol for the element.
code-source The source (taxonomy) for the element's location-code.
-->
<!ELEMENT sublocation (#PCDATA | alt-code)*>
<!ATTLIST sublocation
%common-attributes;
location-code CDATA #IMPLIED
code-source CDATA #IMPLIED
>
<!--
Element sublocation
Partial description Named region within city or state.
Full description Generic holder for more detailed location information.
id Unique identifier for the element.
class An open placeholder for categorization.
style An open placeholder for reference by an external stylesheet.
location-code The code or symbol for the element.
code-source The source (taxonomy) for the element's location-code.
-->
<!ELEMENT city (#PCDATA | alt-code)*>
<!ATTLIST city
%common-attributes;
city-code CDATA #IMPLIED
code-source CDATA #IMPLIED
>
<!--
Element city
Partial description City, town, village, etc.
Full description Used to normalize city, town names.
id Unique identifier for the element.
class An open placeholder for categorization.
style An open placeholder for reference by an external stylesheet.
city-code The code or symbol for the element.
code-source The source (taxonomy) for the element's city-code.
-->
<!ELEMENT state (#PCDATA | alt-code)*>
<!ATTLIST state
%common-attributes;
state-code CDATA #IMPLIED
code-source CDATA #IMPLIED
>
<!--
Element state
Partial description State or province or region.
Full description Used to normalize these locations.
id Unique identifier for the element.
class An open placeholder for categorization.
style An open placeholder for reference by an external stylesheet.
state-code The code or symbol for the element.
code-source The source (taxonomy) for the element's state-code.
-->
<!ELEMENT region (#PCDATA | alt-code)*>
<!ATTLIST region
%common-attributes;
region-code CDATA #IMPLIED
code-source CDATA #IMPLIED
>
<!--
Element region
Partial description Geographic area.
Full description Used to normalize regions.
id Unique identifier for the element.
class An open placeholder for categorization.
style An open placeholder for reference by an external stylesheet.
region-code The code or symbol for the element.
code-source The source (taxonomy) for the element's region-code.
-->
<!ELEMENT country (#PCDATA | alt-code)*>
<!ATTLIST country
%common-attributes;
iso-cc CDATA #IMPLIED
>
<!--
Element country
Partial description Geographic area with a government.
Full description Used to normalize countries.
id Unique identifier for the element.
class An open placeholder for categorization.
style An open placeholder for reference by an external stylesheet.
iso-cc Country code as specified in ISO 3166.
-->
<!ELEMENT money (#PCDATA)>
<!ATTLIST money
%common-attributes;
unit CDATA #IMPLIED
date CDATA #IMPLIED
>
<!--
Element money
Partial description Monetary item.
Full description Used to identify units of money.
id Unique identifier for the element.
class An open placeholder for categorization.
style An open placeholder for reference by an external stylesheet.
unit The currency used.
date Date when this currency value was quoted. Date/time value normalized to ISO 8601: YYYYMMDDTHHMMSS-HHMM (preferred) YYYYMMDDTHHMMSSZ (alternative). Use YYYYMMDD000000-HHMM when no time is available
-->
<!ELEMENT num (#PCDATA | frac | sub | sup)*>
<!ATTLIST num
%common-attributes;
units CDATA #IMPLIED
decimal-ch CDATA #IMPLIED
thousands-ch CDATA #IMPLIED
>
<!--
Element num
Partial description Numeric data.
Full description Used to normalize numbers.
id Unique identifier for the element.
class An open placeholder for categorization.
style An open placeholder for reference by an external stylesheet.
units Units the number is in.
decimal-ch Character used to separate decimalized portion.
thousands-ch Character to separate thousands groups.
-->
<!ELEMENT frac (numer, frac-sep?, denom)>
<!ATTLIST frac
%common-attributes;
>
<!--
Element frac
Partial description Fraction.
Full description Separates the numerator from the denominator.
id Unique identifier for the element.
class An open placeholder for categorization.
style An open placeholder for reference by an external stylesheet.
-->
<!ELEMENT numer (#PCDATA)>
<!ATTLIST numer
%global-attributes;
>
<!--
Element numer
Partial description Fraction numerator.
Full description The top part of a fraction.
id Unique identifier for the element.
-->
<!ELEMENT frac-sep (#PCDATA)>
<!ATTLIST frac-sep
%global-attributes;
>
<!--
Element frac-sep
Partial description Fraction separator.
Full description Holds the preferred character, normally a slash.
id Unique identifier for the element.
-->
<!ELEMENT denom (#PCDATA)>
<!ATTLIST denom
%global-attributes;
>
<!--
Element denom
Partial description Fraction denominator.
Full description The bottom part of a fraction.
id Unique identifier for the element.
-->
<!ELEMENT sub (#PCDATA)>
<!ATTLIST sub %common-attributes;>
<!--
Element sub
Partial description Subscript.
Full description Generally rendered in small type and vertically aligned lower than the main text.
id Unique identifier for the element.
class An open placeholder for categorization.
style An open placeholder for reference by an external stylesheet.
-->
<!ELEMENT sup (#PCDATA)>
<!ATTLIST sup %common-attributes;>
<!--
Element sup
Partial description Superscript.
Full description Generally rendered in small type and vertically aligned higher than the main text.
id Unique identifier for the element.
class An open placeholder for categorization.
style An open placeholder for reference by an external stylesheet.
-->
<!ELEMENT object.title (#PCDATA | alt-code)*>
<!ATTLIST object.title
%common-attributes;
idsrc CDATA #IMPLIED
value CDATA #IMPLIED
>
<!--
Element object.title
Partial description Title of inline object such as book, song, artwork, etc.
Full description Used to normalize these values.
id Unique identifier for the element.
class An open placeholder for categorization.
style An open placeholder for reference by an external stylesheet.
idsrc The source (taxonomy) for the element's value.
value The code or symbol for the element.
-->
<!ELEMENT org (#PCDATA | alt-code)*>
<!ATTLIST org
%global-attributes;
idsrc CDATA #IMPLIED
value CDATA #IMPLIED
>
<!--
Element org
Partial description Organization.
Full description Used for companies (both private and public) and non-profits.
id Unique identifier for the element.
idsrc The source (taxonomy) for the element's value.
value The code or symbol for the element.
-->
<!ELEMENT alt-code EMPTY>
<!ATTLIST alt-code
%global-attributes;
idsrc CDATA #REQUIRED
value CDATA #REQUIRED
>
<!--
Element alt-code
Partial description An alternate symbol for the phrase.
Full description Used when an item has more than one symbol behind it.
id Unique identifier for the element.
idsrc The source (taxonomy) for the element's value.
value An alternate code or symbol for the element.
-->
<!ELEMENT person (#PCDATA | name.given | name.family | function | alt-code)*>
<!ATTLIST person
%global-attributes;
idsrc CDATA #IMPLIED
value CDATA #IMPLIED
gender (male|female) #IMPLIED
>
<!--
Element person
Partial description Human individual.
Full description Used to normalize people.
id Unique identifier for the element.
idsrc The source (taxonomy) for the element's value.
value The code or symbol for the element.
gender either male or female
-->
<!ELEMENT name.given (#PCDATA)>
<!ATTLIST name.given
%global-attributes;
>
<!--
Element name.given
Partial description Given name.
Full description In the U.S., the first name of an individual.
id Unique identifier for the element.
-->
<!ELEMENT name.family (#PCDATA)>
<!ATTLIST name.family
%global-attributes;
>
<!--
Element name.family
Partial description Family name.
Full description In the U.S., the last name of an individual.
id Unique identifier for the element.
-->
<!ELEMENT postaddr (addressee, delivery.point?, (postcode | delivery.office | region | country)*)>
<!ATTLIST postaddr
%global-attributes;
>
<!--
Element postaddr
Partial description Mailing address.
Full description Used to deliver mail.
id Unique identifier for the element.
-->
<!ELEMENT virtloc (#PCDATA | alt-code)*>
<!ATTLIST virtloc
%common-attributes;
idsrc CDATA #IMPLIED
value CDATA #IMPLIED
>
<!--
Element virtloc
Partial description Virtual Location.
Full description A location in cyberspace.
id Unique identifier for the element.
class An open placeholder for categorization.
style An open placeholder for reference by an external stylesheet.
idsrc The source (taxonomy) for the element's value attribute.
value The code or symbol for the element.
-->
<!ELEMENT a (%enriched-text;)*>
<!ATTLIST a
%common-attributes;
href CDATA #IMPLIED
name CDATA #IMPLIED
rel NMTOKEN #IMPLIED
rev NMTOKEN #IMPLIED
title CDATA #IMPLIED
>
<!--
Element a
Partial description Anchor for hypertext links.
Full description Allows users to traverse to other documents.
id Unique identifier for the element.
class An open placeholder for categorization.
style An open placeholder for reference by an external stylesheet.
href URL for where the hypertext anchor leads.
name Alternate name or description of the link, such as Link to News Item.
rel Specifies the relationship from the source to the target.
rev Specifies the relationship from the target to the source.
title Title for the document to be linked to.
-->
<!ELEMENT br EMPTY>
<!ATTLIST br
%global-attributes;
>
<!--
Element br
Partial description Forced line break.
Full description Often used within headlines.
id Unique identifier for the element.
-->
<!ELEMENT em (%enriched-text;)*>
<!ATTLIST em %common-attributes;>
<!--
Element em
Partial description Emphasis.
Full description Can be rendered as bold, italics, or another style.
id Unique identifier for the element.
class An open placeholder for categorization.
style An open placeholder for reference by an external stylesheet.
-->
<!ELEMENT lang (%enriched-text;)*>
<!ATTLIST lang %common-attributes;>
<!--
Element lang
Partial description Language identifier.
Full description Used to separate inline changes of language.
id Unique identifier for the element.
class An open placeholder for categorization.
style An open placeholder for reference by an external stylesheet.
-->
<!ELEMENT pronounce (%enriched-text;)*>
<!ATTLIST pronounce
%global-attributes;
guide CDATA #IMPLIED
phonetic CDATA #IMPLIED
>
<!--
Element pronounce
Partial description Pronunciation Information.
Full description Used to elaborate on how a term is spoken.
id Unique identifier for the element.
guide Source used to create pronunciation.
phonetic Phonetic pronunciation of an phrase.
-->
<!ELEMENT q (%enriched-text;)*>
<!ATTLIST q
%common-attributes;
quote-source CDATA #IMPLIED
>
<!--
Element q
Partial description Quotation.
Full description Words directly attributed to an individual.
id Unique identifier for the element.
class An open placeholder for categorization.
style An open placeholder for reference by an external stylesheet.
quote-source Who said or wrote the quotation.
-->
<!-- ****************************************************************
postaddr elements
addressee, delivery.point?, (postcode | delivery.office | region | country
**************************************************************** -->
<!ELEMENT addressee (person, function?, care.of?)>
<!ATTLIST addressee
%global-attributes;
>
<!--
Element addressee
Partial description Person or organization to whom the postal item is being sent.
Full description Used in a postal address.
id Unique identifier for the element.
-->
<!ELEMENT care.of (#PCDATA)>
<!ATTLIST care.of
%global-attributes;
>
<!--
Element care.of
Partial description Poste restante.
Full description An alternative receiver of the postal item.
id Unique identifier for the element.
-->
<!ELEMENT delivery.point (#PCDATA | br)*>
<!ATTLIST delivery.point
%global-attributes;
point-code CDATA #IMPLIED
code-source CDATA #IMPLIED
>
<!--
Element delivery.point
Partial description Street, PO Box No.
Full description Precise point of delivery.
id Unique identifier for the element.
point-code Coded location for a delivery point.
code-source Source of coded list information.
-->
<!ELEMENT postcode (#PCDATA)>
<!ATTLIST postcode
%global-attributes;
code-source CDATA #IMPLIED
>
<!--
Element postcode
Partial description Postal code.
Full description Used by postal agency to improve delivery efficiency.
id Unique identifier for the element.
code-source Source of coded list information.
-->
<!ELEMENT delivery.office (#PCDATA | br)*>
<!ATTLIST delivery.office
%global-attributes;
office-code CDATA #IMPLIED
code-source CDATA #IMPLIED
>
<!--
Element delivery.office
Partial description Postal city or town.
Full description Where the post office is located.
id Unique identifier for the element.
office-code Coded location of office from referenced coded source.
code-source Source of coded list information.
-->
<!-- region also allowed -->
<!-- country also allowed -->
<!-- ****************************************************************
body.end
**************************************************************** -->
<!ELEMENT body.end (tagline?, bibliography?)>
<!ATTLIST body.end
%global-attributes;
>
<!--
Element body.end
Partial description Information at the end of an article body
Full description Holds a tagline and/or a bibliography.
id Unique identifier for the element.
-->
<!ELEMENT tagline (%enriched-text;)*>
<!ATTLIST tagline
%common-attributes;
type (std | pa | npa) "std"
>
<!--
Element tagline
Partial description A byline at the end of a story.
Full description Example: Stuart Myles contributed to this article.
id Unique identifier for the element.
class An open placeholder for categorization.
style An open placeholder for reference by an external stylesheet.
type Standard, publishable-advisory, non-publishable advisory.
-->
<!ELEMENT bibliography (#PCDATA)>
<!ATTLIST bibliography
%common-attributes;
>
<!--
Element bibliography
Partial description Free-form bibliographic data.
Full description Used to elaborate on the source of information.
id Unique identifier for the element.
class An open placeholder for categorization.
style An open placeholder for reference by an external stylesheet.
-->
<!ELEMENT classifier (#PCDATA | alt-code)*>
<!ATTLIST classifier
%global-attributes;
type CDATA #IMPLIED
idsrc CDATA #IMPLIED
value CDATA #IMPLIED
>
<!--
Element classifier
Partial description Generic holder for metadata. Could be used by researchers and archivists to qualify documents.
Full description May be used inline (as localized phrase, atop a block (as localized section), or in docdata (for document as a whole).
id Unique identifier for the element.
type Type of classifier. Example is concept.
idsrc The source (taxonomy) for the element's value.
value The code or symbol for the element.
-->
<!ELEMENT nitf-table (
nitf-table-metadata,
(table | custom-table | table-reference+)
)>
<!ATTLIST nitf-table
%global-attributes;
>
<!--
Element nitf-table
Partial description A holder for a table, and content-filled metadata.
Full description May contain the classic NITF table, or a custom table.
id Unique identifier for the element.
-->
<!ELEMENT custom-table (#PCDATA)>
<!ATTLIST custom-table
%common-attributes;
>
<!--
Element custom-table
Partial description A holder for a namespaced XML fragment for custom-tagged data, or for an alternative set of non-parser-breaking content.
Full description Used when publisher wants to surround the fragment with NITF metadata.
id Unique identifier for the element.
class An open placeholder for categorization.
style An open placeholder for reference by an external stylesheet.
-->
<!ELEMENT table-reference EMPTY>
<!ATTLIST table-reference
%global-attributes;
idref CDATA #REQUIRED
>
<!--
Element table-reference
Partial description A pointer to a table that is elsewhere in the document.
Full description Can be used when the table is buried deep inside the included namespaced fragment.
id Unique identifier for the element.
idref Holds an ID for the actual table.
-->
<!ELEMENT nitf-table-metadata (nitf-table-summary?, (nitf-colgroup | nitf-col)+)>
<!ATTLIST nitf-table-metadata
%common-attributes;
subclass CDATA #IMPLIED
idsrc CDATA #IMPLIED
value CDATA #IMPLIED
status (pre | snap-shot | interim | final | official)
#IMPLIED
column-count CDATA #IMPLIED
row-count CDATA #IMPLIED
>
<!--
Element nitf-table-metadata
Partial description A holder for a namespaced XML fragment for custom-tagged data.
Full description Used when publisher wants to surround the fragment with NITF metadata.
id Unique identifier for the element.
class An open placeholder for categorization.
style An open placeholder for reference by an external stylesheet.
subclass A further refinement of the class attribute.
idsrc The source (taxonomy) for the element's value attribute.
value The code or symbol for the particular table.
status Measure of finality of the values of the table. Interim is the end of a logical break. snap-shot is any point in time.
column-count Number of columns in the entire table.
row-count Number of rows in the entire table.
-->
<!ELEMENT nitf-table-summary (p*)>
<!ATTLIST nitf-table-summary
%common-attributes;
>
<!--
Element nitf-table-summary
Partial description Textual description of the table.
Full description May describe intent of table and how it may be represented. Should be managed like a non-publishable editors note.
id Unique identifier for the element.
class An open placeholder for categorization.
style An open placeholder for reference by an external stylesheet.
-->
<!ELEMENT nitf-colgroup (nitf-col)+>
<!ATTLIST nitf-colgroup
%global-attributes;
idsrc CDATA #IMPLIED
value CDATA #IMPLIED
occurrences CDATA #IMPLIED
>
<!--
Element nitf-colgroup
Partial description A collection of nitf-col elements.
Full description Used when table repeats columns of a particular type.
id Unique identifier for the element.
idsrc The source (taxonomy) for the element's value attribute.
value The code or symbol for the particular column.
occurrences Indicates how many times the colgroup occurs. Default is 1.
-->
<!ELEMENT nitf-col EMPTY>
<!ATTLIST nitf-col
%global-attributes;
idsrc CDATA #IMPLIED
value CDATA #IMPLIED
occurrences CDATA #IMPLIED
data-type (text | number | graphic | other)
#IMPLIED
data-format CDATA #IMPLIED
>
<!--
Element nitf-col
Partial description A holder for a namespaced XML fragment for custom-tagged data.
Full description Used when publisher wants to surround the fragment with NITF metadata.
id Unique identifier for the element.
idsrc The source (taxonomy) for the element's value attribute.
value The code or symbol for the particular column.
occurrences Indicates how many times the col occurs. Default is 1.
data-type The general type of data within the column.
data-format An expanded definition of the data, based on the data-type.
-->
|