File size: 99,742 Bytes
23b035e |
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 |
{
"timestamp": "1446993000",
"score": "3 - 2",
"round": "12",
"teams": [
"Dortmund",
"Schalke"
],
"lineup": {
"home": {
"tactic": "1-4-2-3-1",
"players": [
{
"hash": "Wl4EyKZk",
"name": "Aubameyang P.",
"captain": "",
"detail_link": "/player/aubameyang-pierre-emerick/Wl4EyKZk/",
"short_name": "Aubameyang",
"shirt_number": "17",
"country": "Gabon",
"facts": [
{
"type": "3",
"time": "47' Aubameyang P. (Castro G.)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "1",
"time": "48' Aubameyang P. (Unsportsmanlike conduct)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "6",
"time": "90+4'",
"description": "Ramos A.",
"linked_player_hash": "YZ3fZd1q"
}
],
"lineup": 11,
"starting": true,
"long_name": "Pierre-Emerick Aubameyang"
},
{
"hash": "x6gzWUIk",
"name": "Burki R.",
"captain": "",
"detail_link": "/player/burki-roman/x6gzWUIk/",
"short_name": "Burki",
"shirt_number": "38",
"country": "Switzerland",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Roman Burki"
},
{
"hash": "tWNcwyFS",
"name": "Castro G.",
"captain": "",
"detail_link": "/player/castro-gonzalo/tWNcwyFS/",
"short_name": "Castro",
"shirt_number": "27",
"country": "Germany",
"facts": [
{
"type": "8",
"time": "47' Aubameyang P. (Castro G.)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "6",
"time": "87'",
"description": "Bender S.",
"linked_player_hash": "v1r7SOW5"
}
],
"lineup": 8,
"starting": true,
"long_name": "Gonzalo Castro"
},
{
"hash": "27fpNoQk",
"name": "Ginter M.",
"captain": "",
"detail_link": "/player/ginter-matthias/27fpNoQk/",
"short_name": "Ginter",
"shirt_number": "28",
"country": "Germany",
"facts": [
{
"type": "8",
"time": "30' Kagawa S. (Ginter M.)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "3",
"time": "43' Ginter M. (Mkhitaryan H.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 2,
"starting": true,
"long_name": "Matthias Ginter"
},
{
"hash": "hCQ7jhL3",
"name": "Gundogan I.",
"captain": "",
"detail_link": "/player/gundogan-ilkay/hCQ7jhL3/",
"short_name": "Gundogan",
"shirt_number": "8",
"country": "Germany",
"facts": [],
"lineup": 6,
"starting": true,
"long_name": "Ilkay Gundogan"
},
{
"hash": "2c4AueOM",
"name": "Hummels M.",
"captain": "(C)",
"detail_link": "/player/hummels-mats/2c4AueOM/",
"short_name": "Hummels",
"shirt_number": "15",
"country": "Germany",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Mats Hummels"
},
{
"hash": "zcwd2hro",
"name": "Kagawa S.",
"captain": "",
"detail_link": "/player/kagawa-shinji/zcwd2hro/",
"short_name": "Kagawa",
"shirt_number": "23",
"country": "Japan",
"facts": [
{
"type": "3",
"time": "30' Kagawa S. (Ginter M.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 9,
"starting": true,
"long_name": "Shinji Kagawa"
},
{
"hash": "KKi1DwHC",
"name": "Mkhitaryan H.",
"captain": "",
"detail_link": "/player/mkhitaryan-henrikh/KKi1DwHC/",
"short_name": "Mkhitaryan",
"shirt_number": "10",
"country": "Armenia",
"facts": [
{
"type": "8",
"time": "43' Ginter M. (Mkhitaryan H.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 10,
"starting": true,
"long_name": "Henrikh Mkhitaryan"
},
{
"hash": "n3VwNCjb",
"name": "Schmelzer M.",
"captain": "",
"detail_link": "/player/schmelzer-marcel/n3VwNCjb/",
"short_name": "Schmelzer",
"shirt_number": "29",
"country": "Germany",
"facts": [
{
"type": "1",
"time": "82' Schmelzer M. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 5,
"starting": true,
"long_name": "Marcel Schmelzer"
},
{
"hash": "SQr6hJJR",
"name": "Sokratis",
"captain": "",
"detail_link": "/player/papastathopoulos-sokratis/SQr6hJJR/",
"short_name": "Papastathopoulos",
"shirt_number": "25",
"country": "Greece",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Sokratis Papastathopoulos"
},
{
"hash": "2wwMMwAa",
"name": "Weigl J.",
"captain": "",
"detail_link": "/player/weigl-julian/2wwMMwAa/",
"short_name": "Weigl",
"shirt_number": "33",
"country": "Germany",
"facts": [
{
"type": "1",
"time": "89' Weigl J. (Unsportsmanlike conduct)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 7,
"starting": true,
"long_name": "Julian Weigl"
},
{
"hash": "v1r7SOW5",
"name": "Bender S.",
"captain": "",
"detail_link": "/player/bender-sven/v1r7SOW5/",
"short_name": "Bender",
"shirt_number": "6",
"country": "Germany",
"facts": [
{
"type": "7",
"time": "87'",
"description": "Castro G.",
"linked_player_hash": "tWNcwyFS"
}
],
"lineup": null,
"starting": false,
"long_name": "Sven Bender"
},
{
"hash": "xvCz3Gwd",
"name": "Hofmann J.",
"captain": "",
"detail_link": "/player/hofmann-jonas/xvCz3Gwd/",
"short_name": "Hofmann",
"shirt_number": "7",
"country": "Germany",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Jonas Hofmann"
},
{
"hash": "6qyeYCYO",
"name": "Januzaj A.",
"captain": "",
"detail_link": "/player/januzaj-adnan/6qyeYCYO/",
"short_name": "Januzaj",
"shirt_number": "9",
"country": "Belgium",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Adnan Januzaj"
},
{
"hash": "QmgkhFOH",
"name": "Park Joo-Ho",
"captain": "",
"detail_link": "/player/park-joo-ho/QmgkhFOH/",
"short_name": "Park",
"shirt_number": "3",
"country": "South Korea",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Joo-Ho Park"
},
{
"hash": "AZgM33p0",
"name": "Piszczek L.",
"captain": "",
"detail_link": "/player/piszczek-lukasz/AZgM33p0/",
"short_name": "Piszczek",
"shirt_number": "26",
"country": "Poland",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Lukasz Piszczek"
},
{
"hash": "YZ3fZd1q",
"name": "Ramos A.",
"captain": "",
"detail_link": "/player/ramos-adrian/YZ3fZd1q/",
"short_name": "Ramos",
"shirt_number": "20",
"country": "Colombia",
"facts": [
{
"type": "7",
"time": "90+4'",
"description": "Aubameyang P.",
"linked_player_hash": "Wl4EyKZk"
}
],
"lineup": null,
"starting": false,
"long_name": "Adrian Ramos"
},
{
"hash": "SWPWwvA4",
"name": "Weidenfeller R.",
"captain": "",
"detail_link": "/player/weidenfeller-roman/SWPWwvA4/",
"short_name": "Weidenfeller",
"shirt_number": "1",
"country": "Germany",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Roman Weidenfeller"
}
],
"coach": [
{
"hash": "CQTUFgPk",
"name": "Tuchel T.",
"captain": "",
"detail_link": "/player/tuchel-thomas/CQTUFgPk/",
"short_name": "Tuchel T.",
"shirt_number": "",
"country": "Germany",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Thomas Tuchel"
}
]
},
"away": {
"tactic": "1-4-4-2",
"players": [
{
"hash": "UTXrgukF",
"name": "Aogo D.",
"captain": "",
"detail_link": "/player/aogo-dennis/UTXrgukF/",
"short_name": "Aogo",
"shirt_number": "15",
"country": "Germany",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Dennis Aogo"
},
{
"hash": "voOM598n",
"name": "Di Santo F.",
"captain": "",
"detail_link": "/player/di-santo-franco/voOM598n/",
"short_name": "Di Santo",
"shirt_number": "9",
"country": "Argentina",
"facts": [
{
"type": "1",
"time": "60' Di Santo F. (Foul)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 6,
"starting": true,
"long_name": "Franco Di Santo"
},
{
"hash": "4YbnQFUo",
"name": "Fahrmann R.",
"captain": "",
"detail_link": "/player/fahrmann-ralf/4YbnQFUo/",
"short_name": "Fahrmann",
"shirt_number": "1",
"country": "Germany",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Ralf Fahrmann"
},
{
"hash": "l2JpsMjB",
"name": "Goretzka L.",
"captain": "",
"detail_link": "/player/goretzka-leon/l2JpsMjB/",
"short_name": "Goretzka",
"shirt_number": "8",
"country": "Germany",
"facts": [
{
"type": "1",
"time": "38' Goretzka L. (Holding)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 7,
"starting": true,
"long_name": "Leon Goretzka"
},
{
"hash": "QqVZuTYl",
"name": "Huntelaar K.",
"captain": "(C)",
"detail_link": "/player/huntelaar-klaas-jan/QqVZuTYl/",
"short_name": "Huntelaar",
"shirt_number": "25",
"country": "Netherlands",
"facts": [
{
"type": "3",
"time": "33' Huntelaar K. (Sane L.)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "3",
"time": "71' Huntelaar K.",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 11,
"starting": true,
"long_name": "Klaas-Jan Huntelaar"
},
{
"hash": "tvNX1Ips",
"name": "Junior Caicara",
"captain": "",
"detail_link": "/player/junior-caicara/tvNX1Ips/",
"short_name": "Junior Caicara",
"shirt_number": "3",
"country": "Brazil",
"facts": [
{
"type": "1",
"time": "46' Junior Caicara (Foul)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 2,
"starting": true,
"long_name": "Junior Caicara"
},
{
"hash": "8xFYnbEi",
"name": "Kolasinac S.",
"captain": "",
"detail_link": "/player/kolasinac-sead/8xFYnbEi/",
"short_name": "Kolasinac",
"shirt_number": "6",
"country": "Bosnia and Herzegovina",
"facts": [
{
"type": "6",
"time": "69'",
"description": "Hojbjerg P.",
"linked_player_hash": "ITwS8wMo"
}
],
"lineup": 8,
"starting": true,
"long_name": "Sead Kolasinac"
},
{
"hash": "tpHWp8Am",
"name": "Matip J.",
"captain": "",
"detail_link": "/player/matip-joel/tpHWp8Am/",
"short_name": "Matip",
"shirt_number": "32",
"country": "Cameroon",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Joel Matip"
},
{
"hash": "IyOltt6H",
"name": "Meyer M.",
"captain": "",
"detail_link": "/player/meyer-max/IyOltt6H/",
"short_name": "Meyer",
"shirt_number": "7",
"country": "Germany",
"facts": [
{
"type": "6",
"time": "56'",
"description": "Choupo-Moting E. M.",
"linked_player_hash": "YBBM9RBF"
}
],
"lineup": 9,
"starting": true,
"long_name": "Max Meyer"
},
{
"hash": "bFdmSyzH",
"name": "Neustadter R.",
"captain": "",
"detail_link": "/player/neustadter-roman/bFdmSyzH/",
"short_name": "Neustadter",
"shirt_number": "33",
"country": "Russia",
"facts": [
{
"type": "6",
"time": "89'",
"description": "Platte F.",
"linked_player_hash": "vuW0P274"
}
],
"lineup": 3,
"starting": true,
"long_name": "Roman Neustadter"
},
{
"hash": "GlTyfr8U",
"name": "Sane L.",
"captain": "",
"detail_link": "/player/sane-leroy/GlTyfr8U/",
"short_name": "Sane",
"shirt_number": "19",
"country": "Germany",
"facts": [
{
"type": "8",
"time": "33' Huntelaar K. (Sane L.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 10,
"starting": true,
"long_name": "Leroy Sane"
},
{
"hash": "2LrADTME",
"name": "Ayhan K.",
"captain": "",
"detail_link": "/player/ayhan-kaan/2LrADTME/",
"short_name": "Ayhan",
"shirt_number": "24",
"country": "Turkey",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Kaan Ayhan"
},
{
"hash": "YBBM9RBF",
"name": "Choupo-Moting E. M.",
"captain": "",
"detail_link": "/player/choupo-moting-maxim/YBBM9RBF/",
"short_name": "Choupo-Moting",
"shirt_number": "13",
"country": "Cameroon",
"facts": [
{
"type": "7",
"time": "56'",
"description": "Meyer M.",
"linked_player_hash": "IyOltt6H"
}
],
"lineup": null,
"starting": false,
"long_name": "Eric Maxim Choupo-Moting"
},
{
"hash": "Oj600SOn",
"name": "Friedrich M.",
"captain": "",
"detail_link": "/player/friedrich-marvin/Oj600SOn/",
"short_name": "Friedrich",
"shirt_number": "2",
"country": "Germany",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Marvin Friedrich"
},
{
"hash": "Wre5Fx5j",
"name": "Gspurning M.",
"captain": "",
"detail_link": "/player/gspurning-michael/Wre5Fx5j/",
"short_name": "Gspurning",
"shirt_number": "30",
"country": "Austria",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Michael Gspurning"
},
{
"hash": "ITwS8wMo",
"name": "Hojbjerg P.",
"captain": "",
"detail_link": "/player/hojbjerg-pierre-emile/ITwS8wMo/",
"short_name": "Hojbjerg",
"shirt_number": "23",
"country": "Denmark",
"facts": [
{
"type": "7",
"time": "69'",
"description": "Kolasinac S.",
"linked_player_hash": "8xFYnbEi"
}
],
"lineup": null,
"starting": false,
"long_name": "Pierre-Emile Hojbjerg"
},
{
"hash": "vuW0P274",
"name": "Platte F.",
"captain": "",
"detail_link": "/player/platte-felix/vuW0P274/",
"short_name": "Platte",
"shirt_number": "36",
"country": "Germany",
"facts": [
{
"type": "7",
"time": "89'",
"description": "Neustadter R.",
"linked_player_hash": "bFdmSyzH"
},
{
"type": "1",
"time": "90+1' Platte F. (Unsportsmanlike conduct)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Felix Platte"
},
{
"hash": "8tjh4C3q",
"name": "Riether S.",
"captain": "",
"detail_link": "/player/riether-sascha/8tjh4C3q/",
"short_name": "Riether",
"shirt_number": "27",
"country": "Germany",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Sascha Riether"
}
],
"coach": [
{
"hash": "lhUKMQZu",
"name": "Breitenreiter A.",
"captain": "",
"detail_link": "/player/breitenreiter-andre/lhUKMQZu/",
"short_name": "Breitenreiter A.",
"shirt_number": "",
"country": "Germany",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Andre Breitenreiter"
}
]
}
},
"referee": [
"Brych F."
],
"venue": [
"Signal Iduna Park (Dortmund)"
],
"attendance": [
"79 956"
],
"referee_matched": [
"Felix Brych"
],
"referee_found": [
"Felix Brych"
],
"coach_matched": [
"Andre Breitenreiter",
"The manager"
],
"gameHomeTeam": "Dortmund",
"home": {
"name": "Dortmund",
"detail_link": "/team/dortmund/nP1i5US1",
"hash": "nP1i5US1",
"names": [
"Dortmund",
"Dortmund (Ger)",
"dortmund"
]
},
"gameAwayTeam": "Schalke",
"away": {
"name": "Schalke",
"detail_link": "/team/schalke/0Ija0Ej9",
"hash": "0Ija0Ej9",
"names": [
"Schalke",
"schalke"
]
},
"gameDate": "08/11/2015 - 15:30",
"annotations": [
{
"important": false,
"gameTime": "2 - 49:59",
"label": "",
"description": "What a thrilling encounter, there was plenty of goal mouth action. The home team had more of the game. Short passing and possession was the style of the home side, while the visiting side tried to hit their opposition on the break.",
"identified": "What a thrilling encounter, there was plenty of goal mouth action. The home team had more of the game. Short passing and possession was the style of the home side, while the visiting side tried to hit their opposition on the break.",
"anonymized": "What a thrilling encounter, there was plenty of goal mouth action. The home team had more of the game. Short passing and possession was the style of the home side, while the visiting side tried to hit their opposition on the break.",
"visibility": "shown",
"position": "2999000"
},
{
"important": true,
"gameTime": "2 - 49:04",
"label": "whistle",
"description": "That's all for today as the game is over.",
"identified": "That's all for today as the game is over.",
"anonymized": "That's all for today as the game is over.",
"visibility": "shown",
"position": "2944000"
},
{
"important": true,
"gameTime": "2 - 48:05",
"label": "substitution",
"description": "Substitution. Pierre-Emerick Aubameyang will be replaced by Adrian Ramos (Dortmund).",
"identified": "Substitution. [PLAYER_Wl4EyKZk] will be replaced by [PLAYER_YZ3fZd1q] ([TEAM_]).",
"anonymized": "Substitution. [PLAYER] will be replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2885000"
},
{
"important": true,
"gameTime": "2 - 47:05",
"label": "",
"description": "Ilkay Gundogan (Dortmund) picks up a precise pass deep inside the box, but his strike is saved by the keeper.",
"identified": "[PLAYER_hCQ7jhL3] ([TEAM_]) picks up a precise pass deep inside the box, but his strike is saved by the keeper.",
"anonymized": "[PLAYER] ([TEAM]) picks up a precise pass deep inside the box, but his strike is saved by the keeper.",
"visibility": "shown",
"position": "2825000"
},
{
"important": false,
"gameTime": "2 - 46:51",
"label": "",
"description": "Dortmund take a quick free kick with a short pass and play continues.",
"identified": "[TEAM_] take a quick free kick with a short pass and play continues.",
"anonymized": "[TEAM] take a quick free kick with a short pass and play continues.",
"visibility": "shown",
"position": "2811000"
},
{
"important": false,
"gameTime": "2 - 46:30",
"label": "",
"description": "Felix Brych interrupts the game for a tactical foul by Leon Goretzka (Schalke). Another situation results in a direct free kick for Dortmund.",
"identified": "[REFEREE] interrupts the game for a tactical foul by [PLAYER_l2JpsMjB] ([TEAM_]). Another situation results in a direct free kick for [TEAM_].",
"anonymized": "[REFEREE] interrupts the game for a tactical foul by [PLAYER] ([TEAM]). Another situation results in a direct free kick for [TEAM].",
"visibility": "shown",
"position": "2790000"
},
{
"important": false,
"gameTime": "2 - 45:59",
"label": "",
"description": "Shinji Kagawa (Dortmund) produces an inaccurate low pass into the box that is blocked by the one of the defenders. If this pass had slipped through, the ball would have probably ended up in the back of the net.",
"identified": "[PLAYER_zcwd2hro] ([TEAM_]) produces an inaccurate low pass into the box that is blocked by the one of the defenders. If this pass had slipped through, the ball would have probably ended up in the back of the net.",
"anonymized": "[PLAYER] ([TEAM]) produces an inaccurate low pass into the box that is blocked by the one of the defenders. If this pass had slipped through, the ball would have probably ended up in the back of the net.",
"visibility": "shown",
"position": "2759000"
},
{
"important": true,
"gameTime": "2 - 45:05",
"label": "y-card",
"description": "Felix Platte (Schalke) picks up a caution.",
"identified": "[PLAYER_vuW0P274] ([TEAM_]) picks up a caution.",
"anonymized": "[PLAYER] ([TEAM]) picks up a caution.",
"visibility": "shown",
"position": "2705000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"label": "time",
"description": "4 min. of stoppage-time to be played.",
"identified": "4 min. of stoppage-time to be played.",
"anonymized": "4 min. of stoppage-time to be played.",
"visibility": "shown",
"position": "0"
},
{
"important": true,
"gameTime": "2 - 43:30",
"label": "y-card",
"description": "Julian Weigl (Dortmund) goes into the book and receives a yellow card.",
"identified": "[PLAYER_2wwMMwAa] ([TEAM_]) goes into the book and receives a yellow card.",
"anonymized": "[PLAYER] ([TEAM]) goes into the book and receives a yellow card.",
"visibility": "shown",
"position": "2610000"
},
{
"important": true,
"gameTime": "2 - 43:25",
"label": "substitution",
"description": "That will be all from Roman Neustadter who is being replaced by the fresh legs of Felix Platte (Schalke).",
"identified": "That will be all from [PLAYER_bFdmSyzH] who is being replaced by the fresh legs of [PLAYER_vuW0P274] ([TEAM_]).",
"anonymized": "That will be all from [PLAYER] who is being replaced by the fresh legs of [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2605000"
},
{
"important": false,
"gameTime": "2 - 42:58",
"label": "",
"description": "Another attempt to send the ball beyond the defence by Pierre-Emerick Aubameyang (Dortmund) is thwarted and cleared to safety.",
"identified": "Another attempt to send the ball beyond the defence by [PLAYER_Wl4EyKZk] ([TEAM_]) is thwarted and cleared to safety.",
"anonymized": "Another attempt to send the ball beyond the defence by [PLAYER] ([TEAM]) is thwarted and cleared to safety.",
"visibility": "shown",
"position": "2578000"
},
{
"important": false,
"gameTime": "2 - 41:55",
"label": "",
"description": "Schalke are ruled offside.",
"identified": "[TEAM_] are ruled offside.",
"anonymized": "[TEAM] are ruled offside.",
"visibility": "shown",
"position": "2515000"
},
{
"important": false,
"gameTime": "2 - 41:30",
"label": "",
"description": "Leroy Sane (Schalke) shoots from outside the box, but his effort is blocked.",
"identified": "[PLAYER_GlTyfr8U] ([TEAM_]) shoots from outside the box, but his effort is blocked.",
"anonymized": "[PLAYER] ([TEAM]) shoots from outside the box, but his effort is blocked.",
"visibility": "shown",
"position": "2490000"
},
{
"important": true,
"gameTime": "2 - 41:04",
"label": "substitution",
"description": "The manager has decided to make a substitution and Gonzalo Castro walks off the pitch to be replaced by Sven Bender (Dortmund).",
"identified": "The manager has decided to make a substitution and [PLAYER_tWNcwyFS] walks off the pitch to be replaced by [PLAYER_v1r7SOW5] ([TEAM_]).",
"anonymized": "The manager has decided to make a substitution and [PLAYER] walks off the pitch to be replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2464000"
},
{
"important": false,
"gameTime": "2 - 39:56",
"label": "",
"description": "Franco Di Santo (Schalke) is adjudged offside.",
"identified": "[PLAYER_voOM598n] ([TEAM_]) is adjudged offside.",
"anonymized": "[PLAYER] ([TEAM]) is adjudged offside.",
"visibility": "shown",
"position": "2396000"
},
{
"important": false,
"gameTime": "2 - 38:55",
"label": "",
"description": "Schalke are bossing possession of the ball and make numerous short passes, but they finally lose possession after an error. The linesman signals a throw-in for Dortmund.",
"identified": "[TEAM_] are bossing possession of the ball and make numerous short passes, but they finally lose possession after an error. The linesman signals a throw-in for [TEAM_].",
"anonymized": "[TEAM] are bossing possession of the ball and make numerous short passes, but they finally lose possession after an error. The linesman signals a throw-in for [TEAM].",
"visibility": "shown",
"position": "2335000"
},
{
"important": false,
"gameTime": "2 - 37:28",
"label": "corner",
"description": "Dennis Aogo (Schalke) takes the corner kick, but Roman Burki reads it well and stops the effort.",
"identified": "[PLAYER_UTXrgukF] ([TEAM_]) takes the corner kick, but [PLAYER_x6gzWUIk] reads it well and stops the effort.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner kick, but [PLAYER] reads it well and stops the effort.",
"visibility": "shown",
"position": "2248000"
},
{
"important": true,
"gameTime": "2 - 37:08",
"label": "",
"description": "Maxim Choupo-Moting (Schalke) unleashes a powerful shot towards goal, but it is bravely blocked by a self-sacrificing defender. The ball is out of play and Schalke manage to earn a corner.",
"identified": "[PLAYER_YBBM9RBF] ([TEAM_]) unleashes a powerful shot towards goal, but it is bravely blocked by a self-sacrificing defender. The ball is out of play and [TEAM_] manage to earn a corner.",
"anonymized": "[PLAYER] ([TEAM]) unleashes a powerful shot towards goal, but it is bravely blocked by a self-sacrificing defender. The ball is out of play and [TEAM] manage to earn a corner.",
"visibility": "shown",
"position": "2228000"
},
{
"important": true,
"gameTime": "2 - 36:36",
"label": "y-card",
"description": "Marcel Schmelzer (Dortmund) is booked after bringing down an opponent. Felix Brych had an easy-decision to make.",
"identified": "[PLAYER_n3VwNCjb] ([TEAM_]) is booked after bringing down an opponent. [REFEREE] had an easy-decision to make.",
"anonymized": "[PLAYER] ([TEAM]) is booked after bringing down an opponent. [REFEREE] had an easy-decision to make.",
"visibility": "shown",
"position": "2196000"
},
{
"important": false,
"gameTime": "2 - 34:48",
"label": "corner",
"description": "Dennis Aogo (Schalke) sends in the corner, but the keeper steps in and makes a save.",
"identified": "[PLAYER_UTXrgukF] ([TEAM_]) sends in the corner, but the keeper steps in and makes a save.",
"anonymized": "[PLAYER] ([TEAM]) sends in the corner, but the keeper steps in and makes a save.",
"visibility": "shown",
"position": "2088000"
},
{
"important": true,
"gameTime": "2 - 34:15",
"label": "",
"description": "A great job from two opposing players there. Pierre-Emile Hojbjerg (Schalke) fired a shot nicely in on goal from distance towards the bottom right corner, while Roman Burki produced a wonderful piece of goalkeeping to parry the ball onto the post. Schalke have been awarded a corner kick. The referee and one of his assistants both point at the corner flag.",
"identified": "A great job from two opposing players there. [PLAYER_ITwS8wMo] ([TEAM_]) fired a shot nicely in on goal from distance towards the bottom right corner, while [PLAYER_x6gzWUIk] produced a wonderful piece of goalkeeping to parry the ball onto the post. [TEAM_] have been awarded a corner kick. The referee and one of his assistants both point at the corner flag.",
"anonymized": "A great job from two opposing players there. [PLAYER] ([TEAM]) fired a shot nicely in on goal from distance towards the bottom right corner, while [PLAYER] produced a wonderful piece of goalkeeping to parry the ball onto the post. [TEAM] have been awarded a corner kick. The referee and one of his assistants both point at the corner flag.",
"visibility": "shown",
"position": "2055000"
},
{
"important": false,
"gameTime": "2 - 32:54",
"label": "",
"description": "Gonzalo Castro (Dortmund) swings in a cross, but the ball is cleared to safety by one of the defending players.",
"identified": "[PLAYER_tWNcwyFS] ([TEAM_]) swings in a cross, but the ball is cleared to safety by one of the defending players.",
"anonymized": "[PLAYER] ([TEAM]) swings in a cross, but the ball is cleared to safety by one of the defending players.",
"visibility": "shown",
"position": "1974000"
},
{
"important": true,
"gameTime": "2 - 31:33",
"label": "",
"description": "Pierre-Emerick Aubameyang (Dortmund) makes contact with a cross and strikes a shot that lacks the power to find the back of the net, but the goalkeeper still has to make a good save to keep his effort out.",
"identified": "[PLAYER_Wl4EyKZk] ([TEAM_]) makes contact with a cross and strikes a shot that lacks the power to find the back of the net, but the goalkeeper still has to make a good save to keep his effort out.",
"anonymized": "[PLAYER] ([TEAM]) makes contact with a cross and strikes a shot that lacks the power to find the back of the net, but the goalkeeper still has to make a good save to keep his effort out.",
"visibility": "shown",
"position": "1893000"
},
{
"important": false,
"gameTime": "2 - 30:36",
"label": "",
"description": "Matthias Ginter (Dortmund) produces a quality cross into the box, but the opposition's defence intercepts the ball and spanks it away.",
"identified": "[PLAYER_27fpNoQk] ([TEAM_]) produces a quality cross into the box, but the opposition's defence intercepts the ball and spanks it away.",
"anonymized": "[PLAYER] ([TEAM]) produces a quality cross into the box, but the opposition's defence intercepts the ball and spanks it away.",
"visibility": "shown",
"position": "1836000"
},
{
"important": false,
"gameTime": "2 - 29:29",
"label": "",
"description": "Schalke are bossing possession of the ball and make numerous short passes, but they finally lose possession after an error. The ball has crossed the sideline. Dortmund are taking a throw-in.",
"identified": "[TEAM_] are bossing possession of the ball and make numerous short passes, but they finally lose possession after an error. The ball has crossed the sideline. [TEAM_] are taking a throw-in.",
"anonymized": "[TEAM] are bossing possession of the ball and make numerous short passes, but they finally lose possession after an error. The ball has crossed the sideline. [TEAM] are taking a throw-in.",
"visibility": "shown",
"position": "1769000"
},
{
"important": false,
"gameTime": "2 - 27:22",
"label": "",
"description": "Pierre-Emerick Aubameyang (Dortmund) tries to send a low pass into the box, but it's blocked and cleared.",
"identified": "[PLAYER_Wl4EyKZk] ([TEAM_]) tries to send a low pass into the box, but it's blocked and cleared.",
"anonymized": "[PLAYER] ([TEAM]) tries to send a low pass into the box, but it's blocked and cleared.",
"visibility": "shown",
"position": "1642000"
},
{
"important": false,
"gameTime": "2 - 26:56",
"label": "",
"description": "Matthias Ginter (Dortmund) sends a long ball in, but Ralf Fahrmann comfortably gathers the ball.",
"identified": "[PLAYER_27fpNoQk] ([TEAM_]) sends a long ball in, but [PLAYER_4YbnQFUo] comfortably gathers the ball.",
"anonymized": "[PLAYER] ([TEAM]) sends a long ball in, but [PLAYER] comfortably gathers the ball.",
"visibility": "shown",
"position": "1616000"
},
{
"important": true,
"gameTime": "2 - 25:32",
"label": "soccer-ball",
"description": "GOAL! Klaas-Jan Huntelaar (Schalke) collects a pass and from inside the box he lifts the ball over Roman Burki, who was off his line. What a finish that is! 3:2.",
"identified": "GOAL! [PLAYER_QqVZuTYl] ([TEAM_]) collects a pass and from inside the box he lifts the ball over [PLAYER_x6gzWUIk], who was off his line. What a finish that is! 3:2.",
"anonymized": "GOAL! [PLAYER] ([TEAM]) collects a pass and from inside the box he lifts the ball over [PLAYER], who was off his line. What a finish that is! 3:2.",
"visibility": "shown",
"position": "1532000"
},
{
"important": false,
"gameTime": "2 - 25:05",
"label": "",
"description": "Henrikh Mkhitaryan (Dortmund) slaloms his way past challenges, but an opposing player does well to get the ball away.",
"identified": "[PLAYER_KKi1DwHC] ([TEAM_]) slaloms his way past challenges, but an opposing player does well to get the ball away.",
"anonymized": "[PLAYER] ([TEAM]) slaloms his way past challenges, but an opposing player does well to get the ball away.",
"visibility": "shown",
"position": "1505000"
},
{
"important": false,
"gameTime": "2 - 24:45",
"label": "",
"description": "The Dortmund players are exchanging short passes in an attempt to create a shooting opportunity.",
"identified": "The [TEAM_] players are exchanging short passes in an attempt to create a shooting opportunity.",
"anonymized": "The [TEAM] players are exchanging short passes in an attempt to create a shooting opportunity.",
"visibility": "shown",
"position": "1485000"
},
{
"important": true,
"gameTime": "2 - 23:56",
"label": "substitution",
"description": "The referee signals that it is time for a substitution and Pierre-Emile Hojbjerg (Schalke) is coming onto the pitch as Sead Kolasinac cannot continue after picking up an injury.",
"identified": "The referee signals that it is time for a substitution and [PLAYER_ITwS8wMo] ([TEAM_]) is coming onto the pitch as [PLAYER_8xFYnbEi] cannot continue after picking up an injury.",
"anonymized": "The referee signals that it is time for a substitution and [PLAYER] ([TEAM]) is coming onto the pitch as [PLAYER] cannot continue after picking up an injury.",
"visibility": "shown",
"position": "1436000"
},
{
"important": true,
"gameTime": "2 - 23:23",
"label": "",
"description": "Sokratis (Dortmund) wins himself just enough space inside the box to connect with the corner. His header flies towards the left post, but the goalkeeper dives superbly to stop the effort.",
"identified": "[PLAYER_SQr6hJJR] ([TEAM_]) wins himself just enough space inside the box to connect with the corner. His header flies towards the left post, but the goalkeeper dives superbly to stop the effort.",
"anonymized": "[PLAYER] ([TEAM]) wins himself just enough space inside the box to connect with the corner. His header flies towards the left post, but the goalkeeper dives superbly to stop the effort.",
"visibility": "shown",
"position": "1403000"
},
{
"important": false,
"gameTime": "2 - 23:04",
"label": "corner",
"description": "Henrikh Mkhitaryan (Dortmund) will deliver the corner kick.",
"identified": "[PLAYER_KKi1DwHC] ([TEAM_]) will deliver the corner kick.",
"anonymized": "[PLAYER] ([TEAM]) will deliver the corner kick.",
"visibility": "shown",
"position": "1384000"
},
{
"important": false,
"gameTime": "2 - 22:49",
"label": "",
"description": "Matthias Ginter (Dortmund) fails to send a pass into the box as his effort is cut out. The referee blows his whistle, Dortmund are awarded a corner kick.",
"identified": "[PLAYER_27fpNoQk] ([TEAM_]) fails to send a pass into the box as his effort is cut out. The referee blows his whistle, [TEAM_] are awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) fails to send a pass into the box as his effort is cut out. The referee blows his whistle, [TEAM] are awarded a corner kick.",
"visibility": "shown",
"position": "1369000"
},
{
"important": false,
"gameTime": "2 - 21:52",
"label": "",
"description": "Dortmund continue the game with a quickly taken free kick.",
"identified": "[TEAM_] continue the game with a quickly taken free kick.",
"anonymized": "[TEAM] continue the game with a quickly taken free kick.",
"visibility": "shown",
"position": "1312000"
},
{
"important": false,
"gameTime": "2 - 21:25",
"label": "",
"description": "Julian Weigl (Dortmund) has picked up a minor injury, but it looks like he will be able to continue.",
"identified": "[PLAYER_2wwMMwAa] ([TEAM_]) has picked up a minor injury, but it looks like he will be able to continue.",
"anonymized": "[PLAYER] ([TEAM]) has picked up a minor injury, but it looks like he will be able to continue.",
"visibility": "shown",
"position": "1285000"
},
{
"important": false,
"gameTime": "2 - 20:59",
"label": "injury",
"description": "The game is interrupted now, Julian Weigl (Dortmund) picks up a knock and the physio has to come on.",
"identified": "The game is interrupted now, [PLAYER_2wwMMwAa] ([TEAM_]) picks up a knock and the physio has to come on.",
"anonymized": "The game is interrupted now, [PLAYER] ([TEAM]) picks up a knock and the physio has to come on.",
"visibility": "shown",
"position": "1259000"
},
{
"important": false,
"gameTime": "2 - 20:24",
"label": "",
"description": "The referee blows his whistle as Klaas-Jan Huntelaar (Schalke) was too aggressive in his challenge. Dortmund win a free kick. It's a promising situation for a direct shot.",
"identified": "The referee blows his whistle as [PLAYER_QqVZuTYl] ([TEAM_]) was too aggressive in his challenge. [TEAM_] win a free kick. It's a promising situation for a direct shot.",
"anonymized": "The referee blows his whistle as [PLAYER] ([TEAM]) was too aggressive in his challenge. [TEAM] win a free kick. It's a promising situation for a direct shot.",
"visibility": "shown",
"position": "1224000"
},
{
"important": false,
"gameTime": "2 - 19:40",
"label": "",
"description": "Shinji Kagawa (Dortmund) looks to break free, but an opposing player clears the ball away.",
"identified": "[PLAYER_zcwd2hro] ([TEAM_]) looks to break free, but an opposing player clears the ball away.",
"anonymized": "[PLAYER] ([TEAM]) looks to break free, but an opposing player clears the ball away.",
"visibility": "shown",
"position": "1180000"
},
{
"important": false,
"gameTime": "2 - 18:58",
"label": "attendance",
"description": "The attendance for today's match is 79956.",
"identified": "The attendance for today's match is 79956.",
"anonymized": "The attendance for today's match is 79956.",
"visibility": "shown",
"position": "1138000"
},
{
"important": false,
"gameTime": "2 - 17:34",
"label": "",
"description": "Pierre-Emerick Aubameyang (Dortmund) wastes a good opportunity as his pass into the box is blocked by the defence. The ball is behind the touchline and Dortmund will take a throw-in.",
"identified": "[PLAYER_Wl4EyKZk] ([TEAM_]) wastes a good opportunity as his pass into the box is blocked by the defence. The ball is behind the touchline and [TEAM_] will take a throw-in.",
"anonymized": "[PLAYER] ([TEAM]) wastes a good opportunity as his pass into the box is blocked by the defence. The ball is behind the touchline and [TEAM] will take a throw-in.",
"visibility": "shown",
"position": "1054000"
},
{
"important": false,
"gameTime": "2 - 16:14",
"label": "",
"description": "Maxim Choupo-Moting (Schalke) sends a lofted cross into the penalty area. Unfortunately for him, the opponent's defence deals with his cross comfortably and intercepts it.",
"identified": "[PLAYER_YBBM9RBF] ([TEAM_]) sends a lofted cross into the penalty area. Unfortunately for him, the opponent's defence deals with his cross comfortably and intercepts it.",
"anonymized": "[PLAYER] ([TEAM]) sends a lofted cross into the penalty area. Unfortunately for him, the opponent's defence deals with his cross comfortably and intercepts it.",
"visibility": "shown",
"position": "974000"
},
{
"important": false,
"gameTime": "2 - 15:43",
"label": "",
"description": "Shinji Kagawa (Dortmund) swings a cross into the box, but it's far too close to Ralf Fahrmann, who smothers the ball.",
"identified": "[PLAYER_zcwd2hro] ([TEAM_]) swings a cross into the box, but it's far too close to [PLAYER_4YbnQFUo], who smothers the ball.",
"anonymized": "[PLAYER] ([TEAM]) swings a cross into the box, but it's far too close to [PLAYER], who smothers the ball.",
"visibility": "shown",
"position": "943000"
},
{
"important": true,
"gameTime": "2 - 14:58",
"label": "y-card",
"description": "This yellow card was deserved. The tackle by Franco Di Santo (Schalke) was quite harsh and Felix Brych didn't hesitate to show him a yellow card.",
"identified": "This yellow card was deserved. The tackle by [PLAYER_voOM598n] ([TEAM_]) was quite harsh and [REFEREE] didn't hesitate to show him a yellow card.",
"anonymized": "This yellow card was deserved. The tackle by [PLAYER] ([TEAM]) was quite harsh and [REFEREE] didn't hesitate to show him a yellow card.",
"visibility": "shown",
"position": "898000"
},
{
"important": false,
"gameTime": "2 - 14:35",
"label": "",
"description": "Pierre-Emerick Aubameyang (Dortmund) looks to break free, but his touch lets him down and he loses the ball.",
"identified": "[PLAYER_Wl4EyKZk] ([TEAM_]) looks to break free, but his touch lets him down and he loses the ball.",
"anonymized": "[PLAYER] ([TEAM]) looks to break free, but his touch lets him down and he loses the ball.",
"visibility": "shown",
"position": "875000"
},
{
"important": false,
"gameTime": "2 - 13:57",
"label": "corner",
"description": "Junior Caicara (Schalke) takes the corner, but he overhits it and none of his teammates are able to reach the ball.",
"identified": "[PLAYER_tvNX1Ips] ([TEAM_]) takes the corner, but he overhits it and none of his teammates are able to reach the ball.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner, but he overhits it and none of his teammates are able to reach the ball.",
"visibility": "shown",
"position": "837000"
},
{
"important": false,
"gameTime": "2 - 13:45",
"label": "",
"description": "Franco Di Santo (Schalke) flights in the cross, but the defender is alert and clears to safety. Schalke win a corner.",
"identified": "[PLAYER_voOM598n] ([TEAM_]) flights in the cross, but the defender is alert and clears to safety. [TEAM_] win a corner.",
"anonymized": "[PLAYER] ([TEAM]) flights in the cross, but the defender is alert and clears to safety. [TEAM] win a corner.",
"visibility": "shown",
"position": "825000"
},
{
"important": false,
"gameTime": "2 - 12:25",
"label": "",
"description": "Dortmund are playing possession football and controlling the game at present. They are exchanging inch-perfect passes from player to player, making it difficult for the opposition to win the ball.",
"identified": "[TEAM_] are playing possession football and controlling the game at present. They are exchanging inch-perfect passes from player to player, making it difficult for the opposition to win the ball.",
"anonymized": "[TEAM] are playing possession football and controlling the game at present. They are exchanging inch-perfect passes from player to player, making it difficult for the opposition to win the ball.",
"visibility": "shown",
"position": "745000"
},
{
"important": true,
"gameTime": "2 - 10:20",
"label": "substitution",
"description": "Andre Breitenreiter has decided to substitute Max Meyer and he is replaced by Maxim Choupo-Moting (Schalke).",
"identified": "[COACH_lhUKMQZu] has decided to substitute [PLAYER_IyOltt6H] and he is replaced by [PLAYER_YBBM9RBF] ([TEAM_]).",
"anonymized": "[COACH] has decided to substitute [PLAYER] and he is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "620000"
},
{
"important": false,
"gameTime": "2 - 09:52",
"label": "",
"description": "Shinji Kagawa (Dortmund) slaloms his way past challenges, but an opposing player does well to get the ball away. The ball is out of play. Dortmund will have a throw-in.",
"identified": "[PLAYER_zcwd2hro] ([TEAM_]) slaloms his way past challenges, but an opposing player does well to get the ball away. The ball is out of play. [TEAM_] will have a throw-in.",
"anonymized": "[PLAYER] ([TEAM]) slaloms his way past challenges, but an opposing player does well to get the ball away. The ball is out of play. [TEAM] will have a throw-in.",
"visibility": "shown",
"position": "592000"
},
{
"important": true,
"gameTime": "2 - 08:15",
"label": "",
"description": "Ralf Fahrmann pulls off a great save to deny Henrikh Mkhitaryan (Dortmund), who makes himself some space inside the box and unleashes a quick low drive to the bottom left corner.",
"identified": "[PLAYER_4YbnQFUo] pulls off a great save to deny [PLAYER_KKi1DwHC] ([TEAM_]), who makes himself some space inside the box and unleashes a quick low drive to the bottom left corner.",
"anonymized": "[PLAYER] pulls off a great save to deny [PLAYER] ([TEAM]), who makes himself some space inside the box and unleashes a quick low drive to the bottom left corner.",
"visibility": "shown",
"position": "495000"
},
{
"important": false,
"gameTime": "2 - 07:33",
"label": "",
"description": "Pierre-Emerick Aubameyang (Dortmund) is adjudged to have been offside when making his run.",
"identified": "[PLAYER_Wl4EyKZk] ([TEAM_]) is adjudged to have been offside when making his run.",
"anonymized": "[PLAYER] ([TEAM]) is adjudged to have been offside when making his run.",
"visibility": "shown",
"position": "453000"
},
{
"important": false,
"gameTime": "2 - 06:42",
"label": "",
"description": "Dortmund are showcasing great team work by exchanging some short passes and one-two passes, waiting to open the opposition's defence and hit them swiftly on the break.",
"identified": "[TEAM_] are showcasing great team work by exchanging some short passes and one-two passes, waiting to open the opposition's defence and hit them swiftly on the break.",
"anonymized": "[TEAM] are showcasing great team work by exchanging some short passes and one-two passes, waiting to open the opposition's defence and hit them swiftly on the break.",
"visibility": "shown",
"position": "402000"
},
{
"important": false,
"gameTime": "2 - 06:25",
"label": "",
"description": "Leon Goretzka (Schalke) sends a promising through ball, but the defence is alert and cuts out the pass.",
"identified": "[PLAYER_l2JpsMjB] ([TEAM_]) sends a promising through ball, but the defence is alert and cuts out the pass.",
"anonymized": "[PLAYER] ([TEAM]) sends a promising through ball, but the defence is alert and cuts out the pass.",
"visibility": "shown",
"position": "385000"
},
{
"important": true,
"gameTime": "2 - 05:05",
"label": "",
"description": "Ilkay Gundogan (Dortmund) latches on to a precise defence-splitting pass and fires a nice strike from a promising distance towards the left post. Ralf Fahrmann has a clear sight of it and makes a comfortable save.",
"identified": "[PLAYER_hCQ7jhL3] ([TEAM_]) latches on to a precise defence-splitting pass and fires a nice strike from a promising distance towards the left post. [PLAYER_4YbnQFUo] has a clear sight of it and makes a comfortable save.",
"anonymized": "[PLAYER] ([TEAM]) latches on to a precise defence-splitting pass and fires a nice strike from a promising distance towards the left post. [PLAYER] has a clear sight of it and makes a comfortable save.",
"visibility": "shown",
"position": "305000"
},
{
"important": false,
"gameTime": "2 - 04:35",
"label": "",
"description": "Ralf Fahrmann is alert and has a clear sight of a long through ball from Shinji Kagawa (Dortmund). Easy save!",
"identified": "[PLAYER_4YbnQFUo] is alert and has a clear sight of a long through ball from [PLAYER_zcwd2hro] ([TEAM_]). Easy save!",
"anonymized": "[PLAYER] is alert and has a clear sight of a long through ball from [PLAYER] ([TEAM]). Easy save!",
"visibility": "shown",
"position": "275000"
},
{
"important": false,
"gameTime": "2 - 03:52",
"label": "",
"description": "Ilkay Gundogan (Dortmund) receives a pass and unleashes a shot which goes well wide of the right post.",
"identified": "[PLAYER_hCQ7jhL3] ([TEAM_]) receives a pass and unleashes a shot which goes well wide of the right post.",
"anonymized": "[PLAYER] ([TEAM]) receives a pass and unleashes a shot which goes well wide of the right post.",
"visibility": "shown",
"position": "232000"
},
{
"important": true,
"gameTime": "2 - 02:59",
"label": "y-card",
"description": "Pierre-Emerick Aubameyang (Dortmund) picks up a yellow card.",
"identified": "[PLAYER_Wl4EyKZk] ([TEAM_]) picks up a yellow card.",
"anonymized": "[PLAYER] ([TEAM]) picks up a yellow card.",
"visibility": "shown",
"position": "179000"
},
{
"important": true,
"gameTime": "2 - 01:59",
"label": "soccer-ball",
"description": "Goal! Gonzalo Castro displays great vision and sends a pass to Pierre-Emerick Aubameyang (Dortmund), who shows brilliant composure inside the box to bury the ball into the bottom right corner. The score is 3:1.",
"identified": "Goal! [PLAYER_tWNcwyFS] displays great vision and sends a pass to [PLAYER_Wl4EyKZk] ([TEAM_]), who shows brilliant composure inside the box to bury the ball into the bottom right corner. The score is 3:1.",
"anonymized": "Goal! [PLAYER] displays great vision and sends a pass to [PLAYER] ([TEAM]), who shows brilliant composure inside the box to bury the ball into the bottom right corner. The score is 3:1.",
"visibility": "shown",
"position": "119000"
},
{
"important": true,
"gameTime": "2 - 01:34",
"label": "",
"description": "Close effort! Ilkay Gundogan (Dortmund) takes the resulting free kick from a promising distance, but he sends it narrowly wide of the right post.",
"identified": "Close effort! [PLAYER_hCQ7jhL3] ([TEAM_]) takes the resulting free kick from a promising distance, but he sends it narrowly wide of the right post.",
"anonymized": "Close effort! [PLAYER] ([TEAM]) takes the resulting free kick from a promising distance, but he sends it narrowly wide of the right post.",
"visibility": "shown",
"position": "94000"
},
{
"important": false,
"gameTime": "2 - 01:28",
"label": "",
"description": "Dortmund are awarded a free kick from a dangerous position.",
"identified": "[TEAM_] are awarded a free kick from a dangerous position.",
"anonymized": "[TEAM] are awarded a free kick from a dangerous position.",
"visibility": "shown",
"position": "88000"
},
{
"important": true,
"gameTime": "2 - 00:57",
"label": "y-card",
"description": "Felix Brych shows a yellow card to Junior Caicara (Schalke) for his blatant foul.",
"identified": "[REFEREE] shows a yellow card to [PLAYER_tvNX1Ips] ([TEAM_]) for his blatant foul.",
"anonymized": "[REFEREE] shows a yellow card to [PLAYER] ([TEAM]) for his blatant foul.",
"visibility": "shown",
"position": "57000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "whistle",
"description": "The second half has just started.",
"identified": "The second half has just started.",
"anonymized": "The second half has just started.",
"visibility": "shown",
"position": "1000"
},
{
"important": false,
"gameTime": "1 - 46:59",
"label": "",
"description": "The players of both teams deserve praise from their managers and supporters for their performance on the pitch. If they continue playing this attractive football, the fans will surely be satisfied. The hosts dominated much of the first period. The home team are playing possession football, while the away team look to find a weakness in the opposition's defence mainly with their rapid counter-attacks.",
"identified": "The players of both teams deserve praise from their managers and supporters for their performance on the pitch. If they continue playing this attractive football, the fans will surely be satisfied. The hosts dominated much of the first period. The home team are playing possession football, while the away team look to find a weakness in the opposition's defence mainly with their rapid counter-attacks.",
"anonymized": "The players of both teams deserve praise from their managers and supporters for their performance on the pitch. If they continue playing this attractive football, the fans will surely be satisfied. The hosts dominated much of the first period. The home team are playing possession football, while the away team look to find a weakness in the opposition's defence mainly with their rapid counter-attacks.",
"visibility": "shown",
"position": "2819000"
},
{
"important": true,
"gameTime": "1 - 46:12",
"label": "whistle",
"description": "There will be nothing more to see in the first half. The whistle blowing of Felix Brych has ended it.",
"identified": "There will be nothing more to see in the first half. The whistle blowing of [REFEREE] has ended it.",
"anonymized": "There will be nothing more to see in the first half. The whistle blowing of [REFEREE] has ended it.",
"visibility": "shown",
"position": "2772000"
},
{
"important": false,
"gameTime": "1 - 45:55",
"label": "",
"description": "The ball is cleared after Leroy Sane (Schalke) attempted to dribble past an opposing player.",
"identified": "The ball is cleared after [PLAYER_GlTyfr8U] ([TEAM_]) attempted to dribble past an opposing player.",
"anonymized": "The ball is cleared after [PLAYER] ([TEAM]) attempted to dribble past an opposing player.",
"visibility": "shown",
"position": "2755000"
},
{
"important": false,
"gameTime": "2 - 00:00",
"label": "time",
"description": "1 additional min. will be played.",
"identified": "1 additional min. will be played.",
"anonymized": "1 additional min. will be played.",
"visibility": "shown",
"position": "0"
},
{
"important": true,
"gameTime": "1 - 42:59",
"label": "soccer-ball",
"description": "Matthias Ginter (Dortmund) outjumps the defenders inside the six-yard box to meet the corner and scores with a header into the middle of the goal. The keeper had no chance to react. The score is now 2:1.",
"identified": "[PLAYER_27fpNoQk] ([TEAM_]) outjumps the defenders inside the six-yard box to meet the corner and scores with a header into the middle of the goal. The keeper had no chance to react. The score is now 2:1.",
"anonymized": "[PLAYER] ([TEAM]) outjumps the defenders inside the six-yard box to meet the corner and scores with a header into the middle of the goal. The keeper had no chance to react. The score is now 2:1.",
"visibility": "shown",
"position": "2579000"
},
{
"important": false,
"gameTime": "1 - 42:23",
"label": "corner",
"description": "Henrikh Mkhitaryan (Dortmund) looks like he will be the one to take the corner kick.",
"identified": "[PLAYER_KKi1DwHC] ([TEAM_]) looks like he will be the one to take the corner kick.",
"anonymized": "[PLAYER] ([TEAM]) looks like he will be the one to take the corner kick.",
"visibility": "shown",
"position": "2543000"
},
{
"important": true,
"gameTime": "1 - 42:11",
"label": "",
"description": "Marcel Schmelzer (Dortmund) tries to send the ball in front of the goal, but the opposition's defence averts the threat. Now Dortmund have a corner.",
"identified": "[PLAYER_n3VwNCjb] ([TEAM_]) tries to send the ball in front of the goal, but the opposition's defence averts the threat. Now [TEAM_] have a corner.",
"anonymized": "[PLAYER] ([TEAM]) tries to send the ball in front of the goal, but the opposition's defence averts the threat. Now [TEAM] have a corner.",
"visibility": "shown",
"position": "2531000"
},
{
"important": false,
"gameTime": "1 - 41:39",
"label": "",
"description": "Marcel Schmelzer (Dortmund) swings a cross into the box, but it's far too close to Ralf Fahrmann, who smothers the ball.",
"identified": "[PLAYER_n3VwNCjb] ([TEAM_]) swings a cross into the box, but it's far too close to [PLAYER_4YbnQFUo], who smothers the ball.",
"anonymized": "[PLAYER] ([TEAM]) swings a cross into the box, but it's far too close to [PLAYER], who smothers the ball.",
"visibility": "shown",
"position": "2499000"
},
{
"important": false,
"gameTime": "1 - 40:16",
"label": "",
"description": "Max Meyer (Schalke) finds himself beyond the last defender, but the game is stopped by the referee after the linesman signals for offside.",
"identified": "[PLAYER_IyOltt6H] ([TEAM_]) finds himself beyond the last defender, but the game is stopped by the referee after the linesman signals for offside.",
"anonymized": "[PLAYER] ([TEAM]) finds himself beyond the last defender, but the game is stopped by the referee after the linesman signals for offside.",
"visibility": "shown",
"position": "2416000"
},
{
"important": false,
"gameTime": "1 - 39:02",
"label": "",
"description": "Some patient build-up play from Schalke as they look to unlock the defence.",
"identified": "Some patient build-up play from [TEAM_] as they look to unlock the defence.",
"anonymized": "Some patient build-up play from [TEAM] as they look to unlock the defence.",
"visibility": "shown",
"position": "2342000"
},
{
"important": false,
"gameTime": "1 - 38:45",
"label": "",
"description": "Ilkay Gundogan (Dortmund) sends a long ball across the pitch, but it misses its target. It's a throw-in for Schalke.",
"identified": "[PLAYER_hCQ7jhL3] ([TEAM_]) sends a long ball across the pitch, but it misses its target. It's a throw-in for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) sends a long ball across the pitch, but it misses its target. It's a throw-in for [TEAM].",
"visibility": "shown",
"position": "2325000"
},
{
"important": true,
"gameTime": "1 - 37:42",
"label": "y-card",
"description": "What was Leon Goretzka (Schalke) thinking? He will not get away with that. The referee shows him a yellow card.",
"identified": "What was [PLAYER_l2JpsMjB] ([TEAM_]) thinking? He will not get away with that. The referee shows him a yellow card.",
"anonymized": "What was [PLAYER] ([TEAM]) thinking? He will not get away with that. The referee shows him a yellow card.",
"visibility": "shown",
"position": "2262000"
},
{
"important": true,
"gameTime": "1 - 37:01",
"label": "",
"description": "Matthias Ginter (Dortmund) receives a lofted pass in the goal area and unleashes a dangerous header which sails a few inches over the bar!",
"identified": "[PLAYER_27fpNoQk] ([TEAM_]) receives a lofted pass in the goal area and unleashes a dangerous header which sails a few inches over the bar!",
"anonymized": "[PLAYER] ([TEAM]) receives a lofted pass in the goal area and unleashes a dangerous header which sails a few inches over the bar!",
"visibility": "shown",
"position": "2221000"
},
{
"important": false,
"gameTime": "1 - 36:44",
"label": "corner",
"description": "Henrikh Mkhitaryan (Dortmund) takes a short corner kick.",
"identified": "[PLAYER_KKi1DwHC] ([TEAM_]) takes a short corner kick.",
"anonymized": "[PLAYER] ([TEAM]) takes a short corner kick.",
"visibility": "shown",
"position": "2204000"
},
{
"important": false,
"gameTime": "1 - 36:10",
"label": "",
"description": "Ilkay Gundogan (Dortmund) attempts to find one of his teammates with a ball from a free kick outside the box. The goalkeeper climbs high above all the players in the box to intercept the cross and snuff out the opportunity. The referee and his assistant both point at the corner flag. Dortmund will have an opportunity to threaten the opposition's goal.",
"identified": "[PLAYER_hCQ7jhL3] ([TEAM_]) attempts to find one of his teammates with a ball from a free kick outside the box. The goalkeeper climbs high above all the players in the box to intercept the cross and snuff out the opportunity. The referee and his assistant both point at the corner flag. [TEAM_] will have an opportunity to threaten the opposition's goal.",
"anonymized": "[PLAYER] ([TEAM]) attempts to find one of his teammates with a ball from a free kick outside the box. The goalkeeper climbs high above all the players in the box to intercept the cross and snuff out the opportunity. The referee and his assistant both point at the corner flag. [TEAM] will have an opportunity to threaten the opposition's goal.",
"visibility": "shown",
"position": "2170000"
},
{
"important": false,
"gameTime": "1 - 36:04",
"label": "",
"description": "Dennis Aogo (Schalke) makes a rough challenge and Felix Brych blows his whistle for a foul. Dortmund earn a free kick which could lead to a goal-scoring opportunity.",
"identified": "[PLAYER_UTXrgukF] ([TEAM_]) makes a rough challenge and [REFEREE] blows his whistle for a foul. [TEAM_] earn a free kick which could lead to a goal-scoring opportunity.",
"anonymized": "[PLAYER] ([TEAM]) makes a rough challenge and [REFEREE] blows his whistle for a foul. [TEAM] earn a free kick which could lead to a goal-scoring opportunity.",
"visibility": "shown",
"position": "2164000"
},
{
"important": true,
"gameTime": "1 - 34:44",
"label": "",
"description": "What an opportunity! Ilkay Gundogan (Dortmund) picked the ball up and fired a projectile of a shot from long range which threatened the goalkeeper. The shot went painfully close to the right post!",
"identified": "What an opportunity! [PLAYER_hCQ7jhL3] ([TEAM_]) picked the ball up and fired a projectile of a shot from long range which threatened the goalkeeper. The shot went painfully close to the right post!",
"anonymized": "What an opportunity! [PLAYER] ([TEAM]) picked the ball up and fired a projectile of a shot from long range which threatened the goalkeeper. The shot went painfully close to the right post!",
"visibility": "shown",
"position": "2084000"
},
{
"important": false,
"gameTime": "1 - 34:37",
"label": "",
"description": "Dortmund keep possession of the ball by producing short passes and one-two passes from player to player.",
"identified": "[TEAM_] keep possession of the ball by producing short passes and one-two passes from player to player.",
"anonymized": "[TEAM] keep possession of the ball by producing short passes and one-two passes from player to player.",
"visibility": "shown",
"position": "2077000"
},
{
"important": false,
"gameTime": "1 - 33:07",
"label": "",
"description": "Leroy Sane (Schalke) slides a pass forward, but one of the defenders cuts it out.",
"identified": "[PLAYER_GlTyfr8U] ([TEAM_]) slides a pass forward, but one of the defenders cuts it out.",
"anonymized": "[PLAYER] ([TEAM]) slides a pass forward, but one of the defenders cuts it out.",
"visibility": "shown",
"position": "1987000"
},
{
"important": true,
"gameTime": "1 - 32:27",
"label": "soccer-ball",
"description": "Goal! Leroy Sane puts the ball on a plate for Klaas-Jan Huntelaar (Schalke), who scores with a simple close-range finish. It's 1:1.",
"identified": "Goal! [PLAYER_GlTyfr8U] puts the ball on a plate for [PLAYER_QqVZuTYl] ([TEAM_]), who scores with a simple close-range finish. It's 1:1.",
"anonymized": "Goal! [PLAYER] puts the ball on a plate for [PLAYER] ([TEAM]), who scores with a simple close-range finish. It's 1:1.",
"visibility": "shown",
"position": "1947000"
},
{
"important": false,
"gameTime": "1 - 31:25",
"label": "",
"description": "Max Meyer (Schalke) races towards goal but the defender gets back well to make a challenge. The referee and the linesman both signal a throw-in for Dortmund.",
"identified": "[PLAYER_IyOltt6H] ([TEAM_]) races towards goal but the defender gets back well to make a challenge. The referee and the linesman both signal a throw-in for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) races towards goal but the defender gets back well to make a challenge. The referee and the linesman both signal a throw-in for [TEAM].",
"visibility": "shown",
"position": "1885000"
},
{
"important": true,
"gameTime": "1 - 29:50",
"label": "soccer-ball",
"description": "Matthias Ginter produces a beautiful lofted cross into the box, where Shinji Kagawa (Dortmund) rises high to head the ball into the left side of the goal and beyond the goalkeeper. He makes it 1:0.",
"identified": "[PLAYER_27fpNoQk] produces a beautiful lofted cross into the box, where [PLAYER_zcwd2hro] ([TEAM_]) rises high to head the ball into the left side of the goal and beyond the goalkeeper. He makes it 1:0.",
"anonymized": "[PLAYER] produces a beautiful lofted cross into the box, where [PLAYER] ([TEAM]) rises high to head the ball into the left side of the goal and beyond the goalkeeper. He makes it 1:0.",
"visibility": "shown",
"position": "1790000"
},
{
"important": false,
"gameTime": "1 - 28:54",
"label": "",
"description": "Dortmund are bossing possession of the ball and make numerous short passes, but they finally lose possession after an error.",
"identified": "[TEAM_] are bossing possession of the ball and make numerous short passes, but they finally lose possession after an error.",
"anonymized": "[TEAM] are bossing possession of the ball and make numerous short passes, but they finally lose possession after an error.",
"visibility": "shown",
"position": "1734000"
},
{
"important": false,
"gameTime": "1 - 27:46",
"label": "corner",
"description": "The resulting corner, taken by Henrikh Mkhitaryan (Dortmund), comes to nothing.",
"identified": "The resulting corner, taken by [PLAYER_KKi1DwHC] ([TEAM_]), comes to nothing.",
"anonymized": "The resulting corner, taken by [PLAYER] ([TEAM]), comes to nothing.",
"visibility": "shown",
"position": "1666000"
},
{
"important": true,
"gameTime": "1 - 27:32",
"label": "",
"description": "Pierre-Emerick Aubameyang (Dortmund) received a pass inside the box and sent a dangerous shot in on goal, but keep the champagne on ice as one of the defenders stepped in and blocked the effort. It's hard to say whether the keeper would have stopped it. Corner kick. Dortmund will have an opportunity.",
"identified": "[PLAYER_Wl4EyKZk] ([TEAM_]) received a pass inside the box and sent a dangerous shot in on goal, but keep the champagne on ice as one of the defenders stepped in and blocked the effort. It's hard to say whether the keeper would have stopped it. Corner kick. [TEAM_] will have an opportunity.",
"anonymized": "[PLAYER] ([TEAM]) received a pass inside the box and sent a dangerous shot in on goal, but keep the champagne on ice as one of the defenders stepped in and blocked the effort. It's hard to say whether the keeper would have stopped it. Corner kick. [TEAM] will have an opportunity.",
"visibility": "shown",
"position": "1652000"
},
{
"important": false,
"gameTime": "1 - 26:41",
"label": "",
"description": "Dortmund decide to take a short pass from the free kick and the attacking effort continues.",
"identified": "[TEAM_] decide to take a short pass from the free kick and the attacking effort continues.",
"anonymized": "[TEAM] decide to take a short pass from the free kick and the attacking effort continues.",
"visibility": "shown",
"position": "1601000"
},
{
"important": false,
"gameTime": "1 - 26:28",
"label": "",
"description": "Dangerous play by Leon Goretzka (Schalke). Felix Brych blows his whistle for a foul. Dortmund earn a free kick.",
"identified": "Dangerous play by [PLAYER_l2JpsMjB] ([TEAM_]). [REFEREE] blows his whistle for a foul. [TEAM_] earn a free kick.",
"anonymized": "Dangerous play by [PLAYER] ([TEAM]). [REFEREE] blows his whistle for a foul. [TEAM] earn a free kick.",
"visibility": "shown",
"position": "1588000"
},
{
"important": false,
"gameTime": "1 - 25:19",
"label": "",
"description": "Matthias Ginter (Dortmund) sends a beautiful cross into the penalty area, but the opposition's defence manages to clear the ball to safety.",
"identified": "[PLAYER_27fpNoQk] ([TEAM_]) sends a beautiful cross into the penalty area, but the opposition's defence manages to clear the ball to safety.",
"anonymized": "[PLAYER] ([TEAM]) sends a beautiful cross into the penalty area, but the opposition's defence manages to clear the ball to safety.",
"visibility": "shown",
"position": "1519000"
},
{
"important": false,
"gameTime": "1 - 24:28",
"label": "",
"description": "Franco Di Santo (Schalke) skips past his man but can't keep the ball in play. The ball goes out of play and Dortmund will have a goal kick.",
"identified": "[PLAYER_voOM598n] ([TEAM_]) skips past his man but can't keep the ball in play. The ball goes out of play and [TEAM_] will have a goal kick.",
"anonymized": "[PLAYER] ([TEAM]) skips past his man but can't keep the ball in play. The ball goes out of play and [TEAM] will have a goal kick.",
"visibility": "shown",
"position": "1468000"
},
{
"important": false,
"gameTime": "1 - 23:19",
"label": "",
"description": "Leroy Sane (Schalke) goes on a solo run, but he fails to create a chance as an opposition player blocks him.",
"identified": "[PLAYER_GlTyfr8U] ([TEAM_]) goes on a solo run, but he fails to create a chance as an opposition player blocks him.",
"anonymized": "[PLAYER] ([TEAM]) goes on a solo run, but he fails to create a chance as an opposition player blocks him.",
"visibility": "shown",
"position": "1399000"
},
{
"important": false,
"gameTime": "1 - 21:56",
"label": "",
"description": "Dennis Aogo (Schalke) sends in a lofted cross from a mid-range free kick, but his poor effort goes out of play. The ball is off of the pitch and it's a goal kick for Dortmund.",
"identified": "[PLAYER_UTXrgukF] ([TEAM_]) sends in a lofted cross from a mid-range free kick, but his poor effort goes out of play. The ball is off of the pitch and it's a goal kick for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) sends in a lofted cross from a mid-range free kick, but his poor effort goes out of play. The ball is off of the pitch and it's a goal kick for [TEAM].",
"visibility": "shown",
"position": "1316000"
},
{
"important": false,
"gameTime": "1 - 20:28",
"label": "",
"description": "Pierre-Emerick Aubameyang (Dortmund) attempts to find one of his teammates, but puts far too much on the pass and the chance is gone. The ball is off of the pitch and it's a goal kick for Schalke.",
"identified": "[PLAYER_Wl4EyKZk] ([TEAM_]) attempts to find one of his teammates, but puts far too much on the pass and the chance is gone. The ball is off of the pitch and it's a goal kick for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) attempts to find one of his teammates, but puts far too much on the pass and the chance is gone. The ball is off of the pitch and it's a goal kick for [TEAM].",
"visibility": "shown",
"position": "1228000"
},
{
"important": true,
"gameTime": "1 - 19:10",
"label": "",
"description": "Leroy Sane (Schalke) comes close to scoring. He peels away from his marker and gets on the end of a cross from Dennis Aogo, but he hits a shot just wide of the left post.",
"identified": "[PLAYER_GlTyfr8U] ([TEAM_]) comes close to scoring. He peels away from his marker and gets on the end of a cross from [PLAYER_UTXrgukF], but he hits a shot just wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) comes close to scoring. He peels away from his marker and gets on the end of a cross from [PLAYER], but he hits a shot just wide of the left post.",
"visibility": "shown",
"position": "1150000"
},
{
"important": false,
"gameTime": "1 - 18:27",
"label": "",
"description": "Marcel Schmelzer (Dortmund) sends a teasing cross into the area, but Ralf Fahrmann intercepts the ball.",
"identified": "[PLAYER_n3VwNCjb] ([TEAM_]) sends a teasing cross into the area, but [PLAYER_4YbnQFUo] intercepts the ball.",
"anonymized": "[PLAYER] ([TEAM]) sends a teasing cross into the area, but [PLAYER] intercepts the ball.",
"visibility": "shown",
"position": "1107000"
},
{
"important": false,
"gameTime": "1 - 17:52",
"label": "",
"description": "Dortmund exchange some short passes over a small area and control the game. Now they make a mistake and lose the ball and the whole situation changes completely.",
"identified": "[TEAM_] exchange some short passes over a small area and control the game. Now they make a mistake and lose the ball and the whole situation changes completely.",
"anonymized": "[TEAM] exchange some short passes over a small area and control the game. Now they make a mistake and lose the ball and the whole situation changes completely.",
"visibility": "shown",
"position": "1072000"
},
{
"important": false,
"gameTime": "1 - 16:38",
"label": "",
"description": "Dortmund try to speed play up by taking a quick free kick.",
"identified": "[TEAM_] try to speed play up by taking a quick free kick.",
"anonymized": "[TEAM] try to speed play up by taking a quick free kick.",
"visibility": "shown",
"position": "998000"
},
{
"important": false,
"gameTime": "1 - 16:31",
"label": "",
"description": "Foul! Dennis Aogo (Schalke) is penalised for pulling back his opponent. Dortmund get a free kick.",
"identified": "Foul! [PLAYER_UTXrgukF] ([TEAM_]) is penalised for pulling back his opponent. [TEAM_] get a free kick.",
"anonymized": "Foul! [PLAYER] ([TEAM]) is penalised for pulling back his opponent. [TEAM] get a free kick.",
"visibility": "shown",
"position": "991000"
},
{
"important": false,
"gameTime": "1 - 15:45",
"label": "",
"description": "A pass from Sead Kolasinac (Schalke) is intercepted by Roman Burki and the move breaks down.",
"identified": "A pass from [PLAYER_8xFYnbEi] ([TEAM_]) is intercepted by [PLAYER_x6gzWUIk] and the move breaks down.",
"anonymized": "A pass from [PLAYER] ([TEAM]) is intercepted by [PLAYER] and the move breaks down.",
"visibility": "shown",
"position": "945000"
},
{
"important": false,
"gameTime": "1 - 15:25",
"label": "",
"description": "Dennis Aogo (Schalke) delivers a lovely cross into the penalty area. Nevertheless, an opposition defender is alert and averts the danger with a brilliant clearance.",
"identified": "[PLAYER_UTXrgukF] ([TEAM_]) delivers a lovely cross into the penalty area. Nevertheless, an opposition defender is alert and averts the danger with a brilliant clearance.",
"anonymized": "[PLAYER] ([TEAM]) delivers a lovely cross into the penalty area. Nevertheless, an opposition defender is alert and averts the danger with a brilliant clearance.",
"visibility": "shown",
"position": "925000"
},
{
"important": false,
"gameTime": "1 - 14:26",
"label": "",
"description": "Schalke are showing great team chemistry. They are passing the ball around seamlessly.",
"identified": "[TEAM_] are showing great team chemistry. They are passing the ball around seamlessly.",
"anonymized": "[TEAM] are showing great team chemistry. They are passing the ball around seamlessly.",
"visibility": "shown",
"position": "866000"
},
{
"important": false,
"gameTime": "1 - 13:44",
"label": "",
"description": "Ilkay Gundogan (Dortmund) sends a cross into the box, but Ralf Fahrmann comes off his line to gather the ball.",
"identified": "[PLAYER_hCQ7jhL3] ([TEAM_]) sends a cross into the box, but [PLAYER_4YbnQFUo] comes off his line to gather the ball.",
"anonymized": "[PLAYER] ([TEAM]) sends a cross into the box, but [PLAYER] comes off his line to gather the ball.",
"visibility": "shown",
"position": "824000"
},
{
"important": false,
"gameTime": "1 - 12:24",
"label": "",
"description": "Matthias Ginter (Dortmund) fails to find any of his teammates inside the box as his pass is blocked.",
"identified": "[PLAYER_27fpNoQk] ([TEAM_]) fails to find any of his teammates inside the box as his pass is blocked.",
"anonymized": "[PLAYER] ([TEAM]) fails to find any of his teammates inside the box as his pass is blocked.",
"visibility": "shown",
"position": "744000"
},
{
"important": false,
"gameTime": "1 - 11:59",
"label": "",
"description": "One of the defenders reacts at the last minute to brilliantly block a pass from Matthias Ginter (Dortmund). The ball is out of play. Dortmund will take a throw-in.",
"identified": "One of the defenders reacts at the last minute to brilliantly block a pass from [PLAYER_27fpNoQk] ([TEAM_]). The ball is out of play. [TEAM_] will take a throw-in.",
"anonymized": "One of the defenders reacts at the last minute to brilliantly block a pass from [PLAYER] ([TEAM]). The ball is out of play. [TEAM] will take a throw-in.",
"visibility": "shown",
"position": "719000"
},
{
"important": false,
"gameTime": "1 - 11:31",
"label": "",
"description": "Dennis Aogo (Schalke) sends a long crossfield pass searching out one of his teammates, but his effort comes to nothing and they lose possession.",
"identified": "[PLAYER_UTXrgukF] ([TEAM_]) sends a long crossfield pass searching out one of his teammates, but his effort comes to nothing and they lose possession.",
"anonymized": "[PLAYER] ([TEAM]) sends a long crossfield pass searching out one of his teammates, but his effort comes to nothing and they lose possession.",
"visibility": "shown",
"position": "691000"
},
{
"important": false,
"gameTime": "1 - 10:33",
"label": "",
"description": "Ilkay Gundogan (Dortmund) shows his brilliant passing ability after picking out Matthias Ginter with a fine lofted pass.",
"identified": "[PLAYER_hCQ7jhL3] ([TEAM_]) shows his brilliant passing ability after picking out [PLAYER_27fpNoQk] with a fine lofted pass.",
"anonymized": "[PLAYER] ([TEAM]) shows his brilliant passing ability after picking out [PLAYER] with a fine lofted pass.",
"visibility": "shown",
"position": "633000"
}
]
} |