Datasets:
File size: 82,171 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 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 |
<?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-dt "https://www.omg.org/spec/Commons/DatesAndTimes/">
<!ENTITY dct "http://purl.org/dc/terms/">
<!ENTITY fibo-be-corp-corp "https://spec.edmcouncil.org/fibo/ontology/BE/Corporations/Corporations/">
<!ENTITY fibo-be-le-lp "https://spec.edmcouncil.org/fibo/ontology/BE/LegalEntities/LegalPersons/">
<!ENTITY fibo-be-oac-cown "https://spec.edmcouncil.org/fibo/ontology/BE/OwnershipAndControl/CorporateOwnership/">
<!ENTITY fibo-be-ptr-ptr "https://spec.edmcouncil.org/fibo/ontology/BE/Partnerships/Partnerships/">
<!ENTITY fibo-fbc-dae-dbt "https://spec.edmcouncil.org/fibo/ontology/FBC/DebtAndEquities/Debt/">
<!ENTITY fibo-fbc-fct-fse "https://spec.edmcouncil.org/fibo/ontology/FBC/FunctionalEntities/FinancialServicesEntities/">
<!ENTITY fibo-fbc-fi-fi "https://spec.edmcouncil.org/fibo/ontology/FBC/FinancialInstruments/FinancialInstruments/">
<!ENTITY fibo-fbc-fi-ip "https://spec.edmcouncil.org/fibo/ontology/FBC/FinancialInstruments/InstrumentPricing/">
<!ENTITY fibo-fbc-pas-fpas "https://spec.edmcouncil.org/fibo/ontology/FBC/ProductsAndServices/FinancialProductsAndServices/">
<!ENTITY fibo-fnd-acc-aeq "https://spec.edmcouncil.org/fibo/ontology/FND/Accounting/AccountingEquity/">
<!ENTITY fibo-fnd-acc-cur "https://spec.edmcouncil.org/fibo/ontology/FND/Accounting/CurrencyAmount/">
<!ENTITY fibo-fnd-agr-agr "https://spec.edmcouncil.org/fibo/ontology/FND/Agreements/Agreements/">
<!ENTITY fibo-fnd-agr-ctr "https://spec.edmcouncil.org/fibo/ontology/FND/Agreements/Contracts/">
<!ENTITY fibo-fnd-arr-lif "https://spec.edmcouncil.org/fibo/ontology/FND/Arrangements/Lifecycles/">
<!ENTITY fibo-fnd-dt-bd "https://spec.edmcouncil.org/fibo/ontology/FND/DatesAndTimes/BusinessDates/">
<!ENTITY fibo-fnd-dt-fd "https://spec.edmcouncil.org/fibo/ontology/FND/DatesAndTimes/FinancialDates/">
<!ENTITY fibo-fnd-gao-obj "https://spec.edmcouncil.org/fibo/ontology/FND/GoalsAndObjectives/Objectives/">
<!ENTITY fibo-fnd-law-lcap "https://spec.edmcouncil.org/fibo/ontology/FND/Law/LegalCapacity/">
<!ENTITY fibo-fnd-oac-own "https://spec.edmcouncil.org/fibo/ontology/FND/OwnershipAndControl/Ownership/">
<!ENTITY fibo-fnd-pas-psch "https://spec.edmcouncil.org/fibo/ontology/FND/ProductsAndServices/PaymentsAndSchedules/">
<!ENTITY fibo-fnd-pty-rl "https://spec.edmcouncil.org/fibo/ontology/FND/Parties/Roles/">
<!ENTITY fibo-fnd-qt-qtu "https://spec.edmcouncil.org/fibo/ontology/FND/Quantities/QuantitiesAndUnits/">
<!ENTITY fibo-fnd-rel-rel "https://spec.edmcouncil.org/fibo/ontology/FND/Relations/Relations/">
<!ENTITY fibo-fnd-utl-alx "https://spec.edmcouncil.org/fibo/ontology/FND/Utilities/Analytics/">
<!ENTITY fibo-fnd-utl-av "https://spec.edmcouncil.org/fibo/ontology/FND/Utilities/AnnotationVocabulary/">
<!ENTITY fibo-ind-ir-ir "https://spec.edmcouncil.org/fibo/ontology/IND/InterestRates/InterestRates/">
<!ENTITY fibo-sec-eq-eq "https://spec.edmcouncil.org/fibo/ontology/SEC/Equities/EquityInstruments/">
<!ENTITY fibo-sec-sec-iss "https://spec.edmcouncil.org/fibo/ontology/SEC/Securities/SecuritiesIssuance/">
<!ENTITY fibo-sec-sec-lst "https://spec.edmcouncil.org/fibo/ontology/SEC/Securities/SecuritiesListings/">
<!ENTITY fibo-sec-sec-sch "https://spec.edmcouncil.org/fibo/ontology/SEC/Securities/ParametricSchedules/">
<!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/SEC/Equities/EquityInstruments/"
xmlns:cmns-av="https://www.omg.org/spec/Commons/AnnotationVocabulary/"
xmlns:cmns-cls="https://www.omg.org/spec/Commons/Classifiers/"
xmlns:cmns-dt="https://www.omg.org/spec/Commons/DatesAndTimes/"
xmlns:dct="http://purl.org/dc/terms/"
xmlns:fibo-be-corp-corp="https://spec.edmcouncil.org/fibo/ontology/BE/Corporations/Corporations/"
xmlns:fibo-be-le-lp="https://spec.edmcouncil.org/fibo/ontology/BE/LegalEntities/LegalPersons/"
xmlns:fibo-be-oac-cown="https://spec.edmcouncil.org/fibo/ontology/BE/OwnershipAndControl/CorporateOwnership/"
xmlns:fibo-be-ptr-ptr="https://spec.edmcouncil.org/fibo/ontology/BE/Partnerships/Partnerships/"
xmlns:fibo-fbc-dae-dbt="https://spec.edmcouncil.org/fibo/ontology/FBC/DebtAndEquities/Debt/"
xmlns:fibo-fbc-fct-fse="https://spec.edmcouncil.org/fibo/ontology/FBC/FunctionalEntities/FinancialServicesEntities/"
xmlns:fibo-fbc-fi-fi="https://spec.edmcouncil.org/fibo/ontology/FBC/FinancialInstruments/FinancialInstruments/"
xmlns:fibo-fbc-fi-ip="https://spec.edmcouncil.org/fibo/ontology/FBC/FinancialInstruments/InstrumentPricing/"
xmlns:fibo-fbc-pas-fpas="https://spec.edmcouncil.org/fibo/ontology/FBC/ProductsAndServices/FinancialProductsAndServices/"
xmlns:fibo-fnd-acc-aeq="https://spec.edmcouncil.org/fibo/ontology/FND/Accounting/AccountingEquity/"
xmlns:fibo-fnd-acc-cur="https://spec.edmcouncil.org/fibo/ontology/FND/Accounting/CurrencyAmount/"
xmlns:fibo-fnd-agr-agr="https://spec.edmcouncil.org/fibo/ontology/FND/Agreements/Agreements/"
xmlns:fibo-fnd-agr-ctr="https://spec.edmcouncil.org/fibo/ontology/FND/Agreements/Contracts/"
xmlns:fibo-fnd-arr-lif="https://spec.edmcouncil.org/fibo/ontology/FND/Arrangements/Lifecycles/"
xmlns:fibo-fnd-dt-bd="https://spec.edmcouncil.org/fibo/ontology/FND/DatesAndTimes/BusinessDates/"
xmlns:fibo-fnd-dt-fd="https://spec.edmcouncil.org/fibo/ontology/FND/DatesAndTimes/FinancialDates/"
xmlns:fibo-fnd-gao-obj="https://spec.edmcouncil.org/fibo/ontology/FND/GoalsAndObjectives/Objectives/"
xmlns:fibo-fnd-law-lcap="https://spec.edmcouncil.org/fibo/ontology/FND/Law/LegalCapacity/"
xmlns:fibo-fnd-oac-own="https://spec.edmcouncil.org/fibo/ontology/FND/OwnershipAndControl/Ownership/"
xmlns:fibo-fnd-pas-psch="https://spec.edmcouncil.org/fibo/ontology/FND/ProductsAndServices/PaymentsAndSchedules/"
xmlns:fibo-fnd-pty-rl="https://spec.edmcouncil.org/fibo/ontology/FND/Parties/Roles/"
xmlns:fibo-fnd-qt-qtu="https://spec.edmcouncil.org/fibo/ontology/FND/Quantities/QuantitiesAndUnits/"
xmlns:fibo-fnd-rel-rel="https://spec.edmcouncil.org/fibo/ontology/FND/Relations/Relations/"
xmlns:fibo-fnd-utl-alx="https://spec.edmcouncil.org/fibo/ontology/FND/Utilities/Analytics/"
xmlns:fibo-fnd-utl-av="https://spec.edmcouncil.org/fibo/ontology/FND/Utilities/AnnotationVocabulary/"
xmlns:fibo-ind-ir-ir="https://spec.edmcouncil.org/fibo/ontology/IND/InterestRates/InterestRates/"
xmlns:fibo-sec-eq-eq="https://spec.edmcouncil.org/fibo/ontology/SEC/Equities/EquityInstruments/"
xmlns:fibo-sec-sec-iss="https://spec.edmcouncil.org/fibo/ontology/SEC/Securities/SecuritiesIssuance/"
xmlns:fibo-sec-sec-lst="https://spec.edmcouncil.org/fibo/ontology/SEC/Securities/SecuritiesListings/"
xmlns:fibo-sec-sec-sch="https://spec.edmcouncil.org/fibo/ontology/SEC/Securities/ParametricSchedules/"
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/SEC/Equities/EquityInstruments/">
<rdfs:label xml:lang="en">Equity Instruments Ontology</rdfs:label>
<dct:abstract>Core terms are those fundamental to all equity instruments. This ontology also distinguishes between privately held and publicly traded equity instruments, and defines a number of related concepts, such as voting rights.</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/Corporations/Corporations/"/>
<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/BE/LegalEntities/LegalPersons/"/>
<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/BE/OwnershipAndControl/CorporateOwnership/"/>
<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/BE/Partnerships/Partnerships/"/>
<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/FBC/DebtAndEquities/Debt/"/>
<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/FBC/FinancialInstruments/FinancialInstruments/"/>
<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/FBC/FinancialInstruments/InstrumentPricing/"/>
<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/FBC/FunctionalEntities/FinancialServicesEntities/"/>
<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/FBC/ProductsAndServices/FinancialProductsAndServices/"/>
<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/FND/Accounting/AccountingEquity/"/>
<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/FND/Accounting/CurrencyAmount/"/>
<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/FND/Agreements/Agreements/"/>
<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/FND/Agreements/Contracts/"/>
<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/FND/Arrangements/Lifecycles/"/>
<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/FND/DatesAndTimes/BusinessDates/"/>
<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/FND/DatesAndTimes/FinancialDates/"/>
<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/FND/Law/LegalCapacity/"/>
<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/FND/OwnershipAndControl/Ownership/"/>
<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/FND/Parties/Roles/"/>
<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/FND/ProductsAndServices/PaymentsAndSchedules/"/>
<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/FND/Quantities/QuantitiesAndUnits/"/>
<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/Analytics/"/>
<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/FND/Utilities/AnnotationVocabulary/"/>
<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/IND/InterestRates/InterestRates/"/>
<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/SEC/Securities/ParametricSchedules/"/>
<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/SEC/Securities/SecuritiesIssuance/"/>
<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/SEC/Securities/SecuritiesListings/"/>
<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/DatesAndTimes/"/>
<owl:versionIRI rdf:resource="https://spec.edmcouncil.org/fibo/ontology/SEC/20230601/Equities/EquityInstruments/"/>
<skos:changeNote>The https://spec.edmcouncil.org/fibo/ontology/SEC/20180801/Equities/EquityInstruments.rdf version of this ontology was revised to replace 'publicly-traded share' with 'exchange-specific share', which is the more commonly used designation and corresponds better with the intended semantics of this concept, to merge in concepts that were formerly in a separate ShareTerms ontology, and eliminate deprecated elements.</skos:changeNote>
<skos:changeNote>The https://spec.edmcouncil.org/fibo/ontology/SEC/20190901/Equities/EquityInstruments.rdf version of this ontology was revised to refine the definition of listed share, update definitions to remove leading articles, add missing properties and restrictions, revise the definition of dividend.</skos:changeNote>
<skos:changeNote>The https://spec.edmcouncil.org/fibo/ontology/SEC/20191201/Equities/EquityInstruments.rdf version of this ontology was revised to refine the definition of share to include a restriction for hasSharesOutstanding, eliminate duplication of concepts in LCC, and add the concept of an equity issuer.</skos:changeNote>
<skos:changeNote>The https://spec.edmcouncil.org/fibo/ontology/SEC/20200301/Equities/EquityInstruments.rdf version of this ontology was revised to incorporate additional features required to map the CFI classification scheme to equity instruments, including features specific to preferred shares.</skos:changeNote>
<skos:changeNote>The https://spec.edmcouncil.org/fibo/ontology/SEC/20200801/Equities/EquityInstruments.rdf version of this ontology was revised to incorporate a property allowing representation of the share class, streamline the representation of voting rights and payment form, clean up ambiguous definitions, and eliminate redundant restrictions related to security form.</skos:changeNote>
<skos:changeNote>The https://spec.edmcouncil.org/fibo/ontology/SEC/20201201/Equities/EquityInstruments.rdf version of this ontology was revised to add concepts covering additional features of preferred shares, move the two exhaustive CFI-specific classes to the Equity CFI individuals ontology, rename EquityIssuer to ShareIssuer to be clearer about the intent, and add the concept of a price per share.</skos:changeNote>
<skos:changeNote>The https://spec.edmcouncil.org/fibo/ontology/SEC/20210301/Equities/EquityInstruments.rdf version of this ontology was revised to rename ownership related properties for consistent alignment with the ownership situational pattern and to move properties / restrictions that define how many shares have been issued from the issuer to the share.</skos:changeNote>
<skos:changeNote>The https://spec.edmcouncil.org/fibo/ontology/SEC/20210601/Equities/EquityInstruments.rdf version of this ontology was revised to revise the definition of dividend to explicitly state that it reflects the announced commitment of a specific dividend rather than a more general policy.</skos:changeNote>
<skos:changeNote>The https://spec.edmcouncil.org/fibo/ontology/SEC/20210701/Equities/EquityInstruments.rdf version of this ontology was revised to reflect the move of hasMaturityDate from FinancialInstruments to Debt in FBC and eliminate named individuals for specifying voting rights, which caused issues for some tools.</skos:changeNote>
<skos:changeNote>The https://spec.edmcouncil.org/fibo/ontology/SEC/20220101/Equities/EquityInstruments.rdf version of this ontology was revised to deprecate the notion of a securities restriction specific to a limited partnership fund unit, which required import of unnecessary content and would not be used in practice.</skos:changeNote>
<skos:changeNote>The https://spec.edmcouncil.org/fibo/ontology/SEC/20220301/Equities/EquityInstruments.rdf version of this ontology was revised to clean up deprecated elements, most of which had been in the ontology for awhile.</skos:changeNote>
<skos:changeNote>The https://spec.edmcouncil.org/fibo/ontology/SEC/20220501/Equities/EquityInstruments.rdf version of this ontology was revised to address text formatting hygiene issues.</skos:changeNote>
<skos:changeNote>The https://spec.edmcouncil.org/fibo/ontology/SEC/20220801/Equities/EquityInstruments.rdf version of this ontology was revised to add the notion of a VIE share and integrate dividend distribution method with strategy.</skos:changeNote>
<skos:changeNote>The https://spec.edmcouncil.org/fibo/ontology/SEC/20221001/Equities/EquityInstruments.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/SEC/20230201/Equities/EquityInstruments.rdf version of this ontology was modified to use the Commons Ontology Library (Commons) rather than the OMG's Languages, Countries and Codes (LCC), eliminating redundancies in FIBO as appropriate.</skos:changeNote>
<skos:changeNote>The https://spec.edmcouncil.org/fibo/ontology/SEC/20230301/Equities/EquityInstruments.rdf version of this ontology was modified to clarify a restriction on perpetual preferred share, add extendible preferred share, and add the CFI definition for limited partnership unit.</skos:changeNote>
<fibo-fnd-utl-av:hasMaturityLevel rdf:resource="&fibo-fnd-utl-av;Release"/>
<cmns-av:copyright>Copyright (c) 2013-2023 EDM Council, Inc.</cmns-av:copyright>
<cmns-av:copyright>Copyright (c) 2018-2023 Object Management Group, Inc.</cmns-av:copyright>
</owl:Ontology>
<owl:Class rdf:about="&fibo-sec-eq-eq;AdjustableRateDividend">
<rdfs:subClassOf rdf:resource="&fibo-sec-eq-eq;PreferredDividend"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-fnd-qt-qtu;hasQuantityKind"/>
<owl:someValuesFrom rdf:resource="&fibo-ind-ir-ir;InterestRateBenchmark"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-sec-eq-eq;hasAdjustableDividendRate"/>
<owl:someValuesFrom rdf:resource="&fibo-fnd-acc-cur;PercentageMonetaryAmount"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label>adjustable rate dividend</rdfs:label>
<skos:definition>dividend that varies with a benchmark</skos:definition>
<cmns-av:explanatoryNote>The value of the dividend from the preferred share is set by a predetermined formula to move with rates, and because of this flexibility preferred prices are often more stable then fixed-rate preferred stocks.</cmns-av:explanatoryNote>
</owl:Class>
<owl:Class rdf:about="&fibo-sec-eq-eq;AuctionRateDividend">
<rdfs:subClassOf rdf:resource="&fibo-sec-eq-eq;PreferredDividend"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-sec-eq-eq;hasAdjustableDividendRate"/>
<owl:someValuesFrom rdf:resource="&fibo-fnd-acc-cur;PercentageMonetaryAmount"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label>auction rate dividend</rdfs:label>
<skos:definition>preferred share dividend whose rate is periodically reset through an auction, typically every 7, 14, 28, or 35 days</skos:definition>
</owl:Class>
<owl:Class rdf:about="&fibo-sec-eq-eq;CommonShare">
<rdfs:subClassOf rdf:resource="&fibo-sec-eq-eq;Share"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-sec-eq-eq;hasDividend"/>
<owl:onClass rdf:resource="&fibo-sec-eq-eq;OrdinaryDividend"/>
<owl:minQualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">0</owl:minQualifiedCardinality>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label xml:lang="en-US">common share</rdfs:label>
<owl:disjointWith rdf:resource="&fibo-sec-eq-eq;PreferredShare"/>
<skos:definition>share that signifies a unit of ownership in a corporation and represents a claim on part of the corporation's assets and earnings</skos:definition>
<cmns-av:explanatoryNote>In the event that the corporation is liquidated, claims of secured and unsecured creditors and owners of bonds and preferred shares take precedence over claims of common share holders.</cmns-av:explanatoryNote>
<cmns-av:synonym xml:lang="en-GB">ordinary share</cmns-av:synonym>
</owl:Class>
<owl:Class rdf:about="&fibo-sec-eq-eq;ConvertibleCommonShare">
<rdfs:subClassOf rdf:resource="&fibo-sec-eq-eq;CommonShare"/>
<rdfs:subClassOf rdf:resource="&fibo-sec-sec-iss;ConvertibleSecurity"/>
<rdfs:label>convertible common share</rdfs:label>
<skos:definition>common share that is convertible into another security</skos:definition>
</owl:Class>
<owl:Class rdf:about="&fibo-sec-eq-eq;ConvertiblePreferredShare">
<rdfs:subClassOf rdf:resource="&fibo-sec-eq-eq;PreferredShare"/>
<rdfs:subClassOf rdf:resource="&fibo-sec-sec-iss;ConvertibleSecurity"/>
<rdfs:label>convertible preferred share</rdfs:label>
<skos:definition>preferred share that includes an option for the holder to convert the shares into a fixed number of common shares after a predetermined date</skos:definition>
<cmns-av:explanatoryNote>Most convertible preferred stock is exchanged at the request of the shareholder, but sometimes there is a provision that allows the company, or issuer, to force conversion. The value of a convertible preferred stock is ultimately based on the performance of the common stock.</cmns-av:explanatoryNote>
</owl:Class>
<owl:Class rdf:about="&fibo-sec-eq-eq;CumulativePreferredShare">
<rdfs:subClassOf rdf:resource="&fibo-sec-eq-eq;PreferredShare"/>
<rdfs:label>cumulative preferred share</rdfs:label>
<skos:definition>preferred share whose dividends, if not paid on time, accumulate until paid out</skos:definition>
<cmns-av:explanatoryNote>These dividends have precedence over ordinary dividends which cannot be paid until any cumulative dividend obligations have been paid. Dividends are typically deferred due to insufficient earnings or other business reasons.</cmns-av:explanatoryNote>
</owl:Class>
<owl:Class rdf:about="&fibo-sec-eq-eq;Custodian">
<rdfs:subClassOf rdf:resource="&fibo-fbc-fct-fse;FinancialInstitution"/>
<rdfs:subClassOf rdf:resource="&fibo-fbc-pas-fpas;ThirdPartyAgent"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-fnd-rel-rel;holds"/>
<owl:someValuesFrom rdf:resource="&fibo-sec-eq-eq;Share"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label>custodian</rdfs:label>
<skos:definition xml:lang="en">financial institution that holds customers' securities for safekeeping</skos:definition>
<cmns-av:adaptedFrom rdf:datatype="&xsd;anyURI">https://www.investopedia.com/terms/c/custodian.asp</cmns-av:adaptedFrom>
<cmns-av:explanatoryNote>The custodian may hold stocks or other assets in electronic or physical form for mutual funds, individuals, and organizational clients.</cmns-av:explanatoryNote>
</owl:Class>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eq;DistributionByCashPayment">
<rdf:type rdf:resource="&fibo-sec-eq-eq;DividendDistributionMethod"/>
<rdfs:label>distribution by payment</rdfs:label>
<skos:definition>distribution method involving payment of cash to the shareholder</skos:definition>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eq;DistributionByReinvestment">
<rdf:type rdf:resource="&fibo-sec-eq-eq;DividendDistributionMethod"/>
<rdfs:label>distribution by reinvestment</rdfs:label>
<skos:definition>distribution method involving automatic reinvestment of shareholders' dividends in additional, potentially fractional, shares in the same asset</skos:definition>
</owl:NamedIndividual>
<owl:Class rdf:about="&fibo-sec-eq-eq;Dividend">
<rdfs:subClassOf rdf:resource="&fibo-fnd-agr-agr;Commitment"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-sec-eq-eq;hasDistributionMethod"/>
<owl:onClass rdf:resource="&fibo-sec-eq-eq;DividendDistributionMethod"/>
<owl:maxQualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:maxQualifiedCardinality>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-fnd-pas-psch;hasPaymentAmount"/>
<owl:onClass rdf:resource="&fibo-fnd-acc-cur;MonetaryAmount"/>
<owl:minQualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">0</owl:minQualifiedCardinality>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-fnd-dt-fd;hasSchedule"/>
<owl:onClass rdf:resource="&fibo-sec-eq-eq;DividendSchedule"/>
<owl:minQualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">0</owl:minQualifiedCardinality>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label>dividend</rdfs:label>
<skos:definition>announced commitment to make a specific distribution of a portion of earnings to shareholders, prorated by class of security</skos:definition>
<cmns-av:explanatoryNote>The amount and timing of payment is set by the board of directors, typically quarterly. Dividends may be paid in the form of money, shares, scrip, or on rare occasion, property.</cmns-av:explanatoryNote>
</owl:Class>
<owl:Class rdf:about="&fibo-sec-eq-eq;DividendDistributionMethod">
<rdfs:subClassOf rdf:resource="&fibo-fnd-dt-bd;Convention"/>
<rdfs:subClassOf rdf:resource="&fibo-fnd-gao-obj;Strategy"/>
<rdfs:label>dividend distribution method</rdfs:label>
<skos:definition>convention by which dividends are provided to shareholders</skos:definition>
<cmns-av:explanatoryNote>Distribution may be by payment of a monetary amount or by reinvestment, as specified by the board of directors at the time a decision to issue a dividend is made.</cmns-av:explanatoryNote>
</owl:Class>
<owl:Class rdf:about="&fibo-sec-eq-eq;DividendSchedule">
<rdfs:subClassOf rdf:resource="&fibo-fnd-pas-psch;PaymentSchedule"/>
<rdfs:subClassOf rdf:resource="&fibo-sec-sec-sch;ParametricSchedule"/>
<rdfs:label>dividend schedule</rdfs:label>
<skos:definition>payment schedule indicating the dates on which dividends are due to be paid</skos:definition>
</owl:Class>
<owl:Class rdf:about="&fibo-sec-eq-eq;EnhancedVotingShare">
<rdfs:subClassOf rdf:resource="&fibo-sec-eq-eq;Share"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-sec-eq-eq;confersNumberOfVotesPerShare"/>
<owl:someValuesFrom>
<rdfs:Datatype>
<owl:onDatatype rdf:resource="&xsd;decimal"/>
<owl:withRestrictions rdf:parseType="Collection">
<rdf:Description>
<xsd:minExclusive rdf:datatype="&xsd;decimal">1</xsd:minExclusive>
</rdf:Description>
</owl:withRestrictions>
</rdfs:Datatype>
</owl:someValuesFrom>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label xml:lang="en">enhanced voting share</rdfs:label>
<skos:definition xml:lang="en">share that confers more than one vote per share</skos:definition>
</owl:Class>
<owl:Class rdf:about="&fibo-sec-eq-eq;EquityConversionTerms">
<rdfs:subClassOf rdf:resource="&fibo-sec-sec-iss;ConversionTerms"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-sec-eq-eq;specifiesConversionDate"/>
<owl:someValuesFrom rdf:resource="&cmns-dt;Date"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-sec-sec-iss;specifiesConversionInto"/>
<owl:someValuesFrom rdf:resource="&fibo-fbc-fi-fi;Security"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label>equity conversion terms</rdfs:label>
<skos:definition>conversion terms specifying the details regarding conversion of shares into other securities</skos:definition>
</owl:Class>
<owl:Class rdf:about="&fibo-sec-eq-eq;EquityPosition">
<rdfs:subClassOf rdf:resource="&fibo-fbc-pas-fpas;Position"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-fnd-oac-own;hasOwningParty"/>
<owl:onClass rdf:resource="&fibo-be-oac-cown;Shareholder"/>
<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;isHeldBy"/>
<owl:onClass>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&fibo-be-oac-cown;Shareholder">
</rdf:Description>
<rdf:Description rdf:about="&fibo-sec-eq-eq;Custodian">
</rdf:Description>
</owl:unionOf>
</owl:Class>
</owl:onClass>
<owl:qualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:qualifiedCardinality>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-sec-eq-eq;indicatesNumberOfShares"/>
<owl:onDataRange rdf:resource="&xsd;decimal"/>
<owl:qualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:qualifiedCardinality>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-fnd-oac-own;hasOwnedAsset"/>
<owl:someValuesFrom>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-fnd-pty-rl;isPlayedBy"/>
<owl:someValuesFrom rdf:resource="&fibo-sec-eq-eq;Share"/>
</owl:Restriction>
</owl:someValuesFrom>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label xml:lang="en">equity position</rdfs:label>
<skos:definition xml:lang="en">position in an equity instrument</skos:definition>
</owl:Class>
<owl:Class rdf:about="&fibo-sec-eq-eq;EquityRedemptionProvision">
<rdfs:subClassOf rdf:resource="&fibo-fbc-fi-fi;RedemptionProvision"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-sec-eq-eq;hasMinimumRedemptionPrice"/>
<owl:onClass rdf:resource="&fibo-fnd-acc-cur;MonetaryPrice"/>
<owl:minQualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">0</owl:minQualifiedCardinality>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-sec-eq-eq;hasRedemptionPremium"/>
<owl:onClass rdf:resource="&fibo-fnd-acc-cur;MonetaryPrice"/>
<owl:minQualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">0</owl:minQualifiedCardinality>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-sec-eq-eq;hasEarliestRedemptionDate"/>
<owl:onClass rdf:resource="&cmns-dt;ExplicitDate"/>
<owl:minQualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">0</owl:minQualifiedCardinality>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-sec-eq-eq;hasExtendableRedemptionDate"/>
<owl:minQualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">0</owl:minQualifiedCardinality>
<owl:onDataRange rdf:resource="&xsd;boolean"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-sec-eq-eq;isRedeemableAtIssuerOption"/>
<owl:minQualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">0</owl:minQualifiedCardinality>
<owl:onDataRange rdf:resource="&xsd;boolean"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-sec-eq-eq;isRedeemableAtShareholderOption"/>
<owl:minQualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">0</owl:minQualifiedCardinality>
<owl:onDataRange rdf:resource="&xsd;boolean"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label xml:lang="en">equity redemption provision</rdfs:label>
<skos:definition xml:lang="en">redemption provision that specifies the conditions under which the issuer or shareholder may redeem the shares</skos:definition>
</owl:Class>
<owl:Class rdf:about="&fibo-sec-eq-eq;EquityRedemptionProvisionWithExtendableRedemptionDate">
<rdfs:subClassOf rdf:resource="&fibo-sec-eq-eq;EquityRedemptionProvision"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-sec-eq-eq;hasExtendableRedemptionDate"/>
<owl:hasValue rdf:datatype="&xsd;boolean">true</owl:hasValue>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label xml:lang="en">equity redemption provision with extendable redemption date</rdfs:label>
<skos:definition xml:lang="en">equity redemption provision that allows modification of the redemption date beyond the original specified date</skos:definition>
</owl:Class>
<owl:Class rdf:about="&fibo-sec-eq-eq;ExchangeablePreferredShare">
<rdfs:subClassOf rdf:resource="&fibo-sec-eq-eq;PreferredShare"/>
<rdfs:label>exchangeable preferred share</rdfs:label>
<skos:definition>preferred share that may be exchanged for a security of another issuer</skos:definition>
</owl:Class>
<owl:Class rdf:about="&fibo-sec-eq-eq;ExtendablePreferredShare">
<rdfs:subClassOf rdf:resource="&fibo-sec-eq-eq;PreferredShare"/>
<rdfs:label>extendable preferred share</rdfs:label>
<skos:definition>preferred share whose redemption date can be extended at the issuer or holder option</skos:definition>
<cmns-av:adaptedFrom xml:lang="en">ISO 10962, Securities and related financial instruments - Classification of financial instruments (CFI) code, Fourth Edition, October 2019</cmns-av:adaptedFrom>
<cmns-av:explanatoryNote>An extendable preferred share may be redeemed at the option of the issuer and/or of the shareholder with an extendable redemption (meturity) date.</cmns-av:explanatoryNote>
<cmns-av:synonym>extendible preferred share</cmns-av:synonym>
</owl:Class>
<owl:Class rdf:about="&fibo-sec-eq-eq;FixedRateDividend">
<rdfs:subClassOf rdf:resource="&fibo-sec-eq-eq;PreferredDividend"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-sec-eq-eq;hasFixedDividendRate"/>
<owl:someValuesFrom rdf:resource="&fibo-fnd-acc-cur;PercentageMonetaryAmount"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label>fixed rate dividend</rdfs:label>
<skos:definition>dividend that provides a specified annual return on the nominal value (and any premium) paid on shares</skos:definition>
<cmns-av:explanatoryNote>In other words, the return is not variable depending on whether or not the company makes a profit. Annual dividends are calculated as a percentage of the par value, which is the price of the preferred stock at the time it was issued. Most preferred shares have fixed rate dividends.</cmns-av:explanatoryNote>
</owl:Class>
<owl:Class rdf:about="&fibo-sec-eq-eq;FullyPaidShare">
<rdfs:subClassOf rdf:resource="&fibo-sec-eq-eq;Share"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-sec-eq-eq;hasSharePaymentStatus"/>
<owl:hasValue rdf:resource="&fibo-sec-eq-eq;FullyPaidShareStatus"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label xml:lang="en">fully paid share</rdfs:label>
<skos:definition xml:lang="en">share whose payment status indicates that no additional money is owed to the company by shareholders on the value of the shares</skos:definition>
</owl:Class>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eq;FullyPaidShareStatus">
<rdf:type rdf:resource="&fibo-sec-eq-eq;SharePaymentStatus"/>
<rdfs:label>fully paid share status</rdfs:label>
<skos:definition>status indicating that no additional money is owed to the company by shareholders on the value of the shares</skos:definition>
</owl:NamedIndividual>
<owl:Class rdf:about="&fibo-sec-eq-eq;HardRetractablePreferredShare">
<rdfs:subClassOf rdf:resource="&fibo-sec-eq-eq;RetractablePreferredShare"/>
<rdfs:label>hard retractable preferred share</rdfs:label>
<owl:disjointWith rdf:resource="&fibo-sec-eq-eq;SoftRetractablePreferredShare"/>
<skos:definition>retractable preferred share whose retraction value must be paid in cash</skos:definition>
</owl:Class>
<owl:Class rdf:about="&fibo-sec-eq-eq;LimitedPartnershipUnit">
<rdfs:subClassOf rdf:resource="&fibo-sec-eq-eq;Share"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-fnd-agr-ctr;hasCounterparty"/>
<owl:someValuesFrom>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-fnd-pty-rl;isPlayedBy"/>
<owl:someValuesFrom rdf:resource="&fibo-be-ptr-ptr;LimitedPartnership"/>
</owl:Restriction>
</owl:someValuesFrom>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label xml:lang="en">limited partnership unit</rdfs:label>
<skos:definition xml:lang="en">share in a form of partnership similar to a general partnership, except that in addition to one or more general partners (GPs), there are one or more limited partners (LPs)</skos:definition>
<cmns-av:adaptedFrom xml:lang="en">ISO 10962, Securities and related financial instruments - Classification of financial instruments (CFI) code, Fourth Edition, October 2019</cmns-av:adaptedFrom>
<cmns-av:explanatoryNote xml:lang="en">Like shareholders in a corporation, the LPs have limited liability, i.e., they are only liable on debts incurred by the firm to the extent of their registered investment and they have no management authority. The GPs pay the LPs the equivalent of a dividend on their investment, the nature and extent of which is usually defined in the partnership agreement.</cmns-av:explanatoryNote>
</owl:Class>
<owl:Class rdf:about="&fibo-sec-eq-eq;ListedShare">
<rdfs:subClassOf rdf:resource="&fibo-sec-eq-eq;Share"/>
<rdfs:subClassOf rdf:resource="&fibo-sec-sec-lst;ListedSecurity"/>
<rdfs:label xml:lang="en">listed share</rdfs:label>
<rdfs:seeAlso rdf:resource="https://www.investopedia.com/terms/l/listedsecurity.asp"/>
<skos:definition xml:lang="en">share that is listed on at least one platform</skos:definition>
<cmns-av:explanatoryNote xml:lang="en">Listing requirements vary by exchange and include minimum stockholder's equity, a minimum share price and a minimum number of shareholders. Exchanges have listing requirements to ensure that only high quality securities are traded on them and to uphold the exchange's reputation among investors.</cmns-av:explanatoryNote>
</owl:Class>
<owl:Class rdf:about="&fibo-sec-eq-eq;NilPaidShare">
<rdfs:subClassOf rdf:resource="&fibo-sec-eq-eq;Share"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-sec-eq-eq;hasSharePaymentStatus"/>
<owl:hasValue rdf:resource="&fibo-sec-eq-eq;NilPaidShareStatus"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label xml:lang="en">nil paid share</rdfs:label>
<skos:definition xml:lang="en">share whose payment status indicates that none of the market value has been received by the company for the shares</skos:definition>
</owl:Class>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eq;NilPaidShareStatus">
<rdf:type rdf:resource="&fibo-sec-eq-eq;SharePaymentStatus"/>
<rdfs:label>nil paid share status</rdfs:label>
<owl:differentFrom rdf:resource="&fibo-sec-eq-eq;FullyPaidShareStatus"/>
<owl:differentFrom rdf:resource="&fibo-sec-eq-eq;PartiallyPaidShareStatus"/>
<skos:definition>status indicating that none of the market value has been received by the company for the shares</skos:definition>
<skos:example>Unpaid shares may be issued, for example, for convenience by a start-up company.</skos:example>
</owl:NamedIndividual>
<owl:Class rdf:about="&fibo-sec-eq-eq;NonCumulativePreferredShare">
<rdfs:subClassOf rdf:resource="&fibo-sec-eq-eq;PreferredShare"/>
<rdfs:label>non-cumulative preferred share</rdfs:label>
<owl:disjointWith rdf:resource="&fibo-sec-eq-eq;CumulativePreferredShare"/>
<skos:definition>preferred share whose dividend payments are not carried forward</skos:definition>
</owl:Class>
<owl:Class rdf:about="&fibo-sec-eq-eq;NonParticipatingPreferredShare">
<rdfs:subClassOf rdf:resource="&fibo-sec-eq-eq;PreferredShare"/>
<rdfs:label>non-participating preferred share</rdfs:label>
<owl:disjointWith rdf:resource="&fibo-sec-eq-eq;ParticipatingPreferredShare"/>
<skos:definition>preferred share that is not a participating preferred share</skos:definition>
</owl:Class>
<owl:Class rdf:about="&fibo-sec-eq-eq;NonVotingShare">
<rdfs:subClassOf rdf:resource="&fibo-sec-eq-eq;Share"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-sec-eq-eq;confersNumberOfVotesPerShare"/>
<owl:hasValue rdf:datatype="&xsd;decimal">0</owl:hasValue>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label xml:lang="en">non-voting share</rdfs:label>
<skos:definition xml:lang="en">share that has no voting right</skos:definition>
</owl:Class>
<owl:Class rdf:about="&fibo-sec-eq-eq;OrdinaryDividend">
<rdfs:subClassOf rdf:resource="&fibo-sec-eq-eq;Dividend"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-fnd-pas-psch;hasPaymentAmount"/>
<owl:onClass rdf:resource="&fibo-fnd-acc-cur;MonetaryAmount"/>
<owl:qualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:qualifiedCardinality>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label>ordinary dividend</rdfs:label>
<skos:definition>dividend that is paid to shareholders periodically</skos:definition>
<cmns-av:explanatoryNote>Most dividends are considered ordinary, unless they are specifically designated as qualified dividends.</cmns-av:explanatoryNote>
<cmns-av:explanatoryNote>Note that the terms related to ordinary dividend payment are typically specified in the context of a board resolution rather than contractually.</cmns-av:explanatoryNote>
</owl:Class>
<owl:Class rdf:about="&fibo-sec-eq-eq;PartiallyPaidShare">
<rdfs:subClassOf rdf:resource="&fibo-sec-eq-eq;Share"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-sec-eq-eq;hasSharePaymentStatus"/>
<owl:hasValue rdf:resource="&fibo-sec-eq-eq;PartiallyPaidShareStatus"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label xml:lang="en">partially paid share</rdfs:label>
<skos:definition xml:lang="en">share whose payment status indicates that only a portion of the market value has been received by the company for the shares</skos:definition>
</owl:Class>
<owl:NamedIndividual rdf:about="&fibo-sec-eq-eq;PartiallyPaidShareStatus">
<rdf:type rdf:resource="&fibo-sec-eq-eq;SharePaymentStatus"/>
<rdfs:label>partially paid share status</rdfs:label>
<owl:differentFrom rdf:resource="&fibo-sec-eq-eq;FullyPaidShareStatus"/>
<skos:definition>status indicating that only a portion of the market value has been received by the company for the shares</skos:definition>
<cmns-av:explanatoryNote>In the case of partially paid shares, the shareholder is still required to pay the remaining amount to the company. Typically, partially paid shares are only issued to a shareholder if there are compelling business reasons to do so.</cmns-av:explanatoryNote>
</owl:NamedIndividual>
<owl:Class rdf:about="&fibo-sec-eq-eq;ParticipatingPreferredShare">
<rdfs:subClassOf rdf:resource="&fibo-sec-eq-eq;PreferredShare"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-sec-eq-eq;hasDividend"/>
<owl:onClass rdf:resource="&fibo-sec-eq-eq;OrdinaryDividend"/>
<owl:minQualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">0</owl:minQualifiedCardinality>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label>participating preferred share</rdfs:label>
<skos:definition>preferred share that, in addition to paying a stipulated dividend, gives the holder the right to participate with common share holders in additional distributions of earnings under specified conditions</skos:definition>
<cmns-av:explanatoryNote>Participating preferred shares are rare, typically only issued when needed to attract investors.</cmns-av:explanatoryNote>
</owl:Class>
<owl:Class rdf:about="&fibo-sec-eq-eq;PerpetualPreferredShare">
<rdfs:subClassOf rdf:resource="&fibo-sec-eq-eq;PreferredShare"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-fbc-dae-dbt;hasMaturityDate"/>
<owl:onClass rdf:resource="&cmns-dt;ExplicitDate"/>
<owl:maxQualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">0</owl:maxQualifiedCardinality>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label>perpetual preferred share</rdfs:label>
<owl:disjointWith rdf:resource="&fibo-sec-eq-eq;PreferredShareWithFixedMaturityDate"/>
<skos:definition>preferred share that has no fixed maturity date</skos:definition>
</owl:Class>
<owl:Class rdf:about="&fibo-sec-eq-eq;PrecedenceRight">
<rdfs:subClassOf rdf:resource="&fibo-fnd-law-lcap;ContractualRight"/>
<rdfs:label>precedence right</rdfs:label>
<skos:definition>right that give the shareholder higher priority with respect to certain pre-defined dividend payments over other shareholders and that pay out first in the case of liquidation</skos:definition>
</owl:Class>
<owl:Class rdf:about="&fibo-sec-eq-eq;PreferredDividend">
<rdfs:subClassOf rdf:resource="&fibo-sec-eq-eq;Dividend"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-sec-eq-eq;hasFixedDividendRate"/>
<owl:onClass rdf:resource="&fibo-fnd-acc-cur;PercentageMonetaryAmount"/>
<owl:maxQualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:maxQualifiedCardinality>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-sec-eq-eq;hasDividendGracePeriod"/>
<owl:onClass rdf:resource="&cmns-dt;Duration"/>
<owl:maxQualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:maxQualifiedCardinality>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label>preferred dividend</rdfs:label>
<skos:definition>commitment to distribute a portion of earnings to shareholders, similar to a dividend but often with a fixed payment amount and schedule</skos:definition>
</owl:Class>
<owl:Class rdf:about="&fibo-sec-eq-eq;PreferredShare">
<rdfs:subClassOf rdf:resource="&fibo-sec-eq-eq;Share"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-fbc-dae-dbt;hasMaturityDate"/>
<owl:onClass rdf:resource="&cmns-dt;ExplicitDate"/>
<owl:minQualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">0</owl:minQualifiedCardinality>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-sec-eq-eq;hasDividend"/>
<owl:someValuesFrom>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&fibo-sec-eq-eq;OrdinaryDividend">
</rdf:Description>
<rdf:Description rdf:about="&fibo-sec-eq-eq;PreferredDividend">
</rdf:Description>
</owl:unionOf>
</owl:Class>
</owl:someValuesFrom>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-sec-eq-eq;isSeniorTo"/>
<owl:someValuesFrom rdf:resource="&fibo-sec-eq-eq;CommonShare"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label>preferred share</rdfs:label>
<skos:definition>share that pays dividends at a specified rate and has preference over common shares in the payment of dividends and liquidation of corporate assets</skos:definition>
<cmns-av:synonym>preference share</cmns-av:synonym>
</owl:Class>
<owl:Class rdf:about="&fibo-sec-eq-eq;PreferredShareWithAdjustableRateDividend">
<rdfs:subClassOf rdf:resource="&fibo-sec-eq-eq;PreferredShare"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-sec-eq-eq;hasDividend"/>
<owl:someValuesFrom rdf:resource="&fibo-sec-eq-eq;AdjustableRateDividend"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label>preferred share with adjustable rate dividend</rdfs:label>
<owl:disjointWith rdf:resource="&fibo-sec-eq-eq;PreferredShareWithFixedRateDividend"/>
<skos:definition>preferred share whose dividend rate varies according to some benchmark</skos:definition>
</owl:Class>
<owl:Class rdf:about="&fibo-sec-eq-eq;PreferredShareWithAuctionRateDividend">
<rdfs:subClassOf rdf:resource="&fibo-sec-eq-eq;PreferredShare"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-sec-eq-eq;hasDividend"/>
<owl:someValuesFrom rdf:resource="&fibo-sec-eq-eq;AuctionRateDividend"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label>preferred share with auction rate dividend</rdfs:label>
<owl:disjointWith rdf:resource="&fibo-sec-eq-eq;PreferredShareWithFixedRateDividend"/>
<skos:definition>preferred share whose dividend rate is periodically reset through an auction, such as a Dutch auction</skos:definition>
</owl:Class>
<owl:Class rdf:about="&fibo-sec-eq-eq;PreferredShareWithFixedMaturityDate">
<rdfs:subClassOf rdf:resource="&fibo-sec-eq-eq;PreferredShare"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-fbc-dae-dbt;hasMaturityDate"/>
<owl:onClass rdf:resource="&cmns-dt;ExplicitDate"/>
<owl:qualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:qualifiedCardinality>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label>preferred share with fixed maturity date</rdfs:label>
<skos:definition>preferred share whose maturity date is set, typically according to the terms of the prospectus</skos:definition>
</owl:Class>
<owl:Class rdf:about="&fibo-sec-eq-eq;PreferredShareWithFixedRateDividend">
<rdfs:subClassOf rdf:resource="&fibo-sec-eq-eq;PreferredShare"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-sec-eq-eq;hasDividend"/>
<owl:someValuesFrom rdf:resource="&fibo-sec-eq-eq;FixedRateDividend"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label>preferred share with fixed rate dividend</rdfs:label>
<skos:definition>preferred share whose dividends are set, typically according to the terms of the prospectus</skos:definition>
</owl:Class>
<owl:Class rdf:about="&fibo-sec-eq-eq;PricePerShare">
<rdfs:subClassOf rdf:resource="&fibo-fbc-fi-ip;SecurityPrice"/>
<rdfs:subClassOf rdf:resource="&fibo-fnd-acc-cur;UnitPrice"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-fnd-acc-cur;isPriceFor"/>
<owl:someValuesFrom rdf:resource="&fibo-sec-eq-eq;Share"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label>price per share</rdfs:label>
<skos:definition>price for one share of a given security at some point in time</skos:definition>
<cmns-av:abbreviation>PPS</cmns-av:abbreviation>
<cmns-av:synonym>share price</cmns-av:synonym>
</owl:Class>
<owl:Class rdf:about="&fibo-sec-eq-eq;PrivatelyHeldShare">
<rdfs:subClassOf rdf:resource="&fibo-sec-eq-eq;Share"/>
<rdfs:label xml:lang="en">privately held share</rdfs:label>
<owl:disjointWith rdf:resource="&fibo-sec-eq-eq;ListedShare"/>
<skos:definition xml:lang="en">share in a security that signifies ownership in an entity that is not publicly traded</skos:definition>
<cmns-av:explanatoryNote>Privately owned companies include family-owned businesses, sole proprietorships and the vast majority of small and medium-sized businesses. These companies are often too small for an initial public offering (IPO) due, for example to a small market capitalization and/or low trading volume, and fulfill their financing requirements in other ways, including through smaller offerings.</cmns-av:explanatoryNote>
</owl:Class>
<owl:Class rdf:about="&fibo-sec-eq-eq;QualifiedDividend">
<rdfs:subClassOf rdf:resource="&fibo-sec-eq-eq;Dividend"/>
<rdfs:label>qualified dividend</rdfs:label>
<skos:definition>dividend that falls under capital gains tax rates that are lower than the income tax rates on unqualified (ordinary) dividends</skos:definition>
</owl:Class>
<owl:Class rdf:about="&fibo-sec-eq-eq;RedeemablePreferredShare">
<rdfs:subClassOf rdf:resource="&fibo-sec-eq-eq;PreferredShare"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-fbc-fi-fi;hasRedemptionProvision"/>
<owl:someValuesFrom rdf:resource="&fibo-sec-eq-eq;EquityRedemptionProvision"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label>redeemable preferred share</rdfs:label>
<skos:definition>preferred share that gives the issuer the right to redeem the stock under specified conditions</skos:definition>
</owl:Class>
<owl:Class rdf:about="&fibo-sec-eq-eq;RedeemablePreferredShareWithExtendableMaturityDate">
<rdfs:subClassOf rdf:resource="&fibo-sec-eq-eq;PreferredShareWithFixedMaturityDate"/>
<rdfs:subClassOf rdf:resource="&fibo-sec-eq-eq;RedeemablePreferredShare"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-sec-eq-eq;hasExtendableMaturityDate"/>
<owl:hasValue rdf:datatype="&xsd;boolean">true</owl:hasValue>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label>redeemable preferred share with extendable maturity date</rdfs:label>
<skos:definition>redeemable preferred share with a fixed maturity date whose issuer has the option to extend the maturity date</skos:definition>
</owl:Class>
<owl:Class rdf:about="&fibo-sec-eq-eq;RedeemablePreferredShareWithExtendableRedemptionDate">
<rdfs:subClassOf rdf:resource="&fibo-sec-eq-eq;RedeemablePreferredShare"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-fnd-agr-ctr;hasExtensionProvision"/>
<owl:someValuesFrom rdf:resource="&fibo-sec-eq-eq;EquityRedemptionProvisionWithExtendableRedemptionDate"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label>redeemable preferred share with extendable redemption date</rdfs:label>
<skos:definition>redeemable preferred share whose redemption date can be modified</skos:definition>
<cmns-av:synonym>extendible preferred share</cmns-av:synonym>
</owl:Class>
<owl:Class rdf:about="&fibo-sec-eq-eq;RestrictedShare">
<rdfs:subClassOf rdf:resource="&fibo-sec-eq-eq;Share"/>
<rdfs:label xml:lang="en">restricted share</rdfs:label>
<owl:disjointWith rdf:resource="&fibo-sec-eq-eq;UnrestrictedShare"/>
<skos:definition xml:lang="en">share whose ownership/transfer/sale is subject to special conditions including country-specific restrictions</skos:definition>
</owl:Class>
<owl:Class rdf:about="&fibo-sec-eq-eq;RestrictedVotingShare">
<rdfs:subClassOf rdf:resource="&fibo-sec-eq-eq;Share"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-sec-eq-eq;confersNumberOfVotesPerShare"/>
<owl:someValuesFrom>
<rdfs:Datatype>
<owl:onDatatype rdf:resource="&xsd;decimal"/>
<owl:withRestrictions rdf:parseType="Collection">
<rdf:Description>
<xsd:maxExclusive rdf:datatype="&xsd;decimal">1</xsd:maxExclusive>
</rdf:Description>
</owl:withRestrictions>
</rdfs:Datatype>
</owl:someValuesFrom>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label xml:lang="en">restricted voting share</rdfs:label>
<skos:definition xml:lang="en">share that confers less than one vote per share</skos:definition>
</owl:Class>
<owl:Class rdf:about="&fibo-sec-eq-eq;RetractablePreferredShare">
<rdfs:subClassOf rdf:resource="&fibo-sec-eq-eq;PreferredShare"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-fbc-fi-fi;hasRedemptionProvision"/>
<owl:someValuesFrom rdf:resource="&fibo-sec-eq-eq;EquityRedemptionProvision"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label>retractable preferred share</rdfs:label>
<skos:definition>preferred share that gives the owner (shareholder) the right to redeem the stock under specified conditions</skos:definition>
<cmns-av:explanatoryNote>When retractable preferred shares reach maturity, the shareholder has the right to sell them back to the stock issuer at the price stated on the agreement. In some cases, the issuer can force the shareholder to sell, and may have the option of exchanging retractable preferred shares for common shares instead of cash.</cmns-av:explanatoryNote>
</owl:Class>
<owl:Class rdf:about="&fibo-sec-eq-eq;RetractablePreferredShareWithExtendableMaturityDate">
<rdfs:subClassOf rdf:resource="&fibo-sec-eq-eq;PreferredShareWithFixedMaturityDate"/>
<rdfs:subClassOf rdf:resource="&fibo-sec-eq-eq;RetractablePreferredShare"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-sec-eq-eq;hasExtendableMaturityDate"/>
<owl:hasValue rdf:datatype="&xsd;boolean">true</owl:hasValue>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-sec-eq-eq;hasExtendableMaturityDate"/>
<owl:hasValue rdf:datatype="&xsd;boolean">true</owl:hasValue>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-fnd-agr-ctr;hasExtensionProvision"/>
<owl:someValuesFrom rdf:resource="&fibo-fnd-agr-ctr;ExtensionProvision"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label>retractable preferred share with extendable maturity date</rdfs:label>
<skos:definition>retractable preferred share with a fixed maturity date whose issuer and/or holders have the option to extend the maturity date</skos:definition>
</owl:Class>
<owl:Class rdf:about="&fibo-sec-eq-eq;RetractablePreferredShareWithExtendableRedemptionDate">
<rdfs:subClassOf rdf:resource="&fibo-sec-eq-eq;RetractablePreferredShare"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-fnd-agr-ctr;hasExtensionProvision"/>
<owl:someValuesFrom rdf:resource="&fibo-sec-eq-eq;EquityRedemptionProvisionWithExtendableRedemptionDate"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label>retractable preferred share with extendable redemption date</rdfs:label>
<skos:definition>retractable preferred share whose redemption date can be modified</skos:definition>
<cmns-av:synonym>extendible preferred share</cmns-av:synonym>
</owl:Class>
<owl:Class rdf:about="&fibo-sec-eq-eq;Share">
<rdfs:subClassOf rdf:resource="&fibo-fbc-fi-fi;EquityInstrument"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-sec-eq-eq;hasFloatingShares"/>
<owl:minQualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">0</owl:minQualifiedCardinality>
<owl:onDataRange rdf:resource="&xsd;nonNegativeInteger"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-sec-eq-eq;hasSharesIssued"/>
<owl:minQualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">0</owl:minQualifiedCardinality>
<owl:onDataRange rdf:resource="&xsd;nonNegativeInteger"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-sec-eq-eq;hasSharesOutstanding"/>
<owl:minQualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">0</owl:minQualifiedCardinality>
<owl:onDataRange rdf:resource="&xsd;nonNegativeInteger"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-sec-eq-eq;hasTreasuryShares"/>
<owl:minQualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">0</owl:minQualifiedCardinality>
<owl:onDataRange rdf:resource="&xsd;nonNegativeInteger"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-sec-eq-eq;hasShareClass"/>
<owl:minQualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">0</owl:minQualifiedCardinality>
<owl:onDataRange rdf:resource="&xsd;string"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-sec-eq-eq;hasVotingRestriction"/>
<owl:minQualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">0</owl:minQualifiedCardinality>
<owl:onDataRange rdf:resource="&xsd;string"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-be-corp-corp;hasSharesAuthorized"/>
<owl:someValuesFrom rdf:resource="&xsd;nonNegativeInteger"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-sec-eq-eq;confersNumberOfVotesPerShare"/>
<owl:someValuesFrom rdf:resource="&xsd;decimal"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-sec-eq-eq;confersOwnershipOf"/>
<owl:someValuesFrom rdf:resource="&fibo-fnd-acc-aeq;ShareholdersEquity"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-sec-eq-eq;hasSharePaymentStatus"/>
<owl:someValuesFrom rdf:resource="&fibo-sec-eq-eq;SharePaymentStatus"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label xml:lang="en">share</rdfs:label>
<skos:definition xml:lang="en">financial instrument that signifies a unit of equity ownership in a corporation, or a unit of ownership in a mutual fund, or interest in a general or limited partnership, or a unit of ownership in a structured product, such as a real estate investment trust</skos:definition>
</owl:Class>
<owl:Class rdf:about="&fibo-sec-eq-eq;ShareIssuer">
<rdfs:subClassOf rdf:resource="&fibo-fbc-fi-fi;Issuer"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-fnd-rel-rel;issues"/>
<owl:someValuesFrom rdf:resource="&fibo-sec-eq-eq;Share"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label>share issuer</rdfs:label>
<skos:definition>issuer of securities that represent an ownership interest in something</skos:definition>
<cmns-av:explanatoryNote>This includes shares that represent equity ownership in a corporation, or ownership in a mutual fund, or an interest in a general or limited partnership, or ownership in a structured product, such as a real estate investment trust.</cmns-av:explanatoryNote>
</owl:Class>
<owl:Class rdf:about="&fibo-sec-eq-eq;SharePaymentStatus">
<rdfs:subClassOf rdf:resource="&fibo-fnd-arr-lif;LifecycleStatus"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&cmns-cls;classifies"/>
<owl:someValuesFrom rdf:resource="&fibo-sec-eq-eq;Share"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label>share payment status</rdfs:label>
<skos:definition>classifier that specifies the overall payment status for shares issued</skos:definition>
<cmns-av:explanatoryNote>When a company issues shares upon incorporation or through an initial or secondary issuance, shareholders are required to pay a set amount for those shares. Once the company has received the full amount from shareholders, the shares become fully paid shares.</cmns-av:explanatoryNote>
</owl:Class>
<owl:Class rdf:about="&fibo-sec-eq-eq;ShareYield">
<rdfs:subClassOf rdf:resource="&fibo-fbc-fi-ip;Yield"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-fnd-utl-alx;hasArgument"/>
<owl:someValuesFrom>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&fibo-sec-eq-eq;OrdinaryDividend">
</rdf:Description>
<rdf:Description rdf:about="&fibo-fbc-fi-ip;SecurityPrice">
</rdf:Description>
</owl:unionOf>
</owl:Class>
</owl:someValuesFrom>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label xml:lang="en">share yield</rdfs:label>
<skos:definition xml:lang="en">ratio of the annualized dividend per share divided by the (current) price per share</skos:definition>
<cmns-av:synonym xml:lang="en">dividend yield</cmns-av:synonym>
<cmns-av:synonym xml:lang="en">dividend-price ratio</cmns-av:synonym>
</owl:Class>
<owl:Class rdf:about="&fibo-sec-eq-eq;SingleVotingShare">
<rdfs:subClassOf rdf:resource="&fibo-sec-eq-eq;Share"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-sec-eq-eq;confersNumberOfVotesPerShare"/>
<owl:hasValue rdf:datatype="&xsd;decimal">1</owl:hasValue>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label xml:lang="en">single voting share</rdfs:label>
<skos:definition xml:lang="en">share that has the right to exactly one vote</skos:definition>
</owl:Class>
<owl:Class rdf:about="&fibo-sec-eq-eq;SoftRetractablePreferredShare">
<rdfs:subClassOf rdf:resource="&fibo-sec-eq-eq;RetractablePreferredShare"/>
<rdfs:label>soft retractable preferred share</rdfs:label>
<skos:definition>retractable preferred share whose retraction value may be paid in cash or in an equal value of common stock of the issuer, at the option of the issuer</skos:definition>
</owl:Class>
<owl:Class rdf:about="&fibo-sec-eq-eq;SpecialDividend">
<rdfs:subClassOf rdf:resource="&fibo-sec-eq-eq;Dividend"/>
<rdfs:label>special dividend</rdfs:label>
<skos:definition>dividend that is paid to shareholders on a one-time basis</skos:definition>
<cmns-av:usageNote xml:lang="en">Special dividends may be included in a dividend schedule as an ad-hoc entry, since they still need to be tracked based on the date of issuance.</cmns-av:usageNote>
</owl:Class>
<owl:Class rdf:about="&fibo-sec-eq-eq;UnrestrictedShare">
<rdfs:subClassOf rdf:resource="&fibo-fbc-fi-fi;NegotiableSecurity"/>
<rdfs:subClassOf rdf:resource="&fibo-sec-eq-eq;Share"/>
<rdfs:label xml:lang="en">unrestricted share</rdfs:label>
<skos:definition xml:lang="en">share whose ownership/transfer/sale is not subject to special conditions including country-specific restrictions</skos:definition>
</owl:Class>
<owl:Class rdf:about="&fibo-sec-eq-eq;VariableInterestEntityShare">
<rdfs:subClassOf rdf:resource="&fibo-sec-eq-eq;Share"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-fnd-rel-rel;isIssuedBy"/>
<owl:someValuesFrom>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-fnd-pty-rl;isPlayedBy"/>
<owl:someValuesFrom rdf:resource="&fibo-be-le-lp;VariableInterestEntity"/>
</owl:Restriction>
</owl:someValuesFrom>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label xml:lang="en-US">variable interest entity share</rdfs:label>
<skos:definition>share that certifies ownership of a contractual right to a percentage of a company's profits</skos:definition>
<cmns-av:explanatoryNote>Unlike a traditional stock certificate, the VIE share provides a legal proprietary interest in a completely separate company's assets, sometimes referred to as a shell company. The contractual right certified by the VIE share is derived from a contract between (1) the company named on the VIE share and (2) the shell company. In other words, VIE shareholders only have a traditional stock certificate in the completely separate shell company, which is entitled to a percentage of the named company's profits via a private contract.</cmns-av:explanatoryNote>
<cmns-av:synonym xml:lang="en-GB">VIE share</cmns-av:synonym>
</owl:Class>
<owl:Class rdf:about="&fibo-sec-eq-eq;VotingRight">
<rdfs:subClassOf rdf:resource="&fibo-fnd-law-lcap;ContractualRight"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&fibo-fnd-rel-rel;isConferredBy"/>
<owl:someValuesFrom rdf:resource="&fibo-fnd-agr-ctr;WrittenContract"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label>voting right</rdfs:label>
<skos:definition>contractual right that specifies shareholder voting entitlements, such as to elect directors, elect outside auditors, and vote on matters of corporate policy</skos:definition>
<cmns-av:explanatoryNote>Voting may involve decisions on issuing securities, initiating stock splits, and making substantial changes in the corporation's operations. Note that a given share may not have voting rights, in which case the number of votes per share would be zero.</cmns-av:explanatoryNote>
</owl:Class>
<owl:DatatypeProperty rdf:about="&fibo-sec-eq-eq;confersNumberOfVotesPerShare">
<rdfs:subPropertyOf rdf:resource="&fibo-fnd-acc-cur;hasAmount"/>
<rdfs:label xml:lang="en">number of votes per share</rdfs:label>
<rdfs:range rdf:resource="&xsd;decimal"/>
<skos:definition xml:lang="en">grants the right to vote on a per share basis to the shareholder</skos:definition>
<cmns-av:explanatoryNote xml:lang="en">A given share may have zero, fractional, one, or more votes per share, depending on the contract.</cmns-av:explanatoryNote>
</owl:DatatypeProperty>
<owl:ObjectProperty rdf:about="&fibo-sec-eq-eq;confersOwnershipOf">
<rdfs:subPropertyOf rdf:resource="&fibo-fnd-rel-rel;confers"/>
<rdfs:label>confers ownership of</rdfs:label>
<rdfs:domain rdf:resource="&fibo-fnd-agr-ctr;Contract"/>
<skos:definition xml:lang="en">grants ownership via contract</skos:definition>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="&fibo-sec-eq-eq;hasAdjustableDividendRate">
<rdfs:subPropertyOf rdf:resource="&fibo-fnd-qt-qtu;hasQuantityValue"/>
<rdfs:label>has adjustable dividend rate</rdfs:label>
<rdfs:domain rdf:resource="&fibo-sec-eq-eq;PreferredDividend"/>
<rdfs:range rdf:resource="&fibo-fnd-acc-cur;PercentageMonetaryAmount"/>
<skos:definition>indicates a variable dividend rate, typically specified in the prospectus as a formula based on a benchmark or set at auction</skos:definition>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="&fibo-sec-eq-eq;hasDistributionMethod">
<rdfs:subPropertyOf rdf:resource="&fibo-fnd-gao-obj;hasStrategy"/>
<rdfs:label>has distribution method</rdfs:label>
<rdfs:domain rdf:resource="&fibo-sec-eq-eq;Dividend"/>
<rdfs:range rdf:resource="&fibo-sec-eq-eq;DividendDistributionMethod"/>
<skos:definition>indicates the method by which dividend payments are to be distributed</skos:definition>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="&fibo-sec-eq-eq;hasDividend">
<rdfs:subPropertyOf rdf:resource="&cmns-cls;isClassifiedBy"/>
<rdfs:label>has dividend</rdfs:label>
<rdfs:domain rdf:resource="&fibo-sec-eq-eq;Share"/>
<rdfs:range rdf:resource="&fibo-sec-eq-eq;Dividend"/>
<skos:definition>relates a share to a dividend that applies to that share, or that the share may pay</skos:definition>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="&fibo-sec-eq-eq;hasDividendDeclarationDate">
<rdfs:subPropertyOf rdf:resource="&cmns-dt;hasExplicitDate"/>
<rdfs:label>has declaration date</rdfs:label>
<rdfs:domain rdf:resource="&fibo-sec-eq-eq;Share"/>
<rdfs:range rdf:resource="&cmns-dt;ExplicitDate"/>
<skos:definition>indicates a date on which an organization states that a dividend payment may be anticipated, including the the dividend amount and the ex-dividend and payment dates</skos:definition>
<cmns-av:synonym>has announcement date</cmns-av:synonym>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="&fibo-sec-eq-eq;hasDividendGracePeriod">
<rdfs:subPropertyOf rdf:resource="&cmns-dt;hasDuration"/>
<rdfs:label>has dividend grace period</rdfs:label>
<rdfs:domain rdf:resource="&fibo-sec-eq-eq;PreferredDividend"/>
<rdfs:range rdf:resource="&cmns-dt;Duration"/>
<skos:definition>indicates a period of time after a dividend payment becomes due, before the issuer is subject to penalties</skos:definition>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="&fibo-sec-eq-eq;hasEarliestRedemptionDate">
<rdfs:subPropertyOf rdf:resource="&cmns-dt;hasExplicitDate"/>
<rdfs:label>has earliest redemption date</rdfs:label>
<rdfs:domain rdf:resource="&fibo-sec-eq-eq;EquityRedemptionProvision"/>
<rdfs:range rdf:resource="&cmns-dt;ExplicitDate"/>
<skos:definition>indicates a date on or after which a stock can be redeemed</skos:definition>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="&fibo-sec-eq-eq;hasExDividendDate">
<rdfs:subPropertyOf rdf:resource="&cmns-dt;hasExplicitDate"/>
<rdfs:label>has ex-dividend date</rdfs:label>
<rdfs:domain rdf:resource="&fibo-sec-eq-eq;Share"/>
<rdfs:range rdf:resource="&cmns-dt;ExplicitDate"/>
<skos:definition>indicates a date on which a stock 'goes ex-dividend', typically about three weeks before the dividend is paid to shareholders of record</skos:definition>
<cmns-av:adaptedFrom rdf:datatype="&xsd;anyURI">https://www.investor.gov/introduction-investing/investing-basics/glossary/ex-dividend-dates-when-are-you-entitled-stock-and</cmns-av:adaptedFrom>
<cmns-av:explanatoryNote>Once the company sets the record date, the ex-dividend date is set based on stock exchange rules. If you purchase a stock on its ex-dividend date or after, you will not receive the next dividend payment.</cmns-av:explanatoryNote>
<cmns-av:explanatoryNote>Shares listed on the New York Stock Exchange go ex-dividend four business days prior to the record date.</cmns-av:explanatoryNote>
<cmns-av:synonym>has ex-date</cmns-av:synonym>
<cmns-av:synonym>has expected dividend date</cmns-av:synonym>
</owl:ObjectProperty>
<owl:DatatypeProperty rdf:about="&fibo-sec-eq-eq;hasExtendableMaturityDate">
<rdfs:label>has extendable maturity date</rdfs:label>
<rdfs:domain rdf:resource="&fibo-sec-eq-eq;PreferredShare"/>
<rdfs:range rdf:resource="&xsd;boolean"/>
<skos:definition>indicates whether the issuer and/or holders of redeemable shares with a fixed maturity date have the option to extend the maturity date</skos:definition>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:about="&fibo-sec-eq-eq;hasExtendableRedemptionDate">
<rdfs:label>has extendable redemption date</rdfs:label>
<rdfs:domain rdf:resource="&fibo-sec-eq-eq;EquityRedemptionProvision"/>
<rdfs:range rdf:resource="&xsd;boolean"/>
<skos:definition>indicates whether the issuer and/or holders of redeemable shares with a specified redemption date have the option to extend that date</skos:definition>
</owl:DatatypeProperty>
<owl:ObjectProperty rdf:about="&fibo-sec-eq-eq;hasFixedDividendRate">
<rdfs:subPropertyOf rdf:resource="&fibo-fnd-qt-qtu;hasQuantityValue"/>
<rdfs:label>has fixed dividend rate</rdfs:label>
<rdfs:domain rdf:resource="&fibo-sec-eq-eq;PreferredDividend"/>
<rdfs:range rdf:resource="&fibo-fnd-acc-cur;PercentageMonetaryAmount"/>
<skos:definition>indicates a pre-arranged fixed dividend rate, typically specified in the prospectus, for a preferred share</skos:definition>
</owl:ObjectProperty>
<owl:DatatypeProperty rdf:about="&fibo-sec-eq-eq;hasFloatingShares">
<rdfs:subPropertyOf rdf:resource="&fibo-fnd-acc-cur;hasAmount"/>
<rdfs:label xml:lang="en">has floating shares</rdfs:label>
<rdfs:range rdf:resource="&xsd;nonNegativeInteger"/>
<skos:definition xml:lang="en">indicates the number of shares that are available for trading, i.e., the number of shares outstanding less closely held shares (those held by insiders) and restricted shares</skos:definition>
<cmns-av:explanatoryNote xml:lang="en">A relatively small float results in higher volatility, as a large purchase or sell order will have significant influence on the value of the stock.</cmns-av:explanatoryNote>
</owl:DatatypeProperty>
<owl:ObjectProperty rdf:about="&fibo-sec-eq-eq;hasMinimumRedemptionPrice">
<rdfs:subPropertyOf rdf:resource="&fibo-fnd-acc-cur;hasPrice"/>
<rdfs:label>has minimum redemption price</rdfs:label>
<rdfs:domain rdf:resource="&fibo-sec-eq-eq;EquityRedemptionProvision"/>
<rdfs:range rdf:resource="&fibo-fnd-acc-cur;MonetaryAmount"/>
<skos:definition>indicates the lowest market price above which a share may be redeemed</skos:definition>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="&fibo-sec-eq-eq;hasRecordDate">
<rdfs:subPropertyOf rdf:resource="&cmns-dt;hasExplicitDate"/>
<rdfs:label>has record date</rdfs:label>
<rdfs:domain rdf:resource="&fibo-sec-eq-eq;Share"/>
<rdfs:range rdf:resource="&cmns-dt;ExplicitDate"/>
<skos:definition>indicates the date on which the issuer checks to determine whether a party was on the company's books as a shareholder when required (i.e., they must have been on the books prior to the ex-dividend date), to identify who is eligible to receive the next dividend</skos:definition>
<cmns-av:adaptedFrom rdf:datatype="&xsd;anyURI">https://www.investor.gov/introduction-investing/investing-basics/glossary/ex-dividend-dates-when-are-you-entitled-stock-and</cmns-av:adaptedFrom>
<cmns-av:explanatoryNote>Companies also use this date to determine who is sent proxy statements, financial reports, and other information.</cmns-av:explanatoryNote>
<cmns-av:synonym>has date of record</cmns-av:synonym>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="&fibo-sec-eq-eq;hasRedemptionPremium">
<rdfs:subPropertyOf rdf:resource="&fibo-fnd-acc-cur;hasPrice"/>
<rdfs:label>has redemption premium</rdfs:label>
<rdfs:domain rdf:resource="&fibo-sec-eq-eq;EquityRedemptionProvision"/>
<rdfs:range rdf:resource="&fibo-fnd-acc-cur;MonetaryPrice"/>
<skos:definition>indicates the premium price per share over the market price, if any, that must be paid in order to redeem the stock</skos:definition>
</owl:ObjectProperty>
<owl:DatatypeProperty rdf:about="&fibo-sec-eq-eq;hasShareClass">
<rdfs:label xml:lang="en">has share class</rdfs:label>
<rdfs:domain rdf:resource="&fibo-sec-eq-eq;Share"/>
<rdfs:range rdf:resource="&xsd;string"/>
<skos:definition xml:lang="en">indicates the class to which the share belongs, typically differentiated by privileges, such as voting rights</skos:definition>
<cmns-av:explanatoryNote xml:lang="en">Classes of shares, including shares in a mutual fund, are designated by name or a character (letter), such as A, B, C, etc. In the case of a mutual fund, different classes of shares may incur different fees and expenses.</cmns-av:explanatoryNote>
</owl:DatatypeProperty>
<owl:ObjectProperty rdf:about="&fibo-sec-eq-eq;hasSharePaymentStatus">
<rdfs:subPropertyOf rdf:resource="&cmns-cls;isClassifiedBy"/>
<rdfs:label xml:lang="en">has share payment status</rdfs:label>
<rdfs:domain rdf:resource="&fibo-sec-eq-eq;Share"/>
<rdfs:range rdf:resource="&fibo-sec-eq-eq;SharePaymentStatus"/>
<skos:definition xml:lang="en">indicates the payment status for shares issued</skos:definition>
</owl:ObjectProperty>
<owl:DatatypeProperty rdf:about="&fibo-sec-eq-eq;hasSharesIssued">
<rdfs:subPropertyOf rdf:resource="&fibo-fnd-acc-cur;hasAmount"/>
<rdfs:label xml:lang="en">has shares issued</rdfs:label>
<rdfs:range rdf:resource="&xsd;nonNegativeInteger"/>
<skos:definition xml:lang="en">indicates the actual number of shares held by shareholders (i.e., shares outstanding) and treasury shares</skos:definition>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:about="&fibo-sec-eq-eq;hasSharesOutstanding">
<rdfs:subPropertyOf rdf:resource="&fibo-fnd-acc-cur;hasAmount"/>
<rdfs:label xml:lang="en">has shares outstanding</rdfs:label>
<rdfs:range rdf:resource="&xsd;nonNegativeInteger"/>
<skos:definition xml:lang="en">indicates the number of shares currently held by shareholders, including those held by retail investors, institutional investors and insiders, and typically available for trading</skos:definition>
<cmns-av:explanatoryNote xml:lang="en">The number of outstanding shares is used in calculating key metrics such as a company's market capitalization, as well as its earnings per share (EPS) and cash flow per share (CFPS).</cmns-av:explanatoryNote>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:about="&fibo-sec-eq-eq;hasTreasuryShares">
<rdfs:subPropertyOf rdf:resource="&fibo-fnd-acc-cur;hasAmount"/>
<rdfs:label xml:lang="en">has treasury shares</rdfs:label>
<rdfs:range rdf:resource="&xsd;nonNegativeInteger"/>
<skos:definition xml:lang="en">indicates the number of shares issued but not outstanding, including those that were available in the market at one time but have been repurchased by the company</skos:definition>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:about="&fibo-sec-eq-eq;hasVotingRestriction">
<rdfs:label xml:lang="en">has voting restriction</rdfs:label>
<rdfs:domain rdf:resource="&fibo-sec-eq-eq;Share"/>
<rdfs:range rdf:resource="&xsd;string"/>
<skos:definition>specifies restrictions on voting rights, if any</skos:definition>
<cmns-av:explanatoryNote>Such restrictions may apply regardless of the number of votes per share.</cmns-av:explanatoryNote>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:about="&fibo-sec-eq-eq;indicatesNumberOfShares">
<rdfs:subPropertyOf rdf:resource="&fibo-fnd-acc-cur;hasAmount"/>
<rdfs:label xml:lang="en">indicates number of shares</rdfs:label>
<rdfs:domain rdf:resource="&fibo-sec-eq-eq;EquityPosition"/>
<rdfs:range rdf:resource="&xsd;decimal"/>
<skos:definition xml:lang="en">indicates the number of shares associated with the position</skos:definition>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:about="&fibo-sec-eq-eq;isRedeemableAtIssuerOption">
<rdfs:label>is redeemable at issuer option</rdfs:label>
<rdfs:domain rdf:resource="&fibo-fbc-fi-fi;RedemptionProvision"/>
<rdfs:range rdf:resource="&xsd;boolean"/>
<skos:definition>indicates whether the issuer has the option of initiating the buy-back, similar to a call feature</skos:definition>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:about="&fibo-sec-eq-eq;isRedeemableAtShareholderOption">
<rdfs:label>is redeemable at shareholder option</rdfs:label>
<rdfs:domain rdf:resource="&fibo-fbc-fi-fi;RedemptionProvision"/>
<rdfs:range rdf:resource="&xsd;boolean"/>
<skos:definition>indicates whether the shareholder has the option of initiating the buy-back, similar to a put feature</skos:definition>
</owl:DatatypeProperty>
<owl:ObjectProperty rdf:about="&fibo-sec-eq-eq;isSeniorTo">
<rdf:type rdf:resource="&owl;TransitiveProperty"/>
<rdfs:label>is senior to</rdfs:label>
<rdfs:domain rdf:resource="&fibo-sec-eq-eq;Share"/>
<rdfs:range rdf:resource="&fibo-sec-eq-eq;Share"/>
<skos:definition>indicates that a given share (share class) has higher seniority than the related share, meaning that it gives the holder a higher claim on the assets of the issuer</skos:definition>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="&fibo-sec-eq-eq;pays">
<owl:deprecated rdf:datatype="&xsd;boolean">true</owl:deprecated>
<owl:equivalentProperty rdf:resource="&fibo-sec-eq-eq;hasDividend"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="&fibo-sec-eq-eq;specifiesConversionDate">
<rdfs:label>specifies conversion date</rdfs:label>
<rdfs:domain rdf:resource="&fibo-sec-eq-eq;EquityConversionTerms"/>
<rdfs:range rdf:resource="&cmns-dt;Date"/>
<skos:definition>indicates the date on which, or after which, conversion may occur</skos:definition>
</owl:ObjectProperty>
</rdf:RDF> |