File size: 52,397 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 |
{
"timestamp": "1489779000",
"score": "1 - 0",
"round": "25",
"teams": [
"Dortmund",
"Ingolstadt"
],
"lineup": {
"home": {
"tactic": "1-3-4-2-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": "14' Aubameyang P. (Schmelzer M.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"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": "6",
"time": "83'",
"description": "Merino M.",
"linked_player_hash": "QFt86bm1"
}
],
"lineup": 6,
"starting": true,
"long_name": "Gonzalo Castro"
},
{
"hash": "SCOMojXE",
"name": "Durm E.",
"captain": "",
"detail_link": "/player/durm-erik/SCOMojXE/",
"short_name": "Durm",
"shirt_number": "37",
"country": "Germany",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Erik Durm"
},
{
"hash": "27fpNoQk",
"name": "Ginter M.",
"captain": "",
"detail_link": "/player/ginter-matthias/27fpNoQk/",
"short_name": "Ginter",
"shirt_number": "28",
"country": "Germany",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Matthias Ginter"
},
{
"hash": "ImhgOoOl",
"name": "Guerreiro R.",
"captain": "",
"detail_link": "/player/guerreiro-raphael/ImhgOoOl/",
"short_name": "Guerreiro",
"shirt_number": "13",
"country": "Portugal",
"facts": [
{
"type": "6",
"time": "56'",
"description": "Weigl J.",
"linked_player_hash": "2wwMMwAa"
}
],
"lineup": 7,
"starting": true,
"long_name": "Raphael Guerreiro"
},
{
"hash": "zcwd2hro",
"name": "Kagawa S.",
"captain": "",
"detail_link": "/player/kagawa-shinji/zcwd2hro/",
"short_name": "Kagawa",
"shirt_number": "23",
"country": "Japan",
"facts": [],
"lineup": 10,
"starting": true,
"long_name": "Shinji Kagawa"
},
{
"hash": "AZgM33p0",
"name": "Piszczek L.",
"captain": "",
"detail_link": "/player/piszczek-lukasz/AZgM33p0/",
"short_name": "Piszczek",
"shirt_number": "26",
"country": "Poland",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Lukasz Piszczek"
},
{
"hash": "vTuaEfRq",
"name": "Pulisic C.",
"captain": "",
"detail_link": "/player/pulisic-christian/vTuaEfRq/",
"short_name": "Pulisic",
"shirt_number": "22",
"country": "USA",
"facts": [
{
"type": "6",
"time": "77'",
"description": "Schurrle A.",
"linked_player_hash": "SUtZhkKF"
}
],
"lineup": 9,
"starting": true,
"long_name": "Christian Pulisic"
},
{
"hash": "n3VwNCjb",
"name": "Schmelzer M.",
"captain": "(C)",
"detail_link": "/player/schmelzer-marcel/n3VwNCjb/",
"short_name": "Schmelzer",
"shirt_number": "29",
"country": "Germany",
"facts": [
{
"type": "8",
"time": "14' Aubameyang P. (Schmelzer M.)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "1",
"time": "90' Schmelzer M. (Foul)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 8,
"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": "8K4WA9Gh",
"name": "Bartra M.",
"captain": "",
"detail_link": "/player/bartra-marc/8K4WA9Gh/",
"short_name": "Bartra",
"shirt_number": "5",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Marc Bartra"
},
{
"hash": "QFt86bm1",
"name": "Merino M.",
"captain": "",
"detail_link": "/player/merino-mikel/QFt86bm1/",
"short_name": "Merino",
"shirt_number": "24",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "83'",
"description": "Castro G.",
"linked_player_hash": "tWNcwyFS"
}
],
"lineup": null,
"starting": false,
"long_name": "Mikel Merino"
},
{
"hash": "Kd02fMXo",
"name": "Mor E.",
"captain": "",
"detail_link": "/player/mor-emre/Kd02fMXo/",
"short_name": "Mor",
"shirt_number": "9",
"country": "Turkey",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Emre Mor"
},
{
"hash": "rHIRgwGG",
"name": "Passlack F.",
"captain": "",
"detail_link": "/player/passlack-felix/rHIRgwGG/",
"short_name": "Passlack",
"shirt_number": "30",
"country": "Germany",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Felix Passlack"
},
{
"hash": "SUtZhkKF",
"name": "Schurrle A.",
"captain": "",
"detail_link": "/player/schurrle-andre/SUtZhkKF/",
"short_name": "Schurrle",
"shirt_number": "21",
"country": "Germany",
"facts": [
{
"type": "7",
"time": "77'",
"description": "Pulisic C.",
"linked_player_hash": "vTuaEfRq"
}
],
"lineup": null,
"starting": false,
"long_name": "Andre Schurrle"
},
{
"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"
},
{
"hash": "2wwMMwAa",
"name": "Weigl J.",
"captain": "",
"detail_link": "/player/weigl-julian/2wwMMwAa/",
"short_name": "Weigl",
"shirt_number": "33",
"country": "Germany",
"facts": [
{
"type": "7",
"time": "56'",
"description": "Guerreiro R.",
"linked_player_hash": "ImhgOoOl"
}
],
"lineup": null,
"starting": false,
"long_name": "Julian Weigl"
}
],
"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-3-4-3",
"players": [
{
"hash": "xrPtWcsn",
"name": "Bregerie R.",
"captain": "",
"detail_link": "/player/bregerie-romain/xrPtWcsn/",
"short_name": "Bregerie",
"shirt_number": "18",
"country": "France",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Romain Bregerie"
},
{
"hash": "nHxuEsaU",
"name": "Cohen A.",
"captain": "",
"detail_link": "/player/cohen-almog/nHxuEsaU/",
"short_name": "Cohen",
"shirt_number": "36",
"country": "Israel",
"facts": [
{
"type": "6",
"time": "83'",
"description": "Multhaup M.",
"linked_player_hash": "QiOaFdNi"
}
],
"lineup": 6,
"starting": true,
"long_name": "Almog Cohen"
},
{
"hash": "4vwiuzXQ",
"name": "Hadergjonaj F.",
"captain": "",
"detail_link": "/player/hadergjonaj-florent/4vwiuzXQ/",
"short_name": "Hadergjonaj",
"shirt_number": "33",
"country": "Kosovo",
"facts": [
{
"type": "1",
"time": "54' Hadergjonaj F. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 5,
"starting": true,
"long_name": "Florent Hadergjonaj"
},
{
"hash": "8CmNQlek",
"name": "Hansen M.",
"captain": "",
"detail_link": "/player/hansen-martin/8CmNQlek/",
"short_name": "Hansen",
"shirt_number": "35",
"country": "Denmark",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Martin Hansen"
},
{
"hash": "OMV1X4ah",
"name": "Kittel S.",
"captain": "",
"detail_link": "/player/kittel-sonny/OMV1X4ah/",
"short_name": "Kittel",
"shirt_number": "21",
"country": "Germany",
"facts": [
{
"type": "6",
"time": "75'",
"description": "Gross P.",
"linked_player_hash": "trpxfbO3"
}
],
"lineup": 11,
"starting": true,
"long_name": "Sonny Kittel"
},
{
"hash": "pxSEDSGF",
"name": "Leckie M.",
"captain": "",
"detail_link": "/player/leckie-mathew/pxSEDSGF/",
"short_name": "Leckie",
"shirt_number": "7",
"country": "Australia",
"facts": [],
"lineup": 9,
"starting": true,
"long_name": "Mathew Leckie"
},
{
"hash": "tCgD2xse",
"name": "Lezcano D.",
"captain": "",
"detail_link": "/player/lezcano-dario/tCgD2xse/",
"short_name": "Lezcano",
"shirt_number": "11",
"country": "Paraguay",
"facts": [
{
"type": "1",
"time": "35' Lezcano D. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 10,
"starting": true,
"long_name": "Dario Lezcano"
},
{
"hash": "dxwoWJ2g",
"name": "Matip M.",
"captain": "(C)",
"detail_link": "/player/matip-marvin/dxwoWJ2g/",
"short_name": "Matip",
"shirt_number": "34",
"country": "Cameroon",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Marvin Matip"
},
{
"hash": "pAVyD4bJ",
"name": "Morales A.",
"captain": "",
"detail_link": "/player/morales-alfredo/pAVyD4bJ/",
"short_name": "Morales",
"shirt_number": "6",
"country": "USA",
"facts": [
{
"type": "6",
"time": "90'",
"description": "Hinterseer L.",
"linked_player_hash": "fD87UpKJ"
}
],
"lineup": 7,
"starting": true,
"long_name": "Alfredo Morales"
},
{
"hash": "6wL0EhK2",
"name": "Suttner M.",
"captain": "",
"detail_link": "/player/suttner-markus/6wL0EhK2/",
"short_name": "Suttner",
"shirt_number": "29",
"country": "Austria",
"facts": [
{
"type": "1",
"time": "81' Suttner M. (Foul)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 8,
"starting": true,
"long_name": "Markus Suttner"
},
{
"hash": "A3rfsrdG",
"name": "Tisserand M.",
"captain": "",
"detail_link": "/player/tisserand-marcel/A3rfsrdG/",
"short_name": "Tisserand",
"shirt_number": "32",
"country": "DR Congo",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Marcel Tisserand"
},
{
"hash": "2qfaierQ",
"name": "Christiansen M.",
"captain": "",
"detail_link": "/player/christiansen-max/2qfaierQ/",
"short_name": "Christiansen",
"shirt_number": "19",
"country": "Germany",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Max Christiansen"
},
{
"hash": "trpxfbO3",
"name": "Gross P.",
"captain": "",
"detail_link": "/player/gross-pascal/trpxfbO3/",
"short_name": "Gross",
"shirt_number": "10",
"country": "Germany",
"facts": [
{
"type": "7",
"time": "75'",
"description": "Kittel S.",
"linked_player_hash": "OMV1X4ah"
}
],
"lineup": null,
"starting": false,
"long_name": "Pascal Gross"
},
{
"hash": "fD87UpKJ",
"name": "Hinterseer L.",
"captain": "",
"detail_link": "/player/hinterseer-lukas/fD87UpKJ/",
"short_name": "Hinterseer",
"shirt_number": "16",
"country": "Austria",
"facts": [
{
"type": "7",
"time": "90'",
"description": "Morales A.",
"linked_player_hash": "pAVyD4bJ"
}
],
"lineup": null,
"starting": false,
"long_name": "Lukas Hinterseer"
},
{
"hash": "xjjdBYsc",
"name": "Jung A.",
"captain": "",
"detail_link": "/player/jung-anthony/xjjdBYsc/",
"short_name": "Jung",
"shirt_number": "3",
"country": "Germany",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Anthony Jung"
},
{
"hash": "QiOaFdNi",
"name": "Multhaup M.",
"captain": "",
"detail_link": "/player/multhaup-maurice/QiOaFdNi/",
"short_name": "Multhaup",
"shirt_number": "31",
"country": "Germany",
"facts": [
{
"type": "7",
"time": "83'",
"description": "Cohen A.",
"linked_player_hash": "nHxuEsaU"
}
],
"lineup": null,
"starting": false,
"long_name": "Maurice Multhaup"
},
{
"hash": "UJ9btoDi",
"name": "Nyland O.",
"captain": "",
"detail_link": "/player/nyland-orjan/UJ9btoDi/",
"short_name": "Nyland",
"shirt_number": "1",
"country": "Norway",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Orjan Nyland"
},
{
"hash": "C2SxJvVd",
"name": "Roger",
"captain": "",
"detail_link": "/player/roger/C2SxJvVd/",
"short_name": "Roger",
"shirt_number": "8",
"country": "Brazil",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Roger"
}
],
"coach": [
{
"hash": "UuertaKh",
"name": "Walpurgis M.",
"captain": "",
"detail_link": "/player/walpurgis-maik/UuertaKh/",
"short_name": "Walpurgis M.",
"shirt_number": "",
"country": "Germany",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Maik Walpurgis"
}
]
}
},
"referee": [
"Siebert D."
],
"venue": [
"Signal Iduna Park (Dortmund)"
],
"attendance": [
"81 360"
],
"referee_matched": [
"Daniel Siebert"
],
"referee_found": [
"Daniel Siebert"
],
"coach_matched": [
"Maik Walpurgis",
"Thomas Tuchel"
],
"gameHomeTeam": "Dortmund",
"home": {
"name": "Dortmund",
"detail_link": "/team/dortmund/nP1i5US1",
"hash": "nP1i5US1",
"names": [
"Dortmund",
"Dortmund (Ger)",
"dortmund"
]
},
"gameAwayTeam": "Ingolstadt",
"away": {
"name": "Ingolstadt",
"detail_link": "/team/ingolstadt/ne5QkLtB",
"hash": "ne5QkLtB",
"names": [
"Ingolstadt",
"ingolstadt"
]
},
"gameDate": "17/03/2017 - 20:30",
"annotations": [
{
"important": true,
"gameTime": "2 - 49:26",
"label": "whistle",
"description": "Nothing more will happen in this game as the referee blows for full time.",
"identified": "Nothing more will happen in this game as the referee blows for full time.",
"anonymized": "Nothing more will happen in this game as the referee blows for full time.",
"visibility": "shown",
"position": "2966000"
},
{
"important": false,
"gameTime": "2 - 47:31",
"label": "",
"description": "Marcel Schmelzer (Dortmund) makes a slide tackle, but referee Daniel Siebert blows for a foul.",
"identified": "[PLAYER_n3VwNCjb] ([TEAM_]) makes a slide tackle, but referee [REFEREE] blows for a foul.",
"anonymized": "[PLAYER] ([TEAM]) makes a slide tackle, but referee [REFEREE] blows for a foul.",
"visibility": "shown",
"position": "2851000"
},
{
"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 - 44:50",
"label": "substitution",
"description": "We are about to witness a substitution. Lukas Hinterseer (Ingolstadt) is replacing Alfredo Morales.",
"identified": "We are about to witness a substitution. [PLAYER_fD87UpKJ] ([TEAM_]) is replacing [PLAYER_pAVyD4bJ].",
"anonymized": "We are about to witness a substitution. [PLAYER] ([TEAM]) is replacing [PLAYER].",
"visibility": "shown",
"position": "2690000"
},
{
"important": true,
"gameTime": "2 - 44:40",
"label": "y-card",
"description": "Marcel Schmelzer (Dortmund) is punished with a yellow card for violating the rules.",
"identified": "[PLAYER_n3VwNCjb] ([TEAM_]) is punished with a yellow card for violating the rules.",
"anonymized": "[PLAYER] ([TEAM]) is punished with a yellow card for violating the rules.",
"visibility": "shown",
"position": "2680000"
},
{
"important": false,
"gameTime": "2 - 42:42",
"label": "",
"description": "Marvin Matip (Ingolstadt) has a great chance to score from deep inside the box! He finds some space for the shot, but sends it errantly way past the left post. Very poor attempt.",
"identified": "[PLAYER_dxwoWJ2g] ([TEAM_]) has a great chance to score from deep inside the box! He finds some space for the shot, but sends it errantly way past the left post. Very poor attempt.",
"anonymized": "[PLAYER] ([TEAM]) has a great chance to score from deep inside the box! He finds some space for the shot, but sends it errantly way past the left post. Very poor attempt.",
"visibility": "shown",
"position": "2562000"
},
{
"important": true,
"gameTime": "2 - 37:59",
"label": "substitution",
"description": "Here is a change. Almog Cohen is going off and Maik Walpurgis gives the last tactical orders to Maurice Multhaup (Ingolstadt).",
"identified": "Here is a change. [PLAYER_nHxuEsaU] is going off and [COACH_UuertaKh] gives the last tactical orders to [PLAYER_QiOaFdNi] ([TEAM_]).",
"anonymized": "Here is a change. [PLAYER] is going off and [COACH] gives the last tactical orders to [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2279000"
},
{
"important": true,
"gameTime": "2 - 37:48",
"label": "substitution",
"description": "Substitution. Gonzalo Castro makes way for Mikel Merino (Dortmund).",
"identified": "Substitution. [PLAYER_tWNcwyFS] makes way for [PLAYER_QFt86bm1] ([TEAM_]).",
"anonymized": "Substitution. [PLAYER] makes way for [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2268000"
},
{
"important": true,
"gameTime": "2 - 35:57",
"label": "y-card",
"description": "Markus Suttner (Ingolstadt) is yellow-carded.",
"identified": "[PLAYER_6wL0EhK2] ([TEAM_]) is yellow-carded.",
"anonymized": "[PLAYER] ([TEAM]) is yellow-carded.",
"visibility": "shown",
"position": "2157000"
},
{
"important": false,
"gameTime": "2 - 32:43",
"label": "",
"description": "The game is interrupted. One of the players from Dortmund is cautioned for aggressive play.",
"identified": "The game is interrupted. One of the players from [TEAM_] is cautioned for aggressive play.",
"anonymized": "The game is interrupted. One of the players from [TEAM] is cautioned for aggressive play.",
"visibility": "shown",
"position": "1963000"
},
{
"important": true,
"gameTime": "2 - 31:59",
"label": "substitution",
"description": "Thomas Tuchel decides to make a substitution. Christian Pulisic will be replaced by Andre Schurrle (Dortmund).",
"identified": "[COACH_CQTUFgPk] decides to make a substitution. [PLAYER_vTuaEfRq] will be replaced by [PLAYER_SUtZhkKF] ([TEAM_]).",
"anonymized": "[COACH] decides to make a substitution. [PLAYER] will be replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1919000"
},
{
"important": false,
"gameTime": "2 - 31:02",
"label": "",
"description": "Alfredo Morales (Ingolstadt) runs through on goal, but he is flagged for offside by the linesman after failing to beat the offside trap.",
"identified": "[PLAYER_pAVyD4bJ] ([TEAM_]) runs through on goal, but he is flagged for offside by the linesman after failing to beat the offside trap.",
"anonymized": "[PLAYER] ([TEAM]) runs through on goal, but he is flagged for offside by the linesman after failing to beat the offside trap.",
"visibility": "shown",
"position": "1862000"
},
{
"important": false,
"gameTime": "2 - 30:07",
"label": "",
"description": "Sokratis (Dortmund) was too fierce in his attempt to get the ball from his opponent and Daniel Siebert blows for a foul.",
"identified": "[PLAYER_SQr6hJJR] ([TEAM_]) was too fierce in his attempt to get the ball from his opponent and [REFEREE] blows for a foul.",
"anonymized": "[PLAYER] ([TEAM]) was too fierce in his attempt to get the ball from his opponent and [REFEREE] blows for a foul.",
"visibility": "shown",
"position": "1807000"
},
{
"important": true,
"gameTime": "2 - 29:37",
"label": "substitution",
"description": "It will be a substitution. Pascal Gross (Ingolstadt) is ready to enter the pitch as Sonny Kittel walks off.",
"identified": "It will be a substitution. [PLAYER_trpxfbO3] ([TEAM_]) is ready to enter the pitch as [PLAYER_OMV1X4ah] walks off.",
"anonymized": "It will be a substitution. [PLAYER] ([TEAM]) is ready to enter the pitch as [PLAYER] walks off.",
"visibility": "shown",
"position": "1777000"
},
{
"important": false,
"gameTime": "2 - 29:17",
"label": "corner",
"description": "A horde of players are waiting inside the penalty area for a cross from the corner, but Gonzalo Castro (Dortmund) takes it short.",
"identified": "A horde of players are waiting inside the penalty area for a cross from the corner, but [PLAYER_tWNcwyFS] ([TEAM_]) takes it short.",
"anonymized": "A horde of players are waiting inside the penalty area for a cross from the corner, but [PLAYER] ([TEAM]) takes it short.",
"visibility": "shown",
"position": "1757000"
},
{
"important": false,
"gameTime": "2 - 24:48",
"label": "",
"description": "A player from Ingolstadt commits an attacking foul. The referee blows his whistle.",
"identified": "A player from [TEAM_] commits an attacking foul. The referee blows his whistle.",
"anonymized": "A player from [TEAM] commits an attacking foul. The referee blows his whistle.",
"visibility": "shown",
"position": "1488000"
},
{
"important": false,
"gameTime": "2 - 20:53",
"label": "",
"description": "Lukasz Piszczek (Dortmund) commits a minor foul to interrupt the attacking move of his opponent and is warned by the referee that he will get a yellow card if he does it again.",
"identified": "[PLAYER_AZgM33p0] ([TEAM_]) commits a minor foul to interrupt the attacking move of his opponent and is warned by the referee that he will get a yellow card if he does it again.",
"anonymized": "[PLAYER] ([TEAM]) commits a minor foul to interrupt the attacking move of his opponent and is warned by the referee that he will get a yellow card if he does it again.",
"visibility": "shown",
"position": "1253000"
},
{
"important": false,
"gameTime": "2 - 15:37",
"label": "injury",
"description": "Almog Cohen (Ingolstadt) is clearly asking for some medical attention with his painful gestures. The extent of his injury is yet to be discovered.",
"identified": "[PLAYER_nHxuEsaU] ([TEAM_]) is clearly asking for some medical attention with his painful gestures. The extent of his injury is yet to be discovered.",
"anonymized": "[PLAYER] ([TEAM]) is clearly asking for some medical attention with his painful gestures. The extent of his injury is yet to be discovered.",
"visibility": "shown",
"position": "937000"
},
{
"important": false,
"gameTime": "2 - 14:28",
"label": "",
"description": "Christian Pulisic (Dortmund) tackles a bit over-zealously and Daniel Siebert blows for a foul.",
"identified": "[PLAYER_vTuaEfRq] ([TEAM_]) tackles a bit over-zealously and [REFEREE] blows for a foul.",
"anonymized": "[PLAYER] ([TEAM]) tackles a bit over-zealously and [REFEREE] blows for a foul.",
"visibility": "shown",
"position": "868000"
},
{
"important": true,
"gameTime": "2 - 11:00",
"label": "substitution",
"description": "Substitution. Raphael Guerreiro makes his way off the pitch and Julian Weigl (Dortmund) comes on as his replacement.",
"identified": "Substitution. [PLAYER_ImhgOoOl] makes his way off the pitch and [PLAYER_2wwMMwAa] ([TEAM_]) comes on as his replacement.",
"anonymized": "Substitution. [PLAYER] makes his way off the pitch and [PLAYER] ([TEAM]) comes on as his replacement.",
"visibility": "shown",
"position": "660000"
},
{
"important": false,
"gameTime": "2 - 10:38",
"label": "",
"description": "Sokratis (Dortmund) brings his opponent down with a tackle and Daniel Siebert blows his whistle for a foul.",
"identified": "[PLAYER_SQr6hJJR] ([TEAM_]) brings his opponent down with a tackle and [REFEREE] blows his whistle for a foul.",
"anonymized": "[PLAYER] ([TEAM]) brings his opponent down with a tackle and [REFEREE] blows his whistle for a foul.",
"visibility": "shown",
"position": "638000"
},
{
"important": true,
"gameTime": "2 - 08:58",
"label": "y-card",
"description": "The referee shows the yellow card to Florent Hadergjonaj (Ingolstadt).",
"identified": "The referee shows the yellow card to [PLAYER_4vwiuzXQ] ([TEAM_]).",
"anonymized": "The referee shows the yellow card to [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "538000"
},
{
"important": true,
"gameTime": "2 - 08:23",
"label": "",
"description": "Sokratis (Dortmund) wasted a chance to score! He pinged a fine header from deep inside the box towards the net, but his aim was off and it flew narrowly wide of the right post.",
"identified": "[PLAYER_SQr6hJJR] ([TEAM_]) wasted a chance to score! He pinged a fine header from deep inside the box towards the net, but his aim was off and it flew narrowly wide of the right post.",
"anonymized": "[PLAYER] ([TEAM]) wasted a chance to score! He pinged a fine header from deep inside the box towards the net, but his aim was off and it flew narrowly wide of the right post.",
"visibility": "shown",
"position": "503000"
},
{
"important": false,
"gameTime": "2 - 08:20",
"label": "corner",
"description": "Dortmund force a corner. They send men into the box.",
"identified": "[TEAM_] force a corner. They send men into the box.",
"anonymized": "[TEAM] force a corner. They send men into the box.",
"visibility": "shown",
"position": "500000"
},
{
"important": false,
"gameTime": "2 - 04:55",
"label": "",
"description": "Christian Pulisic (Dortmund) attempts to slip the ball through the defence, but is unable to find any of his teammates.",
"identified": "[PLAYER_vTuaEfRq] ([TEAM_]) attempts to slip the ball through the defence, but is unable to find any of his teammates.",
"anonymized": "[PLAYER] ([TEAM]) attempts to slip the ball through the defence, but is unable to find any of his teammates.",
"visibility": "shown",
"position": "295000"
},
{
"important": false,
"gameTime": "2 - 00:51",
"label": "",
"description": "Mathew Leckie (Ingolstadt) squandered a huge opportunity from inside the 6-yard box. He blazed it high over the bar.",
"identified": "[PLAYER_pxSEDSGF] ([TEAM_]) squandered a huge opportunity from inside the 6-yard box. He blazed it high over the bar.",
"anonymized": "[PLAYER] ([TEAM]) squandered a huge opportunity from inside the 6-yard box. He blazed it high over the bar.",
"visibility": "shown",
"position": "51000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "whistle",
"description": "The referee blows his whistle to signal the start of the second half.",
"identified": "The referee blows his whistle to signal the start of the second half.",
"anonymized": "The referee blows his whistle to signal the start of the second half.",
"visibility": "shown",
"position": "1000"
},
{
"important": true,
"gameTime": "1 - 46:12",
"label": "whistle",
"description": "The referee blows his whistle for half-time, bringing to a close the first 45 minutes of the match.",
"identified": "The referee blows his whistle for half-time, bringing to a close the first 45 minutes of the match.",
"anonymized": "The referee blows his whistle for half-time, bringing to a close the first 45 minutes of the match.",
"visibility": "shown",
"position": "2772000"
},
{
"important": false,
"gameTime": "1 - 45:02",
"label": "",
"description": "Raphael Guerreiro (Dortmund) attempts to surprise the keeper with a nice shot, but the ball goes narrowly wide of the left post.",
"identified": "[PLAYER_ImhgOoOl] ([TEAM_]) attempts to surprise the keeper with a nice shot, but the ball goes narrowly wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) attempts to surprise the keeper with a nice shot, but the ball goes narrowly wide of the left post.",
"visibility": "shown",
"position": "2702000"
},
{
"important": false,
"gameTime": "2 - 00:00",
"label": "time",
"description": "We will have 1 min. of added time.",
"identified": "We will have 1 min. of added time.",
"anonymized": "We will have 1 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": true,
"gameTime": "1 - 38:40",
"label": "",
"description": "What a wasted opportunity by Sonny Kittel (Ingolstadt)! He creates some space for himself inside the penalty box and unleashes a decent strike towards the bottom right corner, but Roman Burki makes an astonishing save to thwart him.",
"identified": "What a wasted opportunity by [PLAYER_OMV1X4ah] ([TEAM_])! He creates some space for himself inside the penalty box and unleashes a decent strike towards the bottom right corner, but [PLAYER_x6gzWUIk] makes an astonishing save to thwart him.",
"anonymized": "What a wasted opportunity by [PLAYER] ([TEAM])! He creates some space for himself inside the penalty box and unleashes a decent strike towards the bottom right corner, but [PLAYER] makes an astonishing save to thwart him.",
"visibility": "shown",
"position": "2320000"
},
{
"important": false,
"gameTime": "1 - 36:39",
"label": "",
"description": "The referee stops play as the linesman flags Sonny Kittel (Ingolstadt) offside.",
"identified": "The referee stops play as the linesman flags [PLAYER_OMV1X4ah] ([TEAM_]) offside.",
"anonymized": "The referee stops play as the linesman flags [PLAYER] ([TEAM]) offside.",
"visibility": "shown",
"position": "2199000"
},
{
"important": true,
"gameTime": "1 - 34:52",
"label": "y-card",
"description": "The referee gives a yellow card to Dario Lezcano (Ingolstadt).",
"identified": "The referee gives a yellow card to [PLAYER_tCgD2xse] ([TEAM_]).",
"anonymized": "The referee gives a yellow card to [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2092000"
},
{
"important": false,
"gameTime": "1 - 33:31",
"label": "",
"description": "Mathew Leckie (Ingolstadt) strikes from the edge of the box, but hits it really poorly and sends the ball way over the bar.",
"identified": "[PLAYER_pxSEDSGF] ([TEAM_]) strikes from the edge of the box, but hits it really poorly and sends the ball way over the bar.",
"anonymized": "[PLAYER] ([TEAM]) strikes from the edge of the box, but hits it really poorly and sends the ball way over the bar.",
"visibility": "shown",
"position": "2011000"
},
{
"important": false,
"gameTime": "1 - 31:52",
"label": "corner",
"description": "The referee signals a corner kick to Ingolstadt.",
"identified": "The referee signals a corner kick to [TEAM_].",
"anonymized": "The referee signals a corner kick to [TEAM].",
"visibility": "shown",
"position": "1912000"
},
{
"important": false,
"gameTime": "1 - 31:39",
"label": "",
"description": "Mathew Leckie (Ingolstadt) goes on a solo run, but he fails to create a chance as an opposition player blocks him. Ingolstadt have been awarded a corner kick.",
"identified": "[PLAYER_pxSEDSGF] ([TEAM_]) goes on a solo run, but he fails to create a chance as an opposition player blocks him. [TEAM_] have been awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) goes on a solo run, but he fails to create a chance as an opposition player blocks him. [TEAM] have been awarded a corner kick.",
"visibility": "shown",
"position": "1899000"
},
{
"important": true,
"gameTime": "1 - 29:00",
"label": "",
"description": "My grandmother could have scored that! Erik Durm (Dortmund) blazed the ball just over the bar from close range!",
"identified": "My grandmother could have scored that! [PLAYER_SCOMojXE] ([TEAM_]) blazed the ball just over the bar from close range!",
"anonymized": "My grandmother could have scored that! [PLAYER] ([TEAM]) blazed the ball just over the bar from close range!",
"visibility": "shown",
"position": "1740000"
},
{
"important": true,
"gameTime": "1 - 26:34",
"label": "",
"description": "Mathew Leckie (Ingolstadt) wasted a chance to score! He pinged a fine header from deep inside the box towards the net, but his aim was off and it flew narrowly wide of the right post.",
"identified": "[PLAYER_pxSEDSGF] ([TEAM_]) wasted a chance to score! He pinged a fine header from deep inside the box towards the net, but his aim was off and it flew narrowly wide of the right post.",
"anonymized": "[PLAYER] ([TEAM]) wasted a chance to score! He pinged a fine header from deep inside the box towards the net, but his aim was off and it flew narrowly wide of the right post.",
"visibility": "shown",
"position": "1594000"
},
{
"important": false,
"gameTime": "1 - 19:20",
"label": "",
"description": "Raphael Guerreiro (Dortmund) brings his opponent down. Daniel Siebert has a clear sight of it and blows his whistle for a foul.",
"identified": "[PLAYER_ImhgOoOl] ([TEAM_]) brings his opponent down. [REFEREE] has a clear sight of it and blows his whistle for a foul.",
"anonymized": "[PLAYER] ([TEAM]) brings his opponent down. [REFEREE] has a clear sight of it and blows his whistle for a foul.",
"visibility": "shown",
"position": "1160000"
},
{
"important": true,
"gameTime": "1 - 18:20",
"label": "",
"description": "Marvin Matip (Ingolstadt) attempts to convert a lofted cross as he jumps high and heads the ball down to the middle of the goal. Roman Burki shows his brilliant reflexes and pulls off a glorious save to stop the ball from hitting the net.",
"identified": "[PLAYER_dxwoWJ2g] ([TEAM_]) attempts to convert a lofted cross as he jumps high and heads the ball down to the middle of the goal. [PLAYER_x6gzWUIk] shows his brilliant reflexes and pulls off a glorious save to stop the ball from hitting the net.",
"anonymized": "[PLAYER] ([TEAM]) attempts to convert a lofted cross as he jumps high and heads the ball down to the middle of the goal. [PLAYER] shows his brilliant reflexes and pulls off a glorious save to stop the ball from hitting the net.",
"visibility": "shown",
"position": "1100000"
},
{
"important": false,
"gameTime": "1 - 18:09",
"label": "corner",
"description": "Ingolstadt will have a chance to score from a corner kick.",
"identified": "[TEAM_] will have a chance to score from a corner kick.",
"anonymized": "[TEAM] will have a chance to score from a corner kick.",
"visibility": "shown",
"position": "1089000"
},
{
"important": false,
"gameTime": "1 - 17:49",
"label": "",
"description": "Sonny Kittel (Ingolstadt) decides to strike the ball towards goal, but his effort fails to threaten the goalkeeper after being well blocked by one of the defenders. Ingolstadt get a corner.",
"identified": "[PLAYER_OMV1X4ah] ([TEAM_]) decides to strike the ball towards goal, but his effort fails to threaten the goalkeeper after being well blocked by one of the defenders. [TEAM_] get a corner.",
"anonymized": "[PLAYER] ([TEAM]) decides to strike the ball towards goal, but his effort fails to threaten the goalkeeper after being well blocked by one of the defenders. [TEAM] get a corner.",
"visibility": "shown",
"position": "1069000"
},
{
"important": true,
"gameTime": "1 - 13:52",
"label": "soccer-ball",
"description": "It's 1:0! Marcel Schmelzer feeds Pierre-Emerick Aubameyang (Dortmund) inside the box, who is unmarked and buries the ball in the bottom left corner.",
"identified": "It's 1:0! [PLAYER_n3VwNCjb] feeds [PLAYER_Wl4EyKZk] ([TEAM_]) inside the box, who is unmarked and buries the ball in the bottom left corner.",
"anonymized": "It's 1:0! [PLAYER] feeds [PLAYER] ([TEAM]) inside the box, who is unmarked and buries the ball in the bottom left corner.",
"visibility": "shown",
"position": "832000"
},
{
"important": false,
"gameTime": "1 - 13:07",
"label": "",
"description": "Poor challenge! Almog Cohen (Ingolstadt) is penalised for tripping and Daniel Siebert blows his whistle.",
"identified": "Poor challenge! [PLAYER_nHxuEsaU] ([TEAM_]) is penalised for tripping and [REFEREE] blows his whistle.",
"anonymized": "Poor challenge! [PLAYER] ([TEAM]) is penalised for tripping and [REFEREE] blows his whistle.",
"visibility": "shown",
"position": "787000"
}
]
} |