Datasets:
File size: 73,035 Bytes
38b6321 |
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 |
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE rdf:RDF [
<!ENTITY cmns-av "https://www.omg.org/spec/Commons/AnnotationVocabulary/">
<!ENTITY cmns-cls "https://www.omg.org/spec/Commons/Classifiers/">
<!ENTITY cmns-col "https://www.omg.org/spec/Commons/Collections/">
<!ENTITY cmns-dsg "https://www.omg.org/spec/Commons/Designators/">
<!ENTITY cmns-id "https://www.omg.org/spec/Commons/Identifiers/">
<!ENTITY dct "http://purl.org/dc/terms/">
<!ENTITY fibo-be-fct-pub "https://spec.edmcouncil.org/fibo/ontology/BE/FunctionalEntities/Publishers/">
<!ENTITY fibo-be-le-lp "https://spec.edmcouncil.org/fibo/ontology/BE/LegalEntities/LegalPersons/">
<!ENTITY fibo-fbc-fct-breg "https://spec.edmcouncil.org/fibo/ontology/FBC/FunctionalEntities/BusinessRegistries/">
<!ENTITY fibo-fbc-fct-mkt "https://spec.edmcouncil.org/fibo/ontology/FBC/FunctionalEntities/Markets/">
<!ENTITY fibo-fbc-fct-ra "https://spec.edmcouncil.org/fibo/ontology/FBC/FunctionalEntities/RegistrationAuthorities/">
<!ENTITY fibo-fbc-fct-rga "https://spec.edmcouncil.org/fibo/ontology/FBC/FunctionalEntities/RegulatoryAgencies/">
<!ENTITY fibo-fbc-pas-fpas "https://spec.edmcouncil.org/fibo/ontology/FBC/ProductsAndServices/FinancialProductsAndServices/">
<!ENTITY fibo-fnd-arr-lif "https://spec.edmcouncil.org/fibo/ontology/FND/Arrangements/Lifecycles/">
<!ENTITY fibo-fnd-arr-rep "https://spec.edmcouncil.org/fibo/ontology/FND/Arrangements/Reporting/">
<!ENTITY fibo-fnd-law-jur "https://spec.edmcouncil.org/fibo/ontology/FND/Law/Jurisdiction/">
<!ENTITY fibo-fnd-org-org "https://spec.edmcouncil.org/fibo/ontology/FND/Organizations/Organizations/">
<!ENTITY fibo-fnd-plc-fac "https://spec.edmcouncil.org/fibo/ontology/FND/Places/Facilities/">
<!ENTITY fibo-fnd-plc-loc "https://spec.edmcouncil.org/fibo/ontology/FND/Places/Locations/">
<!ENTITY fibo-fnd-plc-vrt "https://spec.edmcouncil.org/fibo/ontology/FND/Places/VirtualPlaces/">
<!ENTITY fibo-fnd-pty-rl "https://spec.edmcouncil.org/fibo/ontology/FND/Parties/Roles/">
<!ENTITY fibo-fnd-rel-rel "https://spec.edmcouncil.org/fibo/ontology/FND/Relations/Relations/">
<!ENTITY fibo-fnd-utl-av "https://spec.edmcouncil.org/fibo/ontology/FND/Utilities/AnnotationVocabulary/">
<!ENTITY lcc-cr "https://www.omg.org/spec/LCC/Countries/CountryRepresentation/">
<!ENTITY owl "http://www.w3.org/2002/07/owl#">
<!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#">
<!ENTITY skos "http://www.w3.org/2004/02/skos/core#">
<!ENTITY xsd "http://www.w3.org/2001/XMLSchema#">
]>
<rdf:RDF xml:base="https://spec.edmcouncil.org/fibo/ontology/FBC/FunctionalEntities/Markets/"
xmlns:cmns-av="https://www.omg.org/spec/Commons/AnnotationVocabulary/"
xmlns:cmns-cls="https://www.omg.org/spec/Commons/Classifiers/"
xmlns:cmns-col="https://www.omg.org/spec/Commons/Collections/"
xmlns:cmns-dsg="https://www.omg.org/spec/Commons/Designators/"
xmlns:cmns-id="https://www.omg.org/spec/Commons/Identifiers/"
xmlns:dct="http://purl.org/dc/terms/"
xmlns:fibo-be-fct-pub="https://spec.edmcouncil.org/fibo/ontology/BE/FunctionalEntities/Publishers/"
xmlns:fibo-be-le-lp="https://spec.edmcouncil.org/fibo/ontology/BE/LegalEntities/LegalPersons/"
xmlns:fibo-fbc-fct-breg="https://spec.edmcouncil.org/fibo/ontology/FBC/FunctionalEntities/BusinessRegistries/"
xmlns:fibo-fbc-fct-mkt="https://spec.edmcouncil.org/fibo/ontology/FBC/FunctionalEntities/Markets/"
xmlns:fibo-fbc-fct-ra="https://spec.edmcouncil.org/fibo/ontology/FBC/FunctionalEntities/RegistrationAuthorities/"
xmlns:fibo-fbc-fct-rga="https://spec.edmcouncil.org/fibo/ontology/FBC/FunctionalEntities/RegulatoryAgencies/"
xmlns:fibo-fbc-pas-fpas="https://spec.edmcouncil.org/fibo/ontology/FBC/ProductsAndServices/FinancialProductsAndServices/"
xmlns:fibo-fnd-arr-lif="https://spec.edmcouncil.org/fibo/ontology/FND/Arrangements/Lifecycles/"
xmlns:fibo-fnd-arr-rep="https://spec.edmcouncil.org/fibo/ontology/FND/Arrangements/Reporting/"
xmlns:fibo-fnd-law-jur="https://spec.edmcouncil.org/fibo/ontology/FND/Law/Jurisdiction/"
xmlns:fibo-fnd-org-org="https://spec.edmcouncil.org/fibo/ontology/FND/Organizations/Organizations/"
xmlns:fibo-fnd-plc-fac="https://spec.edmcouncil.org/fibo/ontology/FND/Places/Facilities/"
xmlns:fibo-fnd-plc-loc="https://spec.edmcouncil.org/fibo/ontology/FND/Places/Locations/"
xmlns:fibo-fnd-plc-vrt="https://spec.edmcouncil.org/fibo/ontology/FND/Places/VirtualPlaces/"
xmlns:fibo-fnd-pty-rl="https://spec.edmcouncil.org/fibo/ontology/FND/Parties/Roles/"
xmlns:fibo-fnd-rel-rel="https://spec.edmcouncil.org/fibo/ontology/FND/Relations/Relations/"
xmlns:fibo-fnd-utl-av="https://spec.edmcouncil.org/fibo/ontology/FND/Utilities/AnnotationVocabulary/"
xmlns:lcc-cr="https://www.omg.org/spec/LCC/Countries/CountryRepresentation/"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#">
<owl:Ontology rdf:about="https://spec.edmcouncil.org/fibo/ontology/FBC/FunctionalEntities/Markets/">
<rdfs:label>Markets Ontology</rdfs:label>
<dct:abstract>This ontology defines the fundamental concepts for markets, exchanges, regulated markets, and multilateral trading facilities.</dct:abstract>
<dct:license rdf:datatype="&xsd;anyURI">https://opensource.org/licenses/MIT</dct:license>
<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/BE/FunctionalEntities/Publishers/"/>
<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/BE/LegalEntities/LegalPersons/"/>
<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/FBC/FunctionalEntities/BusinessRegistries/"/>
<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/FBC/FunctionalEntities/RegistrationAuthorities/"/>
<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/FBC/FunctionalEntities/RegulatoryAgencies/"/>
<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/FBC/ProductsAndServices/FinancialProductsAndServices/"/>
<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/FND/Arrangements/Lifecycles/"/>
<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/FND/Arrangements/Reporting/"/>
<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/FND/Law/Jurisdiction/"/>
<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/FND/Organizations/Organizations/"/>
<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/FND/Parties/Roles/"/>
<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/FND/Places/Facilities/"/>
<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/FND/Places/Locations/"/>
<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/FND/Places/VirtualPlaces/"/>
<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/FND/Relations/Relations/"/>
<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/FND/Utilities/AnnotationVocabulary/"/>
<owl:imports rdf:resource="https://www.omg.org/spec/Commons/AnnotationVocabulary/"/>
<owl:imports rdf:resource="https://www.omg.org/spec/Commons/Classifiers/"/>
<owl:imports rdf:resource="https://www.omg.org/spec/Commons/Collections/"/>
<owl:imports rdf:resource="https://www.omg.org/spec/Commons/Designators/"/>
<owl:imports rdf:resource="https://www.omg.org/spec/Commons/Identifiers/"/>
<owl:imports rdf:resource="https://www.omg.org/spec/LCC/Countries/CountryRepresentation/"/>
<owl:versionIRI rdf:resource="https://spec.edmcouncil.org/fibo/ontology/FBC/20230301/FunctionalEntities/Markets/"/>
<skos:changeNote>The https://spec.edmcouncil.org/fibo/ontology/FBC/20150801/FunctionalEntities/Markets/ version of this ontology was modified to reflect issue resolutions detailed in the FIBO FBC 1.0 RTF report.</skos:changeNote>
<skos:changeNote>The https://spec.edmcouncil.org/fibo/ontology/FBC/20170201/FunctionalEntities/Markets/ version of this ontology was modified per the FIBO 2.0 RFC.</skos:changeNote>
<skos:changeNote>The https://spec.edmcouncil.org/fibo/ontology/FBC/20180801/FunctionalEntities/Markets/ version of this ontology was modified to generalize certain unions where they were no longer required and to move international registration authorities individuals to a separate ontology for better modularity.</skos:changeNote>
<skos:changeNote>The https://spec.edmcouncil.org/fibo/ontology/FBC/20190501/FunctionalEntities/Markets/ version of this ontology was modified to eliminate deprecated elements.</skos:changeNote>
<skos:changeNote>The https://spec.edmcouncil.org/fibo/ontology/FBC/20190901/FunctionalEntities/Markets/ version of this ontology was modified to integrated details from the redundant 'securities exchange' concept with 'exchange'.</skos:changeNote>
<skos:changeNote>The https://spec.edmcouncil.org/fibo/ontology/FBC/20191201/FunctionalEntities/Markets/ version of this ontology was modified to eliminate duplication of concepts in LCC, simplify addresses, merge countries with locations in FND, and correct the declaration of the property 'operates in municipality' to be an object property.</skos:changeNote>
<skos:changeNote>The https://spec.edmcouncil.org/fibo/ontology/FBC/20200301/FunctionalEntities/Markets/ version of this ontology was modified to replace the hasTag property in Relations with the LCC equivalent on nominals.</skos:changeNote>
<skos:changeNote>The https://spec.edmcouncil.org/fibo/ontology/FBC/20200601/FunctionalEntities/Markets/ version of this ontology was modified to add the definition of an exchange participant and loosen constraints on the location in which a given exchange operates, given that there are cases when an exchange may operate in multiple locations.</skos:changeNote>
<skos:changeNote>The https://spec.edmcouncil.org/fibo/ontology/FBC/20210601/FunctionalEntities/Markets/ version of this ontology was modified to add: 'off-market', with synonyms of 'off-facility' and 'off-book', 'auction market' for periodic or on-demand auction markets, 'dark pool', and 'quote-driven market' for those that have QUOTE or RFQ in their name excluding QUOTED FUNDS, and other 'alternative trading system's; also moved 'designated contract market' and 'swap execution facility' from DER to the this ontology for use in generating proper classification of the ISO MIC codes.</skos:changeNote>
<skos:changeNote>The https://spec.edmcouncil.org/fibo/ontology/FBC/20210701/FunctionalEntities/Markets/ version of this ontology was modified to revise the number and nature of 'market categories' per the latest version of ISO 10383, including the addition of ESMA-regulated data reporting service providers and other new categories, augment the representation of a market to reference the legal entity that is the market, add their LEI and other details that correspond to the entity vs. the market and so forth.</skos:changeNote>
<skos:changeNote>The https://spec.edmcouncil.org/fibo/ontology/FBC/20221201/FunctionalEntities/Markets.rdf version of the ontology was modified to use the Commons Ontology Library (Commons) Annotation Vocabulary rather than the OMG's Specification Metadata vocabulary.</skos:changeNote>
<skos:changeNote>The https://spec.edmcouncil.org/fibo/ontology/FBC/20230101/FunctionalEntities/Markets.rdf version of this ontology was modified to use the Commons Ontology Library (Commons) rather than the OMG's Languages, Countries and Codes (LCC) and to eliminate redundancies in FIBO as appropriate.</skos:changeNote>
<fibo-fnd-utl-av:hasMaturityLevel rdf:resource="&fibo-fnd-utl-av;Release"/>
<cmns-av:copyright>Copyright (c) 2015-2023 EDM Council, Inc.</cmns-av:copyright>
<cmns-av:copyright>Copyright (c) 2015-2023 Object Management Group, Inc.</cmns-av:copyright>
</owl:Ontology>
<owl:NamedIndividual rdf:about="&fibo-fbc-fct-mkt;ActiveMICStatus">
<rdf:type rdf:resource="&fibo-fbc-fct-mkt;MarketIdentifierCodeStatus"/>
<rdfs:label>active MIC status</rdfs:label>
<skos:definition>market identifier code status that indicates that as of the last report or update, the code was registered and actively in use</skos:definition>
<fibo-fnd-rel-rel:hasTag>ACTIVE</fibo-fnd-rel-rel:hasTag>
<cmns-av:adaptedFrom>ISO 10383, Securities and related financial instruments - Codes for exchanges and market identification (MIC), version 2.0</cmns-av:adaptedFrom>
<cmns-av:adaptedFrom>https://www.iso20022.org/sites/default/files/2021-12/ISO10383_MIC_Release_2_0_Factsheet.pdf</cmns-av:adaptedFrom>
</owl:NamedIndividual>
<owl:Class rdf:about="&fibo-fbc-fct-mkt;AlternativeTradingSystem">
<rdfs:subClassOf rdf:resource="&fibo-fbc-fct-mkt;Exchange"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&cmns-cls;isClassifiedBy"/>
<owl:hasValue rdf:resource="&fibo-fbc-fct-mkt;MarketCategoryClassifier-ATSS"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label>alternative trading system</rdfs:label>
<skos:definition>trading venue that is more loosely regulated than a regulated exchange</skos:definition>
<cmns-av:abbreviation>ATS</cmns-av:abbreviation>
<cmns-av:adaptedFrom>https://www.iso20022.org/sites/default/files/2021-12/ISO10383_MIC_Release_2_0_Factsheet.pdf</cmns-av:adaptedFrom>
<cmns-av:explanatoryNote>The SEC formally defines an alternative trading system as any organization, association, person, group of persons, or systems (1) that constitutes, maintains, or provides a market place or facilities for bringing together purchasers and sellers of securities or for otherwise performing with respect to securities the functions commonly performed by a stock exchange within the meaning of Rule 3b-16 under the Exchange Act; and (2) that does not (i) set rules governing the conduct of subscribers other than the conduct of such subscribers' trading on such organization, association, person, group of persons, or system, or (ii) discipline subscribers other than by exclusion from trading.</cmns-av:explanatoryNote>
</owl:Class>
<owl:Class rdf:about="&fibo-fbc-fct-mkt;ApprovedPublicationArrangement">
<rdfs:subClassOf rdf:resource="&fibo-fbc-fct-mkt;DataReportingServicesProvider"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&cmns-cls;isClassifiedBy"/>
<owl:hasValue rdf:resource="&fibo-fbc-fct-mkt;MarketCategoryClassifier-APPA"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label>approved publication arrangement</rdfs:label>
<skos:definition>data reporting services provider that is authorized to provide the service of publishing certain trade reports on behalf of banks, investment firms, or asset management companies</skos:definition>
<cmns-av:abbreviation>APA</cmns-av:abbreviation>
<cmns-av:adaptedFrom>https://www.esma.europa.eu/press-news/esma-news/esma-identifies-data-reporting-services-providers-be-supervised-directly</cmns-av:adaptedFrom>
<cmns-av:adaptedFrom>https://www.iso20022.org/sites/default/files/2021-12/ISO10383_MIC_Release_2_0_Factsheet.pdf</cmns-av:adaptedFrom>
<cmns-av:adaptedFrom>https://www.lawinsider.com/dictionary/approved-publication-arrangement-apa</cmns-av:adaptedFrom>
<cmns-av:synonym xml:lang="en-GB">authorised publication arrangement</cmns-av:synonym>
<cmns-av:synonym xml:lang="en-US">authorized publication arrangement</cmns-av:synonym>
</owl:Class>
<owl:Class rdf:about="&fibo-fbc-fct-mkt;ApprovedReportingMechanism">
<rdfs:subClassOf rdf:resource="&fibo-fbc-fct-mkt;DataReportingServicesProvider"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&cmns-cls;isClassifiedBy"/>
<owl:hasValue rdf:resource="&fibo-fbc-fct-mkt;MarketCategoryClassifier-ARMS"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label>approved reporting mechanism</rdfs:label>
<skos:definition>data reporting services provider that is authorized to provide the service of reporting details of transactions to competent authorities or ESMA (the European Securities and Markets Authority) on behalf of investment firms</skos:definition>
<cmns-av:abbreviation>ARM</cmns-av:abbreviation>
<cmns-av:adaptedFrom>https://www.esma.europa.eu/press-news/esma-news/esma-identifies-data-reporting-services-providers-be-supervised-directly</cmns-av:adaptedFrom>
<cmns-av:adaptedFrom>https://www.iso20022.org/sites/default/files/2021-12/ISO10383_MIC_Release_2_0_Factsheet.pdf</cmns-av:adaptedFrom>
<cmns-av:adaptedFrom>https://www.lawinsider.com/dictionary/approved-reporting-mechanism</cmns-av:adaptedFrom>
</owl:Class>
<owl:Class rdf:about="&fibo-fbc-fct-mkt;AuctionMarket">
<rdfs:subClassOf rdf:resource="&fibo-fbc-fct-mkt;Exchange"/>
<rdfs:label>auction market</rdfs:label>
<skos:definition>exchange in which buyers and sellers submit competitive bids that do not involve direct negotiations between parties, as part of an auction scheduled either on demand or on a periodic basis</skos:definition>
</owl:Class>
<owl:Class rdf:about="&fibo-fbc-fct-mkt;ConsolidatedTapeProvider">
<rdfs:subClassOf rdf:resource="&fibo-fbc-fct-mkt;DataReportingServicesProvider"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&cmns-cls;isClassifiedBy"/>
<owl:hasValue rdf:resource="&fibo-fbc-fct-mkt;MarketCategoryClassifier-CTPS"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label>consolidated tape provider</rdfs:label>
<skos:definition>data reporting services provider that is authorized to provide the service of collecting trade reports for financial instruments from regulated markets, MTFs, OTFs and APAs and consolidating them into a continuous electronic live data stream providing price and volume data per financial instrument</skos:definition>
<cmns-av:abbreviation>CTP</cmns-av:abbreviation>
<cmns-av:adaptedFrom>https://www.esma.europa.eu/press-news/esma-news/esma-identifies-data-reporting-services-providers-be-supervised-directly</cmns-av:adaptedFrom>
<cmns-av:adaptedFrom>https://www.iso20022.org/sites/default/files/2021-12/ISO10383_MIC_Release_2_0_Factsheet.pdf</cmns-av:adaptedFrom>
<cmns-av:adaptedFrom>https://www.lawinsider.com/dictionary/consolidated-tape-providers-hereinafter-referred-to-as-ctp</cmns-av:adaptedFrom>
<cmns-av:explanatoryNote>Consolidated tape is an electronic system that collates real-time exchange-listed data, such as price and volume, and disseminates it to investors. Through the consolidated tape, various major exchanges, including the New York Stock Exchange, the NASDAQ, and the Chicago Board Options Exchange, report trades and quotes.</cmns-av:explanatoryNote>
</owl:Class>
<owl:Class rdf:about="&fibo-fbc-fct-mkt;CryptoAssetServicesProvider">
<rdfs:subClassOf rdf:resource="&fibo-fbc-pas-fpas;FinancialServiceProvider"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&cmns-cls;isClassifiedBy"/>
<owl:hasValue rdf:resource="&fibo-fbc-fct-mkt;MarketCategoryClassifier-CASP"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&cmns-id;isIdentifiedBy"/>
<owl:onClass rdf:resource="&fibo-fbc-fct-mkt;MarketIdentifier"/>
<owl:minQualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">0</owl:minQualifiedCardinality>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-fbc-fct-mkt;hasFacilityAcronym"/>
<owl:minQualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">0</owl:minQualifiedCardinality>
<owl:onDataRange rdf:resource="&rdfs;Literal"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-fnd-rel-rel;hasFormalName"/>
<owl:minQualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">0</owl:minQualifiedCardinality>
<owl:onDataRange rdf:resource="&rdfs;Literal"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-fbc-fct-mkt;operatesInCountry"/>
<owl:someValuesFrom rdf:resource="&lcc-cr;Country"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-fbc-fct-mkt;operatesInMunicipality"/>
<owl:someValuesFrom rdf:resource="&fibo-fnd-plc-loc;Municipality"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label>crypto asset services provider</rdfs:label>
<skos:definition>financial services provider that provides services for crypto assets that enable the control of crypto assets, and participate in, or provide, financial services for issuers' offers, or sale, of crypto assets</skos:definition>
<cmns-av:abbreviation>CASP</cmns-av:abbreviation>
<cmns-av:adaptedFrom>https://www.iso20022.org/sites/default/files/2021-12/ISO10383_MIC_Release_2_0_Factsheet.pdf</cmns-av:adaptedFrom>
<cmns-av:adaptedFrom>https://www.lawinsider.com/dictionary/crypto-asset-service-provider-casp</cmns-av:adaptedFrom>
<cmns-av:explanatoryNote>Services related to crypto assets may include businesses that exchange crypto assets for fiat currencies, or vice versa, that conduct transactions that move crypto assets from one crypto asset address, or account, to another, and/or that provide facilities for the safekeeping, or administration, of crypto assets, or instruments.</cmns-av:explanatoryNote>
</owl:Class>
<owl:Class rdf:about="&fibo-fbc-fct-mkt;DarkPool">
<rdfs:subClassOf rdf:resource="&fibo-fbc-fct-mkt;AlternativeTradingSystem"/>
<rdfs:label>dark pool</rdfs:label>
<skos:definition>privately organized alternative trading system, that allows institutional investors the ability to trade without exposure until after the trade has been executed and reported</skos:definition>
</owl:Class>
<owl:Class rdf:about="&fibo-fbc-fct-mkt;DataReportingServicesProvider">
<rdfs:subClassOf rdf:resource="&fibo-be-fct-pub;MarketDataProvider"/>
<rdfs:subClassOf rdf:resource="&fibo-fnd-arr-rep;ReportingParty"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&cmns-id;isIdentifiedBy"/>
<owl:onClass rdf:resource="&fibo-fbc-fct-mkt;MarketIdentifier"/>
<owl:minQualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">0</owl:minQualifiedCardinality>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-fbc-fct-mkt;hasFacilityAcronym"/>
<owl:minQualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">0</owl:minQualifiedCardinality>
<owl:onDataRange rdf:resource="&rdfs;Literal"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-fnd-rel-rel;hasFormalName"/>
<owl:minQualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">0</owl:minQualifiedCardinality>
<owl:onDataRange rdf:resource="&rdfs;Literal"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-fbc-fct-mkt;operatesInCountry"/>
<owl:someValuesFrom rdf:resource="&lcc-cr;Country"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-fbc-fct-mkt;operatesInMunicipality"/>
<owl:someValuesFrom rdf:resource="&fibo-fnd-plc-loc;Municipality"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label>data reporting services provider</rdfs:label>
<skos:definition>market data provider and reporting party that reports and/or publishes data on securities transactions, including required regulatory reporting for such transactions, and as such is subject to regulatory supervision</skos:definition>
<cmns-av:abbreviation>DRSP</cmns-av:abbreviation>
<cmns-av:adaptedFrom rdf:datatype="&xsd;anyURI">https://www.esma.europa.eu/press-news/esma-news/esma-identifies-data-reporting-services-providers-be-supervised-directly</cmns-av:adaptedFrom>
<cmns-av:adaptedFrom rdf:datatype="&xsd;anyURI">https://www.esma.europa.eu/supervision/supervision/data-reporting-services-providers</cmns-av:adaptedFrom>
</owl:Class>
<owl:NamedIndividual rdf:about="&fibo-fbc-fct-mkt;DeletedMICStatus">
<owl:sameAs rdf:resource="&fibo-fbc-fct-mkt;ExpiredMICStatus"/>
<owl:deprecated rdf:datatype="&xsd;boolean">true</owl:deprecated>
</owl:NamedIndividual>
<owl:Class rdf:about="&fibo-fbc-fct-mkt;DesignatedContractMarket">
<rdfs:subClassOf rdf:resource="&fibo-fbc-fct-mkt;Exchange"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&cmns-cls;isClassifiedBy"/>
<owl:hasValue rdf:resource="&fibo-fbc-fct-mkt;MarketCategoryClassifier-DCMS"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label>designated contract market</rdfs:label>
<skos:definition>exchange, trading system, or platform that enables listing for trading futures or option contracts based on any underlying commodity, index or instrument</skos:definition>
<cmns-av:abbreviation>DCM</cmns-av:abbreviation>
<cmns-av:adaptedFrom rdf:datatype="&xsd;anyURI">http://www.cftc.gov/IndustryOversight/TradingOrganizations/DCMs/index.htm</cmns-av:adaptedFrom>
<cmns-av:adaptedFrom>https://www.iso20022.org/sites/default/files/2021-12/ISO10383_MIC_Release_2_0_Factsheet.pdf</cmns-av:adaptedFrom>
</owl:Class>
<owl:Class rdf:about="&fibo-fbc-fct-mkt;ElectronicCommunicationNetwork">
<rdfs:subClassOf rdf:resource="&fibo-fbc-fct-mkt;AlternativeTradingSystem"/>
<rdfs:label>electronic communication network</rdfs:label>
<rdfs:seeAlso rdf:resource="https://www.cfainstitute.org/-/media/documents/issue-brief/dark-pools-internalization-and-equity-market-quality-issue-brief"/>
<skos:definition>alternative trading system that automatically matches buy and sell orders for securities in the market</skos:definition>
<cmns-av:abbreviation>ECN</cmns-av:abbreviation>
<cmns-av:explanatoryNote>ECNs allow brokerages and investors in different geographic areas to trade without a third party involved, offering privacy for investors. They also allow after-hours trading, but trading may be subject to commissions and other fees.</cmns-av:explanatoryNote>
</owl:Class>
<owl:Class rdf:about="&fibo-fbc-fct-mkt;Exchange">
<rdfs:subClassOf rdf:resource="&fibo-fnd-plc-fac;Facility"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&cmns-id;isIdentifiedBy"/>
<owl:onClass rdf:resource="&fibo-fbc-fct-mkt;MarketIdentifier"/>
<owl:minQualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">0</owl:minQualifiedCardinality>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-fnd-rel-rel;isManagedBy"/>
<owl:onClass rdf:resource="&fibo-fbc-pas-fpas;FinancialServiceProvider"/>
<owl:minQualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">0</owl:minQualifiedCardinality>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-fbc-fct-mkt;hasFacilityAcronym"/>
<owl:minQualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">0</owl:minQualifiedCardinality>
<owl:onDataRange rdf:resource="&rdfs;Literal"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-fnd-rel-rel;hasFormalName"/>
<owl:minQualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">0</owl:minQualifiedCardinality>
<owl:onDataRange rdf:resource="&rdfs;Literal"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-fbc-fct-mkt;operatesInCountry"/>
<owl:someValuesFrom rdf:resource="&lcc-cr;Country"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-fbc-fct-mkt;operatesInMunicipality"/>
<owl:someValuesFrom rdf:resource="&fibo-fnd-plc-loc;Municipality"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label>exchange</rdfs:label>
<skos:definition>any organization, association, or group of persons, whether incorporated or unincorporated, which constitutes, maintains, or provides a facility for bringing together purchasers and sellers of financial instruments, commodities, or other products, services, or goods, and includes the market place and facilities maintained by such exchange</skos:definition>
<cmns-av:adaptedFrom>ISO 10383, Securities and related financial instruments - Codes for exchanges and market identification (MIC), Third edition, 2012-10-01, confirmed 2018-03-29</cmns-av:adaptedFrom>
<cmns-av:adaptedFrom>Securities Exchange Act of 1934, as amended 12 August 2012</cmns-av:adaptedFrom>
<cmns-av:explanatoryNote>An exchange is typically a corporation or mutual organization that provides securities trading services, where securities may be bought and sold by third parties. As a facility, an exchange is also a place of trade associated with a particular site, i.e., stock exchange, regulated market such as an Electronic Trading Platform (ECN), or unregulated market, such as an Automated Trading System (ATS), or market data provider. Stock exchanges also provide facilities for the issue and redemption of securities as well as other financial instruments and capital events including the payment of income and dividends.
The securities traded on a stock exchange include: shares issued by companies, unit trusts, derivatives, pooled investment products and bonds. To be able to trade a security on a certain stock exchange, it has to be listed there. Usually there is a central location at least for recordkeeping, but trade is less and less linked to such a physical place, as modern markets are electronic networks, which gives them advantages of speed and cost of transactions. Trade on an exchange is by members only.</cmns-av:explanatoryNote>
<cmns-av:synonym>market</cmns-av:synonym>
</owl:Class>
<owl:Class rdf:about="&fibo-fbc-fct-mkt;ExchangeParticipant">
<rdfs:subClassOf rdf:resource="&fibo-fbc-pas-fpas;RegisteredAgent"/>
<rdfs:subClassOf rdf:resource="&fibo-fnd-org-org;OrganizationMember"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-fbc-fct-ra;isRegisteredBy"/>
<owl:someValuesFrom rdf:resource="&fibo-fbc-fct-mkt;Exchange"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-fnd-pty-rl;isPlayedBy"/>
<owl:someValuesFrom>
<owl:Restriction>
<owl:onProperty rdf:resource="&cmns-col;isMemberOf"/>
<owl:someValuesFrom>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-fnd-pty-rl;playsRole"/>
<owl:someValuesFrom rdf:resource="&fibo-fbc-fct-mkt;Exchange"/>
</owl:Restriction>
</owl:someValuesFrom>
</owl:Restriction>
</owl:someValuesFrom>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label>exchange participant</rdfs:label>
<rdfs:seeAlso rdf:resource="https://www.lawinsider.com/dictionary/exchange-participant"/>
<skos:definition>registered agent who, in accordance with the rules of an exchange, may trade on or through the exchange and whose name is entered in a list, register or roll kept by the exchange as an agent who may trade on or through the exchange</skos:definition>
</owl:Class>
<owl:NamedIndividual rdf:about="&fibo-fbc-fct-mkt;ExpiredMICStatus">
<rdf:type rdf:resource="&fibo-fbc-fct-mkt;MarketIdentifierCodeStatus"/>
<rdfs:label>expired MIC status</rdfs:label>
<skos:definition>as of the last report or update, the exchange code has expired</skos:definition>
<fibo-fnd-rel-rel:hasTag>EXPIRED</fibo-fnd-rel-rel:hasTag>
<cmns-av:adaptedFrom>ISO 10383, Securities and related financial instruments - Codes for exchanges and market identification (MIC), Third edition, version 2.0</cmns-av:adaptedFrom>
<cmns-av:adaptedFrom>https://www.iso20022.org/sites/default/files/2021-12/ISO10383_MIC_Release_2_0_Factsheet.pdf</cmns-av:adaptedFrom>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-fbc-fct-mkt;ISO10383-ClassificationScheme">
<rdf:type rdf:resource="&cmns-cls;ClassificationScheme"/>
<rdfs:label>ISO 10383 classification scheme</rdfs:label>
<skos:definition>classification scheme for market categories and related content per the ISO 10383 standard</skos:definition>
<cmns-av:adaptedFrom rdf:datatype="&xsd;anyURI">https://www.iso20022.org/market-identifier-codes</cmns-av:adaptedFrom>
<cmns-av:adaptedFrom rdf:datatype="&xsd;anyURI">https://www.iso20022.org/sites/default/files/2021-12/ISO10383_MIC_Release_2_0_Factsheet.pdf</cmns-av:adaptedFrom>
</owl:NamedIndividual>
<owl:Class rdf:about="&fibo-fbc-fct-mkt;InterdealerQuotationSystem">
<rdfs:subClassOf rdf:resource="&fibo-fbc-fct-mkt;Exchange"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&cmns-cls;isClassifiedBy"/>
<owl:hasValue rdf:resource="&fibo-fbc-fct-mkt;MarketCategoryClassifier-IDQS"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label>interdealer quotation system</rdfs:label>
<skos:definition>automated system for organizing and disseminating price quotes by brokers and dealer firms that facilitates electronic trading in securities</skos:definition>
<skos:example>The National Association of Securities Dealers Automatic Quotation (Nasdaq), Nasdaq SmallCap Market, and the Over-The-Counter Bulletin Board (OTCBB) exchange platforms are integrated into one IQS. By using this integrated system, investors have access to a wide range of securities, ranging from large blue-chip companies to smaller micro-caps.</skos:example>
<cmns-av:abbreviation>IQS</cmns-av:abbreviation>
<cmns-av:adaptedFrom>https://www.investopedia.com/terms/i/interdealerquotationsystem.asp</cmns-av:adaptedFrom>
<cmns-av:adaptedFrom>https://www.iso20022.org/sites/default/files/2021-12/ISO10383_MIC_Release_2_0_Factsheet.pdf</cmns-av:adaptedFrom>
<cmns-av:adaptedFrom>https://www.lawinsider.com/dictionary/inter-dealer-quotation-system</cmns-av:adaptedFrom>
<cmns-av:explanatoryNote>An IQS ties the price quotations of a number of exchanges together into one platform. This allows investors to more easily access security price quotations that would otherwise need to be monitored on several separate exchanges.</cmns-av:explanatoryNote>
<cmns-av:explanatoryNote>In the United States, an IQS is an automated interdealer quotation system of a national securities association registered pursuant to section 15A(a) of the Exchange Act (15 U.S.C. 78o-3(a)).</cmns-av:explanatoryNote>
<cmns-av:synonym>inter-dealer quotation system</cmns-av:synonym>
</owl:Class>
<owl:Class rdf:about="&fibo-fbc-fct-mkt;MarketCategoryClassifier">
<rdfs:subClassOf rdf:resource="&cmns-cls;Classifier"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&cmns-dsg;isDefinedIn"/>
<owl:hasValue rdf:resource="&fibo-fbc-fct-mkt;ISO10383-ClassificationScheme"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&cmns-cls;classifies"/>
<owl:someValuesFrom>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&fibo-fbc-fct-mkt;CryptoAssetServicesProvider">
</rdf:Description>
<rdf:Description rdf:about="&fibo-fbc-fct-mkt;DataReportingServicesProvider">
</rdf:Description>
<rdf:Description rdf:about="&fibo-fbc-fct-mkt;Exchange">
</rdf:Description>
<rdf:Description rdf:about="&fibo-fbc-fct-mkt;TradeReportingFacility">
</rdf:Description>
</owl:unionOf>
</owl:Class>
</owl:someValuesFrom>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label>market category classifier</rdfs:label>
<skos:definition>classifier representing the controlled vocabulary that delineates the nature of the exchange or data reporting services provider where possible</skos:definition>
<skos:scopeNote>As of October 2022, the controlled vocabulary includes two codes that are not semantically useful, namely 'not specified', or NSPD, and 'other', or OTHR. These are included for the sake of completeness but ignored with respect to how the exchange or market is classified. If something has one of these two codes as a market category, they will be classified either as an operating-level or segment-level marketas appropriate with no other distinction in terms of how they are instantiated.</skos:scopeNote>
<cmns-av:adaptedFrom>https://www.iso20022.org/sites/default/files/2021-12/ISO10383_MIC_Release_2_0_Factsheet.pdf</cmns-av:adaptedFrom>
</owl:Class>
<owl:NamedIndividual rdf:about="&fibo-fbc-fct-mkt;MarketCategoryClassifier-APPA">
<rdf:type rdf:resource="&fibo-fbc-fct-mkt;MarketCategoryClassifier"/>
<rdfs:label>market category classifier - APPA</rdfs:label>
<skos:definition>market category classifier for an approved publication arrangement</skos:definition>
<fibo-fnd-rel-rel:hasTag>APPA</fibo-fnd-rel-rel:hasTag>
<cmns-av:adaptedFrom>https://www.iso20022.org/sites/default/files/2021-12/ISO10383_MIC_Release_2_0_Factsheet.pdf</cmns-av:adaptedFrom>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-fbc-fct-mkt;MarketCategoryClassifier-ARMS">
<rdf:type rdf:resource="&fibo-fbc-fct-mkt;MarketCategoryClassifier"/>
<rdfs:label>market category classifier - ARMS</rdfs:label>
<skos:definition>market category classifier for an approved reporting mechanism</skos:definition>
<fibo-fnd-rel-rel:hasTag>ARMS</fibo-fnd-rel-rel:hasTag>
<cmns-av:adaptedFrom>https://www.iso20022.org/sites/default/files/2021-12/ISO10383_MIC_Release_2_0_Factsheet.pdf</cmns-av:adaptedFrom>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-fbc-fct-mkt;MarketCategoryClassifier-ATSS">
<rdf:type rdf:resource="&fibo-fbc-fct-mkt;MarketCategoryClassifier"/>
<rdfs:label>market category classifier - ATSS</rdfs:label>
<skos:definition>market category classifier for an alternative trading system</skos:definition>
<fibo-fnd-rel-rel:hasTag>ATSS</fibo-fnd-rel-rel:hasTag>
<cmns-av:adaptedFrom>https://www.iso20022.org/sites/default/files/2021-12/ISO10383_MIC_Release_2_0_Factsheet.pdf</cmns-av:adaptedFrom>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-fbc-fct-mkt;MarketCategoryClassifier-CASP">
<rdf:type rdf:resource="&fibo-fbc-fct-mkt;MarketCategoryClassifier"/>
<rdfs:label>market category classifier - CASP</rdfs:label>
<skos:definition>market category classifier for a crypto asset services provider</skos:definition>
<fibo-fnd-rel-rel:hasTag>CASP</fibo-fnd-rel-rel:hasTag>
<cmns-av:adaptedFrom>https://www.iso20022.org/sites/default/files/2021-12/ISO10383_MIC_Release_2_0_Factsheet.pdf</cmns-av:adaptedFrom>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-fbc-fct-mkt;MarketCategoryClassifier-CTPS">
<rdf:type rdf:resource="&fibo-fbc-fct-mkt;MarketCategoryClassifier"/>
<rdfs:label>market category classifier - CTPS</rdfs:label>
<skos:definition>market category classifier for a consolidated tape provider</skos:definition>
<fibo-fnd-rel-rel:hasTag>CTPS</fibo-fnd-rel-rel:hasTag>
<cmns-av:adaptedFrom>https://www.iso20022.org/sites/default/files/2021-12/ISO10383_MIC_Release_2_0_Factsheet.pdf</cmns-av:adaptedFrom>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-fbc-fct-mkt;MarketCategoryClassifier-DCMS">
<rdf:type rdf:resource="&fibo-fbc-fct-mkt;MarketCategoryClassifier"/>
<rdfs:label>market category classifier - DCMS</rdfs:label>
<skos:definition>market category classifier for a designated contract market</skos:definition>
<fibo-fnd-rel-rel:hasTag>DCMS</fibo-fnd-rel-rel:hasTag>
<cmns-av:adaptedFrom>https://www.iso20022.org/sites/default/files/2021-12/ISO10383_MIC_Release_2_0_Factsheet.pdf</cmns-av:adaptedFrom>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-fbc-fct-mkt;MarketCategoryClassifier-IDQS">
<rdf:type rdf:resource="&fibo-fbc-fct-mkt;MarketCategoryClassifier"/>
<rdfs:label>market category classifier - IDQS</rdfs:label>
<skos:definition>market category classifier for an interdealer quotation system</skos:definition>
<fibo-fnd-rel-rel:hasTag>IDQS</fibo-fnd-rel-rel:hasTag>
<cmns-av:adaptedFrom>https://www.iso20022.org/sites/default/files/2021-12/ISO10383_MIC_Release_2_0_Factsheet.pdf</cmns-av:adaptedFrom>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-fbc-fct-mkt;MarketCategoryClassifier-MLTF">
<rdf:type rdf:resource="&fibo-fbc-fct-mkt;MarketCategoryClassifier"/>
<rdfs:label>market category classifier - MLTF</rdfs:label>
<skos:definition>market category classifier for a multilateral trading facility</skos:definition>
<fibo-fnd-rel-rel:hasTag>MLTF</fibo-fnd-rel-rel:hasTag>
<cmns-av:adaptedFrom>https://www.iso20022.org/sites/default/files/2021-12/ISO10383_MIC_Release_2_0_Factsheet.pdf</cmns-av:adaptedFrom>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-fbc-fct-mkt;MarketCategoryClassifier-NSPD">
<rdf:type rdf:resource="&fibo-fbc-fct-mkt;MarketCategoryClassifier"/>
<rdfs:label>market category classifier - NSPD</rdfs:label>
<skos:definition>market category classifier indicating that the market category has not been specified by the reporting party</skos:definition>
<fibo-fnd-rel-rel:hasTag>NSPD</fibo-fnd-rel-rel:hasTag>
<cmns-av:adaptedFrom>https://www.iso20022.org/sites/default/files/2021-12/ISO10383_MIC_Release_2_0_Factsheet.pdf</cmns-av:adaptedFrom>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-fbc-fct-mkt;MarketCategoryClassifier-OTFS">
<rdf:type rdf:resource="&fibo-fbc-fct-mkt;MarketCategoryClassifier"/>
<rdfs:label>market category classifier - OTFS</rdfs:label>
<skos:definition>market category classifier for an organized trading facility</skos:definition>
<fibo-fnd-rel-rel:hasTag>OTFS</fibo-fnd-rel-rel:hasTag>
<cmns-av:adaptedFrom>https://www.iso20022.org/sites/default/files/2021-12/ISO10383_MIC_Release_2_0_Factsheet.pdf</cmns-av:adaptedFrom>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-fbc-fct-mkt;MarketCategoryClassifier-OTHR">
<rdf:type rdf:resource="&fibo-fbc-fct-mkt;MarketCategoryClassifier"/>
<rdfs:label>market category classifier - OTHR</rdfs:label>
<skos:definition>market category classifier indicating that the reporting party believes that the market classifier is something other than any of the given market categories</skos:definition>
<fibo-fnd-rel-rel:hasTag>OTHR</fibo-fnd-rel-rel:hasTag>
<cmns-av:adaptedFrom>https://www.iso20022.org/sites/default/files/2021-12/ISO10383_MIC_Release_2_0_Factsheet.pdf</cmns-av:adaptedFrom>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-fbc-fct-mkt;MarketCategoryClassifier-RMKT">
<rdf:type rdf:resource="&fibo-fbc-fct-mkt;MarketCategoryClassifier"/>
<rdfs:label>market category classifier - RMKT</rdfs:label>
<skos:definition>market category classifier for a regulated market</skos:definition>
<fibo-fnd-rel-rel:hasTag>RMKT</fibo-fnd-rel-rel:hasTag>
<cmns-av:adaptedFrom>https://www.iso20022.org/sites/default/files/2021-12/ISO10383_MIC_Release_2_0_Factsheet.pdf</cmns-av:adaptedFrom>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-fbc-fct-mkt;MarketCategoryClassifier-RMOS">
<rdf:type rdf:resource="&fibo-fbc-fct-mkt;MarketCategoryClassifier"/>
<rdfs:label>market category classifier - RMOS</rdfs:label>
<skos:definition>market category classifier for a recognized market operator</skos:definition>
<fibo-fnd-rel-rel:hasTag>RMOS</fibo-fnd-rel-rel:hasTag>
<cmns-av:adaptedFrom>https://www.iso20022.org/sites/default/files/2021-12/ISO10383_MIC_Release_2_0_Factsheet.pdf</cmns-av:adaptedFrom>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-fbc-fct-mkt;MarketCategoryClassifier-SEFS">
<rdf:type rdf:resource="&fibo-fbc-fct-mkt;MarketCategoryClassifier"/>
<rdfs:label>market category classifier - SEFS</rdfs:label>
<skos:definition>market category classifier for a swap execution facility</skos:definition>
<fibo-fnd-rel-rel:hasTag>SEFS</fibo-fnd-rel-rel:hasTag>
<cmns-av:adaptedFrom>https://www.iso20022.org/sites/default/files/2021-12/ISO10383_MIC_Release_2_0_Factsheet.pdf</cmns-av:adaptedFrom>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-fbc-fct-mkt;MarketCategoryClassifier-SINT">
<rdf:type rdf:resource="&fibo-fbc-fct-mkt;MarketCategoryClassifier"/>
<rdfs:label>market category classifier - SINT</rdfs:label>
<skos:definition>market category classifier for a systematic internalizer</skos:definition>
<fibo-fnd-rel-rel:hasTag>SINT</fibo-fnd-rel-rel:hasTag>
<cmns-av:adaptedFrom>https://www.iso20022.org/sites/default/files/2021-12/ISO10383_MIC_Release_2_0_Factsheet.pdf</cmns-av:adaptedFrom>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-fbc-fct-mkt;MarketCategoryClassifier-TRFS">
<rdf:type rdf:resource="&fibo-fbc-fct-mkt;MarketCategoryClassifier"/>
<rdfs:label>market category classifier - TRFS</rdfs:label>
<skos:definition>market category classifier for a trade reporting facility</skos:definition>
<fibo-fnd-rel-rel:hasTag>TRFS</fibo-fnd-rel-rel:hasTag>
<cmns-av:adaptedFrom>https://www.iso20022.org/sites/default/files/2021-12/ISO10383_MIC_Release_2_0_Factsheet.pdf</cmns-av:adaptedFrom>
</owl:NamedIndividual>
<owl:Class rdf:about="&fibo-fbc-fct-mkt;MarketIdentifier">
<rdfs:subClassOf rdf:resource="&cmns-id;Identifier"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&cmns-id;identifies"/>
<owl:someValuesFrom>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&fibo-fbc-fct-mkt;CryptoAssetServicesProvider">
</rdf:Description>
<rdf:Description rdf:about="&fibo-fbc-fct-mkt;DataReportingServicesProvider">
</rdf:Description>
<rdf:Description rdf:about="&fibo-fbc-fct-mkt;Exchange">
</rdf:Description>
<rdf:Description rdf:about="&fibo-fbc-fct-mkt;TradeReportingFacility">
</rdf:Description>
</owl:unionOf>
</owl:Class>
</owl:someValuesFrom>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label>market identifier</rdfs:label>
<skos:definition>identifier that specifies a universal method of identifying exchanges, trading platforms, regulated or non-regulated markets, and data reporting services providers as sources of prices and related information in order to facilitate automated processing</skos:definition>
<cmns-av:abbreviation>MIC</cmns-av:abbreviation>
<cmns-av:adaptedFrom>ISO 10383, Securities and related financial instruments - Codes for exchanges and market identification (MIC), Third edition, 2012-10-01</cmns-av:adaptedFrom>
<cmns-av:adaptedFrom rdf:datatype="&xsd;anyURI">https://www.iso20022.org/market-identifier-codes</cmns-av:adaptedFrom>
<cmns-av:adaptedFrom rdf:datatype="&xsd;anyURI">https://www.iso20022.org/sites/default/files/2021-12/ISO10383_MIC_Release_2_0_Factsheet.pdf</cmns-av:adaptedFrom>
<cmns-av:explanatoryNote>It is intended for use in any application and communication for identification of places
- where a financial instrument is listed (place of official listing),
- where a related trade is executed (place of trade), and
- where trade details are reported (trade reporting facility).</cmns-av:explanatoryNote>
<cmns-av:synonym>Market Identifier Code</cmns-av:synonym>
</owl:Class>
<owl:Class rdf:about="&fibo-fbc-fct-mkt;MarketIdentifierCodeStatus">
<rdfs:subClassOf rdf:resource="&fibo-fnd-arr-lif;LifecycleStage"/>
<rdfs:label>market indicator code status</rdfs:label>
<skos:definition>lifecycle stage indicating the status of the MIC code, as specified by the registration authority</skos:definition>
<cmns-av:adaptedFrom rdf:datatype="&xsd;anyURI">https://www.iso20022.org/market-identifier-codes</cmns-av:adaptedFrom>
</owl:Class>
<owl:Class rdf:about="&fibo-fbc-fct-mkt;MarketLevelClassifier">
<rdfs:subClassOf rdf:resource="&cmns-cls;Classifier"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&cmns-dsg;isDefinedIn"/>
<owl:hasValue rdf:resource="&fibo-fbc-fct-mkt;ISO10383-ClassificationScheme"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&cmns-cls;classifies"/>
<owl:someValuesFrom>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&fibo-fbc-fct-mkt;CryptoAssetServicesProvider">
</rdf:Description>
<rdf:Description rdf:about="&fibo-fbc-fct-mkt;DataReportingServicesProvider">
</rdf:Description>
<rdf:Description rdf:about="&fibo-fbc-fct-mkt;Exchange">
</rdf:Description>
<rdf:Description rdf:about="&fibo-fbc-fct-mkt;TradeReportingFacility">
</rdf:Description>
</owl:unionOf>
</owl:Class>
</owl:someValuesFrom>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label>market level classifier</rdfs:label>
<skos:definition>classifier that indicates whether the exchange or data reporting services provider is an operating level or market segment level facility</skos:definition>
<cmns-av:adaptedFrom>https://www.iso20022.org/sites/default/files/2021-12/ISO10383_MIC_Release_2_0_Factsheet.pdf</cmns-av:adaptedFrom>
</owl:Class>
<owl:NamedIndividual rdf:about="&fibo-fbc-fct-mkt;MarketLevelClassifier-OPRT">
<rdf:type rdf:resource="&fibo-fbc-fct-mkt;MarketLevelClassifier"/>
<rdfs:label>market-level classifier - OPRT</rdfs:label>
<skos:definition>market-level classifier for an operating-level facility</skos:definition>
<fibo-fnd-rel-rel:hasTag>OPRT</fibo-fnd-rel-rel:hasTag>
<cmns-av:adaptedFrom>https://www.iso20022.org/sites/default/files/2021-12/ISO10383_MIC_Release_2_0_Factsheet.pdf</cmns-av:adaptedFrom>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-fbc-fct-mkt;MarketLevelClassifier-SGMT">
<rdf:type rdf:resource="&fibo-fbc-fct-mkt;MarketLevelClassifier"/>
<rdfs:label>market-level classifier - SGMT</rdfs:label>
<skos:definition>market-level classifier for a segment-level facility</skos:definition>
<fibo-fnd-rel-rel:hasTag>SGMT</fibo-fnd-rel-rel:hasTag>
<cmns-av:adaptedFrom>https://www.iso20022.org/sites/default/files/2021-12/ISO10383_MIC_Release_2_0_Factsheet.pdf</cmns-av:adaptedFrom>
</owl:NamedIndividual>
<owl:Class rdf:about="&fibo-fbc-fct-mkt;MarketSegmentLevelMarket">
<rdfs:subClassOf rdf:resource="&fibo-fbc-fct-mkt;Exchange"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&cmns-cls;isClassifiedBy"/>
<owl:hasValue rdf:resource="&fibo-fbc-fct-mkt;MarketLevelClassifier-SGMT"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&cmns-col;isPartOf"/>
<owl:someValuesFrom rdf:resource="&fibo-fbc-fct-mkt;OperatingLevelMarket"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label>market segment-level market</rdfs:label>
<skos:definition>section of an exchange/market/trade reporting facility that specialises in one or more specific instruments or that is regulated differently</skos:definition>
<skos:example>Dark pool</skos:example>
<skos:note>A market segment MIC can only be registered if an operating/exchange MIC already exists.</skos:note>
<skos:note>It is not required to have a MIC registered for all segments of a market, only for those segments that need to be identified.</skos:note>
<cmns-av:adaptedFrom>ISO 10383, Securities and related financial instruments - Codes for exchanges and market identification (MIC), Third edition, 2012-10-01, confirmed 2018-03-29, clause 2.2</cmns-av:adaptedFrom>
<cmns-av:adaptedFrom>https://www.iso20022.org/sites/default/files/2021-12/ISO10383_MIC_Release_2_0_Factsheet.pdf</cmns-av:adaptedFrom>
</owl:Class>
<owl:Class rdf:about="&fibo-fbc-fct-mkt;MarketSegmentLevelMarketIdentifier">
<rdfs:subClassOf rdf:resource="&fibo-fbc-fct-mkt;MarketIdentifier"/>
<rdfs:label>market segment-level market identifier</rdfs:label>
<skos:definition>market identifier that identifies a section of an exchange/market/trade reporting facility that specialises in one or more specific instruments or that is regulated differently</skos:definition>
<cmns-av:adaptedFrom>ISO 10383, Securities and related financial instruments - Codes for exchanges and market identification (MIC), Third edition, 2012-10-01, confirmed 2018-03-29, clause 2.2</cmns-av:adaptedFrom>
<cmns-av:adaptedFrom>https://www.iso20022.org/sites/default/files/2021-12/ISO10383_MIC_Release_2_0_Factsheet.pdf</cmns-av:adaptedFrom>
</owl:Class>
<owl:NamedIndividual rdf:about="&fibo-fbc-fct-mkt;ModifiedMICStatus">
<owl:sameAs rdf:resource="&fibo-fbc-fct-mkt;UpdatedMICStatus"/>
<owl:deprecated rdf:datatype="&xsd;boolean">true</owl:deprecated>
</owl:NamedIndividual>
<owl:Class rdf:about="&fibo-fbc-fct-mkt;MultilateralTradingFacility">
<rdfs:subClassOf rdf:resource="&fibo-fbc-fct-mkt;AlternativeTradingSystem"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&cmns-cls;isClassifiedBy"/>
<owl:hasValue rdf:resource="&fibo-fbc-fct-mkt;MarketCategoryClassifier-MLTF"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label>multilateral trading facility</rdfs:label>
<skos:definition>trading system that facilitates the exchange of financial instruments between multiple parties</skos:definition>
<cmns-av:abbreviation>MTF</cmns-av:abbreviation>
<cmns-av:adaptedFrom>http://www.investopedia.com/terms/m/multilateral_trading_facility.asp</cmns-av:adaptedFrom>
<cmns-av:adaptedFrom>https://www.iso20022.org/sites/default/files/2021-12/ISO10383_MIC_Release_2_0_Factsheet.pdf</cmns-av:adaptedFrom>
<cmns-av:explanatoryNote>Multilateral trading facilities allow eligible contract participants to gather and transfer a variety of securities, especially instruments that may not have an official market. These facilities are often electronic systems controlled by approved market operators or larger investment banks. Traders will usually submit orders electronically, where a matching software engine is used to pair buyers with sellers.</cmns-av:explanatoryNote>
</owl:Class>
<owl:Class rdf:about="&fibo-fbc-fct-mkt;OffMarketFacility">
<rdfs:subClassOf rdf:resource="&fibo-fbc-fct-mkt;Exchange"/>
<rdfs:label>off-market facility</rdfs:label>
<skos:definition>facility used for reporting over-the-counter (OTC) and other direct trades that are not executed by the exchange but are reported through the exchange</skos:definition>
<cmns-av:synonym>off-book</cmns-av:synonym>
<cmns-av:synonym>off-facility</cmns-av:synonym>
</owl:Class>
<owl:Class rdf:about="&fibo-fbc-fct-mkt;OperatingLevelMarket">
<rdfs:subClassOf rdf:resource="&fibo-fbc-fct-mkt;Exchange"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&cmns-cls;isClassifiedBy"/>
<owl:hasValue rdf:resource="&fibo-fbc-fct-mkt;MarketLevelClassifier-OPRT"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&cmns-id;isIdentifiedBy"/>
<owl:onClass rdf:resource="&fibo-fbc-fct-mkt;OperatingLevelMarketIdentifier"/>
<owl:minQualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">0</owl:minQualifiedCardinality>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label>operating-level market</rdfs:label>
<skos:definition>exchange/market/trade reporting facility in a specific market/country</skos:definition>
<cmns-av:adaptedFrom>ISO 10383, Securities and related financial instruments - Codes for exchanges and market identification (MIC), Third edition, 2012-10-01, confirmed 2018-03-29, clause 2.1</cmns-av:adaptedFrom>
<cmns-av:adaptedFrom>https://www.iso20022.org/sites/default/files/2021-12/ISO10383_MIC_Release_2_0_Factsheet.pdf</cmns-av:adaptedFrom>
</owl:Class>
<owl:Class rdf:about="&fibo-fbc-fct-mkt;OperatingLevelMarketIdentifier">
<rdfs:subClassOf rdf:resource="&fibo-fbc-fct-mkt;MarketIdentifier"/>
<rdfs:label>operating-level market identifier</rdfs:label>
<skos:definition>market identifier that identifies an exchange/market/trade reporting facility in a specific market/country</skos:definition>
<cmns-av:adaptedFrom>ISO 10383, Securities and related financial instruments - Codes for exchanges and market identification (MIC), Third edition, 2012-10-01, confirmed 2018-03-29, clause 2.1</cmns-av:adaptedFrom>
<cmns-av:adaptedFrom>https://www.iso20022.org/sites/default/files/2021-12/ISO10383_MIC_Release_2_0_Factsheet.pdf</cmns-av:adaptedFrom>
</owl:Class>
<owl:Class rdf:about="&fibo-fbc-fct-mkt;OrganizedTradingFacility">
<rdfs:subClassOf rdf:resource="&fibo-fbc-fct-mkt;AlternativeTradingSystem"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-fnd-rel-rel;isManagedBy"/>
<owl:allValuesFrom rdf:resource="&fibo-fbc-pas-fpas;FinancialServiceProvider"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&cmns-cls;isClassifiedBy"/>
<owl:hasValue rdf:resource="&fibo-fbc-fct-mkt;MarketCategoryClassifier-OTFS"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-fnd-rel-rel;isGovernedBy"/>
<owl:someValuesFrom rdf:resource="&fibo-fnd-law-jur;Jurisdiction"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label xml:lang="en-GB">organised trading facility</rdfs:label>
<rdfs:label xml:lang="en-US">organized trading facility</rdfs:label>
<rdfs:seeAlso rdf:resource="https://www.financierworldwide.com/organised-trading-facilities-how-they-differ-from-mtfs"/>
<skos:definition>multi-lateral system which is not an RM or an MTF and in which multiple third-party buying and selling interests in bonds, structured finance products, emission allowances or derivatives are able to interact in the system in a way that results in a contract in accordance with the provisions of Title II of MiFID II</skos:definition>
<cmns-av:abbreviation>OTF</cmns-av:abbreviation>
<cmns-av:adaptedFrom>http://www.marketswiki.com/mwiki/Organized_Trading_Facility</cmns-av:adaptedFrom>
<cmns-av:adaptedFrom>https://www.iso20022.org/sites/default/files/2021-12/ISO10383_MIC_Release_2_0_Factsheet.pdf</cmns-av:adaptedFrom>
<cmns-av:explanatoryNote>OTFs were introduced by the European Commission as part of MiFID II and are focused on non-equities such as derivatives and cash bond markets.
OTFs are intended to be similar in scope to a swap execution facility (SEF), a type of entity created by the Dodd-Frank Act in the U.S. The goal of SEFs and OTFs is to bring transparency and structure to OTC derivatives trading.</cmns-av:explanatoryNote>
<cmns-av:explanatoryNote>Unlike RMs and MTFs, operators of OTFs will have discretion as to how to execute orders, subject to pre-transparency and best execution obligations.</cmns-av:explanatoryNote>
</owl:Class>
<owl:Class rdf:about="&fibo-fbc-fct-mkt;QuoteDrivenMarket">
<rdfs:subClassOf rdf:resource="&fibo-fbc-fct-mkt;Exchange"/>
<rdfs:label>quote-driven market</rdfs:label>
<skos:definition>exchange in which prices are determined from bid and ask quotations made by market makers, dealers, or specialists</skos:definition>
<cmns-av:explanatoryNote>In a quote-driven market, dealers fill orders from their own inventory or by matching them with other orders. Note that this differs from a typical market, which is order-driven rather than quote-driven.</cmns-av:explanatoryNote>
<cmns-av:synonym>price-driven market</cmns-av:synonym>
</owl:Class>
<owl:Class rdf:about="&fibo-fbc-fct-mkt;RecognizedMarketOperator">
<rdfs:subClassOf rdf:resource="&fibo-fbc-fct-mkt;Exchange"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&cmns-cls;isClassifiedBy"/>
<owl:hasValue rdf:resource="&fibo-fbc-fct-mkt;MarketCategoryClassifier-RMOS"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label xml:lang="en-GB">recognised market operator</rdfs:label>
<rdfs:label xml:lang="en-US">recognized market operator</rdfs:label>
<skos:definition>exchange that is operated or maintained by an operator registered under certain securities regulations that brings together purchasers and sellers of capital market products</skos:definition>
<cmns-av:abbreviation>RMO</cmns-av:abbreviation>
<cmns-av:adaptedFrom>https://www.igi-global.com/dictionary/regulating-fintech-businesses/77383</cmns-av:adaptedFrom>
<cmns-av:adaptedFrom>https://www.iso20022.org/sites/default/files/2021-12/ISO10383_MIC_Release_2_0_Factsheet.pdf</cmns-av:adaptedFrom>
<cmns-av:adaptedFrom>https://www.lawinsider.com/dictionary/recognized-market</cmns-av:adaptedFrom>
<cmns-av:adaptedFrom>https://www.mas.gov.sg/regulation/capital-markets/approved-exchange-ae-or-recognised-market-operator-rmo-licence</cmns-av:adaptedFrom>
</owl:Class>
<owl:Class rdf:about="&fibo-fbc-fct-mkt;RegisteredMultilateralTradingFacility">
<rdfs:subClassOf rdf:resource="&fibo-fbc-fct-mkt;MultilateralTradingFacility"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-fbc-fct-ra;isRegisteredBy"/>
<owl:someValuesFrom rdf:resource="&fibo-fbc-fct-ra;RegistrationAuthority"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-fnd-rel-rel;isGovernedBy"/>
<owl:someValuesFrom rdf:resource="&fibo-fnd-law-jur;Jurisdiction"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-fnd-rel-rel;isManagedBy"/>
<owl:someValuesFrom rdf:resource="&fibo-fbc-pas-fpas;FinancialServiceProvider"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label>registered multilateral trading facility</rdfs:label>
<skos:definition>multilateral system operated by an investment firm or market operator, which brings together multiple third-party buying and selling interests in financial instruments in the system, in accordance with non-discretionary rules, in a way that results in a contract in accordance with the provisions of Title II of the MiFID II</skos:definition>
</owl:Class>
<owl:Class rdf:about="&fibo-fbc-fct-mkt;RegulatedExchange">
<rdfs:subClassOf rdf:resource="&fibo-fbc-fct-mkt;Exchange"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&cmns-cls;isClassifiedBy"/>
<owl:hasValue rdf:resource="&fibo-fbc-fct-mkt;MarketCategoryClassifier-RMKT"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-fbc-fct-rga;isRegulatedBy"/>
<owl:someValuesFrom rdf:resource="&fibo-fbc-fct-rga;RegulatoryAgency"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-fnd-rel-rel;isGovernedBy"/>
<owl:someValuesFrom rdf:resource="&fibo-fnd-law-jur;Jurisdiction"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label>regulated exchange</rdfs:label>
<skos:definition>regulated market that is operated by and/or managed by a market operator that brings together or facilitates the bringing together of multiple third-party buying and selling interests in financial instruments</skos:definition>
<cmns-av:abbreviation>RM</cmns-av:abbreviation>
<cmns-av:adaptedFrom>http://www.investopedia.com/terms/r/regulated-market.asp</cmns-av:adaptedFrom>
<cmns-av:adaptedFrom>https://www.iso20022.org/sites/default/files/2021-12/ISO10383_MIC_Release_2_0_Factsheet.pdf</cmns-av:adaptedFrom>
<cmns-av:explanatoryNote>In the financial community in the EU, such an exchange operates in accordance with its non-discretionary rules in a way that results in a contract, in respect of the financial instruments admitted to trading under its rules and/or systems, and which is authorised and functions regularly and in accordance with the provisions of Title III of MiFID II.</cmns-av:explanatoryNote>
<cmns-av:synonym>regulated market</cmns-av:synonym>
</owl:Class>
<owl:Class rdf:about="&fibo-fbc-fct-mkt;SwapExecutionFacility">
<rdfs:subClassOf rdf:resource="&fibo-fbc-fct-mkt;Exchange"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&cmns-cls;isClassifiedBy"/>
<owl:hasValue rdf:resource="&fibo-fbc-fct-mkt;MarketCategoryClassifier-SEFS"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label>swap execution facility</rdfs:label>
<skos:definition>exchange that enables participants to execute and trade swaps</skos:definition>
<cmns-av:abbreviation>SEF</cmns-av:abbreviation>
<cmns-av:adaptedFrom>https://www.iso20022.org/sites/default/files/2021-12/ISO10383_MIC_Release_2_0_Factsheet.pdf</cmns-av:adaptedFrom>
<cmns-av:explanatoryNote>Swap execution facilities, including trading systems and other platforms, allow for greater transparency and represent a significant shift in the way derivative trading has been done. The Dodd-Frank Act lays the foundation for this change of derivative execution.</cmns-av:explanatoryNote>
</owl:Class>
<owl:Class rdf:about="&fibo-fbc-fct-mkt;SystematicInternaliser">
<rdfs:subClassOf rdf:resource="&fibo-fbc-fct-mkt;Exchange"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&cmns-cls;isClassifiedBy"/>
<owl:hasValue rdf:resource="&fibo-fbc-fct-mkt;MarketCategoryClassifier-SINT"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label xml:lang="en-GB">systematic internaliser</rdfs:label>
<rdfs:label xml:lang="en-US">systematic internalizer</rdfs:label>
<skos:definition>investment firm that, on an organised, frequent, systematic and substantial basis, deals on its own account by executing client orders outside a regulated exchange, MTF or OTF without operating a multilateral system</skos:definition>
<cmns-av:abbreviation>SI</cmns-av:abbreviation>
<cmns-av:adaptedFrom>https://www.emissions-euets.com/systematic-internaliser</cmns-av:adaptedFrom>
<cmns-av:adaptedFrom>https://www.iso20022.org/sites/default/files/2021-12/ISO10383_MIC_Release_2_0_Factsheet.pdf</cmns-av:adaptedFrom>
</owl:Class>
<owl:Class rdf:about="&fibo-fbc-fct-mkt;TradeReportingFacility">
<rdfs:subClassOf rdf:resource="&fibo-fnd-plc-fac;Facility"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&cmns-cls;isClassifiedBy"/>
<owl:hasValue rdf:resource="&fibo-fbc-fct-mkt;MarketCategoryClassifier-TRFS"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&cmns-id;isIdentifiedBy"/>
<owl:onClass rdf:resource="&fibo-fbc-fct-mkt;MarketIdentifier"/>
<owl:minQualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">0</owl:minQualifiedCardinality>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-fnd-rel-rel;isManagedBy"/>
<owl:onClass rdf:resource="&fibo-fbc-pas-fpas;FinancialServiceProvider"/>
<owl:minQualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">0</owl:minQualifiedCardinality>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-fbc-fct-mkt;hasFacilityAcronym"/>
<owl:minQualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">0</owl:minQualifiedCardinality>
<owl:onDataRange rdf:resource="&rdfs;Literal"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-fnd-rel-rel;hasFormalName"/>
<owl:minQualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">0</owl:minQualifiedCardinality>
<owl:onDataRange rdf:resource="&rdfs;Literal"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-fbc-fct-mkt;operatesInCountry"/>
<owl:someValuesFrom rdf:resource="&lcc-cr;Country"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-fbc-fct-mkt;operatesInMunicipality"/>
<owl:someValuesFrom rdf:resource="&fibo-fnd-plc-loc;Municipality"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label>trade reporting facility</rdfs:label>
<skos:definition>facility that provides a mechanism for the reporting of transactions effected otherwise than on an exchange</skos:definition>
<skos:example>In the United States, for example, trades by FINRA members in Nasdaq-listed and other exchange-listed securities, as approved by the Securities and Exchange Commission (SEC), executed otherwise than on an exchange may be reported to a FINRA TRF. While each FINRA TRF is affiliated with a registered national securities exchange, each FINRA TRF is a FINRA facility and is subject to FINRA's registration as a national securities association.</skos:example>
<cmns-av:abbreviation>TRF</cmns-av:abbreviation>
<cmns-av:adaptedFrom>https://www.finra.org/filing-reporting/trade-reporting-facility-trf</cmns-av:adaptedFrom>
<cmns-av:adaptedFrom>https://www.iso20022.org/sites/default/files/2021-12/ISO10383_MIC_Release_2_0_Factsheet.pdf</cmns-av:adaptedFrom>
</owl:Class>
<owl:NamedIndividual rdf:about="&fibo-fbc-fct-mkt;UpdatedMICStatus">
<rdf:type rdf:resource="&fibo-fbc-fct-mkt;MarketIdentifierCodeStatus"/>
<rdfs:label>updated MIC status</rdfs:label>
<skos:definition>as of the last report or update, the exchange code was revised</skos:definition>
<fibo-fnd-rel-rel:hasTag>UPDATED</fibo-fnd-rel-rel:hasTag>
<cmns-av:adaptedFrom>ISO 10383, Securities and related financial instruments - Codes for exchanges and market identification (MIC), Third edition, version 2.0</cmns-av:adaptedFrom>
<cmns-av:adaptedFrom>https://www.iso20022.org/sites/default/files/2021-12/ISO10383_MIC_Release_2_0_Factsheet.pdf</cmns-av:adaptedFrom>
</owl:NamedIndividual>
<owl:DatatypeProperty rdf:about="&fibo-fbc-fct-mkt;hasExchangeAcronym">
<owl:deprecated rdf:datatype="&xsd;boolean">true</owl:deprecated>
<owl:equivalentProperty rdf:resource="&fibo-fbc-fct-mkt;hasFacilityAcronym"/>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:about="&fibo-fbc-fct-mkt;hasExchangeName">
<owl:deprecated rdf:datatype="&xsd;boolean">true</owl:deprecated>
<owl:equivalentProperty rdf:resource="&fibo-fnd-rel-rel;hasFormalName"/>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:about="&fibo-fbc-fct-mkt;hasFacilityAcronym">
<rdfs:subPropertyOf rdf:resource="&fibo-fnd-rel-rel;hasAlias"/>
<rdfs:label>has facility acronym</rdfs:label>
<skos:definition>indicates a known acronym of the market</skos:definition>
<cmns-av:adaptedFrom>https://www.iso20022.org/sites/default/files/2021-12/ISO10383_MIC_Release_2_0_Factsheet.pdf</cmns-av:adaptedFrom>
</owl:DatatypeProperty>
<owl:ObjectProperty rdf:about="&fibo-fbc-fct-mkt;hasMarketIdentifierCodeStatus">
<rdfs:subPropertyOf rdf:resource="&fibo-fbc-fct-breg;hasRegistrationStatus"/>
<rdfs:label>has market identifier code status</rdfs:label>
<rdfs:range rdf:resource="&fibo-fbc-fct-mkt;MarketIdentifierCodeStatus"/>
<skos:definition>indicates the status of a specific market identifier code (MIC)</skos:definition>
</owl:ObjectProperty>
<owl:DatatypeProperty rdf:about="&fibo-fbc-fct-mkt;hasOperatingOrSegmentIndicator">
<owl:deprecated rdf:datatype="&xsd;boolean">true</owl:deprecated>
</owl:DatatypeProperty>
<owl:ObjectProperty rdf:about="&fibo-fbc-fct-mkt;operatesInCountry">
<rdfs:subPropertyOf rdf:resource="&fibo-fnd-plc-loc;hasCountry"/>
<rdfs:label>operates in country</rdfs:label>
<rdfs:range rdf:resource="&lcc-cr;Country"/>
<skos:definition>indicates the ISO 3166-1 country in which an exchange, data reporting services provider, or crypto asset services provider operates</skos:definition>
<cmns-av:adaptedFrom>https://www.iso20022.org/sites/default/files/2021-12/ISO10383_MIC_Release_2_0_Factsheet.pdf</cmns-av:adaptedFrom>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="&fibo-fbc-fct-mkt;operatesInMunicipality">
<rdfs:subPropertyOf rdf:resource="&fibo-fnd-plc-loc;hasMunicipality"/>
<rdfs:label>operates in municipality</rdfs:label>
<rdfs:range rdf:resource="&fibo-fnd-plc-loc;Municipality"/>
<skos:definition>indicates the municipality or business center in which in which an exchange, data reporting services provider, or crypto asset services provider operates</skos:definition>
<cmns-av:adaptedFrom>https://www.iso20022.org/sites/default/files/2021-12/ISO10383_MIC_Release_2_0_Factsheet.pdf</cmns-av:adaptedFrom>
</owl:ObjectProperty>
</rdf:RDF> |