ns 31.6 KB
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
<?xml version="1.0"?>


<!DOCTYPE rdf:RDF [
    <!ENTITY vcard "http://www.w3.org/2006/vcard/ns#" >
    <!ENTITY owl "http://www.w3.org/2002/07/owl#" >
    <!ENTITY dc "http://purl.org/dc/elements/1.1/" >
    <!ENTITY wgs "http://www.w3.org/2003/01/geo/wgs84_pos#" >
    <!ENTITY ns "http://www.w3.org/2006/vcard/ns#" >
    <!ENTITY xsd "http://www.w3.org/2001/XMLSchema#" >
    <!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#" >
    <!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#" >
]>


<rdf:RDF xmlns="&vcard;"
     xmlns:dc="http://purl.org/dc/elements/1.1/"
     xmlns:wgs="http://www.w3.org/2003/01/geo/wgs84_pos#"
     xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
     xmlns:owl="http://www.w3.org/2002/07/owl#"
     xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
     xmlns:vcard="http://www.w3.org/2006/vcard/">
    <owl:Ontology rdf:about="http://www.w3.org/2006/vcard/ns">
       <dc:title>An Ontology for vCards</dc:title>
        <dc:description>This ontology models and represents vCards in RDF using current best practices.</dc:description>
        <dc:creator>Harry Halpin</dc:creator>
        <dc:creator>Renato Iannella</dc:creator>
        <dc:creator>Brian Suda</dc:creator>
        <dc:creator>Norman Walsh</dc:creator>
        <dc:date>2010-01-20</dc:date>
        <rdfs:seeAlso>http://tools.ietf.org/html/rfc2426</rdfs:seeAlso>
        <rdfs:seeAlso>http://www.w3.org/Submission/vcard-rdf/</rdfs:seeAlso>
    </owl:Ontology>
    


    <!-- 
    ///////////////////////////////////////////////////////////////////////////////////////
    //
    // Annotation properties
    //
    ///////////////////////////////////////////////////////////////////////////////////////
     -->

    <owl:AnnotationProperty rdf:about="&dc;date"/>
    <owl:AnnotationProperty rdf:about="&dc;title"/>
    <owl:AnnotationProperty rdf:about="&dc;description"/>
    <owl:AnnotationProperty rdf:about="&dc;contributor"/>
    <owl:AnnotationProperty rdf:about="&dc;creator"/>
    


    <!-- 
    ///////////////////////////////////////////////////////////////////////////////////////
    //
    // Object Properties
    //
    ///////////////////////////////////////////////////////////////////////////////////////
     -->

    


    <!-- http://www.w3.org/2006/vcard/adr -->

    <owl:ObjectProperty rdf:about="&vcard;adr">
        <rdfs:label>address</rdfs:label>
        <rdfs:comment
            >A postal or street address of a person</rdfs:comment>
        <rdfs:range rdf:resource="&vcard;Address"/>
        <rdfs:domain rdf:resource="&vcard;VCard"/>
    </owl:ObjectProperty>
    


    <!-- http://www.w3.org/2006/vcard/agent -->

    <owl:ObjectProperty rdf:about="&vcard;agent">
        <rdfs:label>agent</rdfs:label>
        <rdfs:comment
            >A person that acts as one&#39;s agent</rdfs:comment>
        <rdfs:range rdf:resource="&vcard;VCard"/>
        <rdfs:domain rdf:resource="&vcard;VCard"/>
    </owl:ObjectProperty>
    


    <!-- http://www.w3.org/2006/vcard/email -->

    <owl:ObjectProperty rdf:about="&vcard;email">
        <rdfs:label>email</rdfs:label>
        <rdfs:comment
            >An email address</rdfs:comment>
        <rdfs:domain rdf:resource="&vcard;VCard"/>
    </owl:ObjectProperty>
    


    <!-- http://www.w3.org/2006/vcard/geo -->

    <owl:ObjectProperty rdf:about="&vcard;geo">
        <rdfs:label
            >geographic location</rdfs:label>
        <rdfs:comment
            >A geographic location associated with a person</rdfs:comment>
        <rdfs:range rdf:resource="&vcard;Location"/>
        <rdfs:domain rdf:resource="&vcard;VCard"/>
    </owl:ObjectProperty>
    


    <!-- http://www.w3.org/2006/vcard/key -->

    <owl:ObjectProperty rdf:about="&vcard;key">
        <rdfs:label>key</rdfs:label>
        <rdfs:comment
            >A key (e.g, PKI key) of a person</rdfs:comment>
        <rdfs:domain rdf:resource="&vcard;VCard"/>
    </owl:ObjectProperty>
    


    <!-- http://www.w3.org/2006/vcard/logo -->

    <owl:ObjectProperty rdf:about="&vcard;logo">
        <rdfs:label>logo</rdfs:label>
        <rdfs:comment
            >A logo associated with a person or their organization</rdfs:comment>
        <rdfs:domain rdf:resource="&vcard;VCard"/>
    </owl:ObjectProperty>
    


    <!-- http://www.w3.org/2006/vcard/n -->

    <owl:ObjectProperty rdf:about="&vcard;n">
        <rdfs:label>name</rdfs:label>
        <rdfs:comment
            >The components of the name of a person</rdfs:comment>
        <rdfs:range rdf:resource="&vcard;Name"/>
        <rdfs:domain rdf:resource="&vcard;VCard"/>
    </owl:ObjectProperty>
    


    <!-- http://www.w3.org/2006/vcard/org -->

    <owl:ObjectProperty rdf:about="&vcard;org">
        <rdfs:label>organization</rdfs:label>
        <rdfs:comment
            >An organization associated with a person</rdfs:comment>
        <rdfs:range rdf:resource="&vcard;Organization"/>
        <rdfs:domain rdf:resource="&vcard;VCard"/>
    </owl:ObjectProperty>
    


    <!-- http://www.w3.org/2006/vcard/photo -->

    <owl:ObjectProperty rdf:about="&vcard;photo">
        <rdfs:label>photo</rdfs:label>
        <rdfs:comment
            >A photograph of a person</rdfs:comment>
        <rdfs:domain rdf:resource="&vcard;VCard"/>
    </owl:ObjectProperty>
    


    <!-- http://www.w3.org/2006/vcard/sound -->

    <owl:ObjectProperty rdf:about="&vcard;sound">
        <rdfs:label>sound</rdfs:label>
        <rdfs:comment
            >A sound (e.g., a greeting or pronounciation) of a person</rdfs:comment>
        <rdfs:domain rdf:resource="&vcard;VCard"/>
    </owl:ObjectProperty>
    


    <!-- http://www.w3.org/2006/vcard/tel -->

    <owl:ObjectProperty rdf:about="&vcard;tel">
        <rdfs:label>phone</rdfs:label>
        <rdfs:comment
            >A telephone number of a person</rdfs:comment>
        <rdfs:domain rdf:resource="&vcard;VCard"/>
    </owl:ObjectProperty>
    


    <!-- http://www.w3.org/2006/vcard/url -->

    <owl:ObjectProperty rdf:about="&vcard;url">
        <rdfs:label>url</rdfs:label>
        <rdfs:comment
            >A URL associated with a person</rdfs:comment>
        <rdfs:domain rdf:resource="&vcard;VCard"/>
    </owl:ObjectProperty>
    


    <!-- 
    ///////////////////////////////////////////////////////////////////////////////////////
    //
    // Data properties
    //
    ///////////////////////////////////////////////////////////////////////////////////////
     -->

    


    <!-- http://www.w3.org/2006/vcard/additional-name -->

    <owl:DatatypeProperty rdf:about="&vcard;additional-name">
        <rdfs:label>additional name</rdfs:label>
        <rdfs:comment
            >An additional part of a person&#39;s name</rdfs:comment>
        <rdfs:domain rdf:resource="&vcard;Name"/>
    </owl:DatatypeProperty>
    


    <!-- http://www.w3.org/2006/vcard/bday -->


    <owl:DatatypeProperty rdf:about="&vcard;bday">
        <rdfs:label>birthday</rdfs:label>
        <rdfs:comment
            >The birthday of a person</rdfs:comment>
        <rdfs:range>
             <rdfs:Datatype>
                <owl:unionOf rdf:parseType="Collection">
                    <rdf:Description rdf:about="&xsd;date"/>
                    <rdf:Description rdf:about="&xsd;dateTime"/>
                </owl:unionOf>
            </rdfs:Datatype>
        </rdfs:range>
        <rdfs:domain rdf:resource="&vcard;VCard"/>
    </owl:DatatypeProperty>
 

    <!-- http://www.w3.org/2006/vcard/category -->

    <owl:DatatypeProperty rdf:about="&vcard;category">
        <rdfs:label>category</rdfs:label>
        <rdfs:comment
            >A category of a vCard</rdfs:comment>
        <rdfs:domain rdf:resource="&vcard;VCard"/>
    </owl:DatatypeProperty>
    


    <!-- http://www.w3.org/2006/vcard/class -->

    <owl:DatatypeProperty rdf:about="&vcard;class">
        <rdfs:label>class</rdfs:label>
        <rdfs:comment
            >A class (e.g., public, private, etc.) of a vCard</rdfs:comment>
        <rdfs:domain rdf:resource="&vcard;VCard"/>
    </owl:DatatypeProperty>
    


    <!-- http://www.w3.org/2006/vcard/country-name -->

    <owl:DatatypeProperty rdf:about="&vcard;country-name">
        <rdfs:label>country</rdfs:label>
        <rdfs:comment
            >The country of a postal address</rdfs:comment>
        <rdfs:domain rdf:resource="&vcard;Address"/>
    </owl:DatatypeProperty>
    


    <!-- http://www.w3.org/2006/vcard/extended-address -->

    <owl:DatatypeProperty rdf:about="&vcard;extended-address">
        <rdfs:label>extended</rdfs:label>
        <rdfs:comment
            >The extended address of a postal address</rdfs:comment>
        <rdfs:domain rdf:resource="&vcard;Address"/>
    </owl:DatatypeProperty>
    


    <!-- http://www.w3.org/2006/vcard/family-name -->

    <owl:DatatypeProperty rdf:about="&vcard;family-name">
        <rdfs:label>family name</rdfs:label>
        <rdfs:comment
            >A family name part of a person&#39;s name</rdfs:comment>
        <rdfs:domain rdf:resource="&vcard;Name"/>
    </owl:DatatypeProperty>
    


    <!-- http://www.w3.org/2006/vcard/fn -->

    <owl:DatatypeProperty rdf:about="&vcard;fn">
        <rdfs:label>formatted name</rdfs:label>
        <rdfs:comment
            >A formatted name of a person</rdfs:comment>
        <rdfs:domain rdf:resource="&vcard;VCard"/>
    </owl:DatatypeProperty>
    


    <!-- http://www.w3.org/2006/vcard/given-name -->

    <owl:DatatypeProperty rdf:about="&vcard;given-name">
        <rdfs:label>given name</rdfs:label>
        <rdfs:comment
            >A given name part of a person&#39;s name</rdfs:comment>
        <rdfs:domain rdf:resource="&vcard;Name"/>
    </owl:DatatypeProperty>
    


    <!-- http://www.w3.org/2006/vcard/honorific-prefix -->

    <owl:DatatypeProperty rdf:about="&vcard;honorific-prefix">
        <rdfs:label
            >honorific prefix</rdfs:label>
        <rdfs:comment
            >An honorific prefix part of a person&#39;s name</rdfs:comment>
        <rdfs:domain rdf:resource="&vcard;Name"/>
    </owl:DatatypeProperty>
    


    <!-- http://www.w3.org/2006/vcard/honorific-suffix -->

    <owl:DatatypeProperty rdf:about="&vcard;honorific-suffix">
        <rdfs:label
            >honorific suffix</rdfs:label>
        <rdfs:comment
            >An honorific suffix part of a person&#39;s name</rdfs:comment>
        <rdfs:domain rdf:resource="&vcard;Name"/>
    </owl:DatatypeProperty>
    
   <!-- http://www.w3.org/2006/vcard/latitude -->

    <owl:DatatypeProperty rdf:about="&vcard;latitude">
        <rdfs:label>geographic latitude</rdfs:label>
        <rdfs:comment>The latitude of the location of the vCard object</rdfs:comment>
        <rdfs:domain rdf:resource="&vcard;Location"/>
        <rdfs:range rdf:resource="&xsd;float"/>
    </owl:DatatypeProperty>


    <!-- http://www.w3.org/2006/vcard/label -->

    <owl:DatatypeProperty rdf:about="&vcard;label">
        <rdfs:label>address label</rdfs:label>
        <rdfs:comment
            >The formatted version of a postal address (a string with embedded line breaks, punctuation, etc.)</rdfs:comment>
        <rdfs:domain rdf:resource="&vcard;Address"/>
    </owl:DatatypeProperty>
    
  <!-- http://www.w3.org/2006/vcard/longitude -->

    <owl:DatatypeProperty rdf:about="&vcard;longitude">
        <rdfs:label>geographic longitude</rdfs:label>
        <rdfs:comment>The longitude of the location of the vCard object</rdfs:comment>
        <rdfs:domain rdf:resource="&vcard;Location"/>
        <rdfs:range rdf:resource="&xsd;float"/>
    </owl:DatatypeProperty>


    <!-- http://www.w3.org/2006/vcard/locality -->

    <owl:DatatypeProperty rdf:about="&vcard;locality">
        <rdfs:label>locality</rdfs:label>
        <rdfs:comment
            >The locality (e.g., city) of a postal address</rdfs:comment>
        <rdfs:domain rdf:resource="&vcard;Address"/>
    </owl:DatatypeProperty>
    


    <!-- http://www.w3.org/2006/vcard/mailer -->

    <owl:DatatypeProperty rdf:about="&vcard;mailer">
        <rdfs:label>mailer</rdfs:label>
        <rdfs:comment
            >A mailer associated with a vCard</rdfs:comment>
        <rdfs:domain rdf:resource="&vcard;VCard"/>
    </owl:DatatypeProperty>
    


    <!-- http://www.w3.org/2006/vcard/nickname -->

    <owl:DatatypeProperty rdf:about="&vcard;nickname">
        <rdfs:label>nickname</rdfs:label>
        <rdfs:comment
            >The nickname of a person</rdfs:comment>
        <rdfs:domain rdf:resource="&vcard;VCard"/>
    </owl:DatatypeProperty>
    


    <!-- http://www.w3.org/2006/vcard/note -->

    <owl:DatatypeProperty rdf:about="&vcard;note">
        <rdfs:label>notes</rdfs:label>
        <rdfs:comment
            >Notes about a person on a vCard</rdfs:comment>
        <rdfs:domain rdf:resource="&vcard;VCard"/>
    </owl:DatatypeProperty>
    


    <!-- http://www.w3.org/2006/vcard/organization-name -->

    <owl:DatatypeProperty rdf:about="&vcard;organization-name">
        <rdfs:label>name</rdfs:label>
        <rdfs:comment
            >The name of an organization</rdfs:comment>
        <rdfs:domain rdf:resource="&vcard;Organization"/>
    </owl:DatatypeProperty>
    


    <!-- http://www.w3.org/2006/vcard/organization-unit -->

    <owl:DatatypeProperty rdf:about="&vcard;organization-unit">
        <rdfs:label>unit</rdfs:label>
        <rdfs:comment
            >The name of a unit within an organization</rdfs:comment>
        <rdfs:domain rdf:resource="&vcard;Organization"/>
    </owl:DatatypeProperty>
    


    <!-- http://www.w3.org/2006/vcard/post-office-box -->

    <owl:DatatypeProperty rdf:about="&vcard;post-office-box">
        <rdfs:label>P.O. Box</rdfs:label>
        <rdfs:comment
            >The post office box of a postal address</rdfs:comment>
        <rdfs:domain rdf:resource="&vcard;Address"/>
    </owl:DatatypeProperty>
    


    <!-- http://www.w3.org/2006/vcard/postal-code -->

    <owl:DatatypeProperty rdf:about="&vcard;postal-code">
        <rdfs:label>postal code</rdfs:label>
        <rdfs:comment
            >The postal code (e.g., U.S. ZIP code) of a postal address</rdfs:comment>
        <rdfs:domain rdf:resource="&vcard;Address"/>
    </owl:DatatypeProperty>
    


    <!-- http://www.w3.org/2006/vcard/prodid -->

    <owl:DatatypeProperty rdf:about="&vcard;prodid">
        <rdfs:label>prodid</rdfs:label>
        <rdfs:comment
            >The Identifier for the product that created the vCard object</rdfs:comment>
        <rdfs:domain rdf:resource="&vcard;VCard"/>
    </owl:DatatypeProperty>
    


    <!-- http://www.w3.org/2006/vcard/region -->

    <owl:DatatypeProperty rdf:about="&vcard;region">
        <rdfs:label>region</rdfs:label>
        <rdfs:comment
            >The region (e.g., state or province) of a postal address</rdfs:comment>
        <rdfs:domain rdf:resource="&vcard;Address"/>
    </owl:DatatypeProperty>
    


    <!-- http://www.w3.org/2006/vcard/rev -->

    <owl:DatatypeProperty rdf:about="&vcard;rev">
        <rdfs:label>revision</rdfs:label>
        <rdfs:comment
            >The timestamp of a revision of a vCard</rdfs:comment>
       <rdfs:range>
          <rdfs:Datatype>
                <owl:unionOf rdf:parseType="Collection">
                    <rdf:Description rdf:about="&xsd;date"/>
                    <rdf:Description rdf:about="&xsd;dateTime"/>
                </owl:unionOf>
          </rdfs:Datatype>
        </rdfs:range>
        <rdfs:domain rdf:resource="&vcard;VCard"/>
    </owl:DatatypeProperty>
    


    <!-- http://www.w3.org/2006/vcard/role -->

    <owl:DatatypeProperty rdf:about="&vcard;role">
        <rdfs:label>role</rdfs:label>
        <rdfs:comment
            >A role a person plays within an organization</rdfs:comment>
        <rdfs:domain rdf:resource="&vcard;VCard"/>
    </owl:DatatypeProperty>
    


    <!-- http://www.w3.org/2006/vcard/sort-string -->

    <owl:DatatypeProperty rdf:about="&vcard;sort-string">
        <rdfs:label>sort</rdfs:label>
        <rdfs:comment
            >A version of a person&#39;s name suitable for collation</rdfs:comment>
        <rdfs:domain rdf:resource="&vcard;VCard"/>
    </owl:DatatypeProperty>
    


    <!-- http://www.w3.org/2006/vcard/street-address -->

    <owl:DatatypeProperty rdf:about="&vcard;street-address">
        <rdfs:label>street</rdfs:label>
        <rdfs:comment
            >The street address of a postal address</rdfs:comment>
        <rdfs:domain rdf:resource="&vcard;Address"/>
    </owl:DatatypeProperty>
    


    <!-- http://www.w3.org/2006/vcard/title -->

    <owl:DatatypeProperty rdf:about="&vcard;title">
        <rdfs:label>title</rdfs:label>
        <rdfs:comment
            >A person&#39;s title</rdfs:comment>
        <rdfs:domain rdf:resource="&vcard;VCard"/>
    </owl:DatatypeProperty>
    


    <!-- http://www.w3.org/2006/vcard/tz -->

    <owl:DatatypeProperty rdf:about="&vcard;tz">
        <rdfs:label>timezone</rdfs:label>
        <rdfs:comment
            >A timezone associated with a person</rdfs:comment>
        <rdfs:domain rdf:resource="&vcard;VCard"/>
    </owl:DatatypeProperty>
    


    <!-- http://www.w3.org/2006/vcard/uid -->

    <owl:DatatypeProperty rdf:about="&vcard;uid">
        <rdfs:label>uid</rdfs:label>
        <rdfs:comment
            >A UID of a person&#39;s vCard</rdfs:comment>
        <rdfs:domain rdf:resource="&vcard;VCard"/>
    </owl:DatatypeProperty>
    


    <!-- 
    ///////////////////////////////////////////////////////////////////////////////////////
    //
    // Classes
    //
    ///////////////////////////////////////////////////////////////////////////////////////
     -->

    


    <!-- http://www.w3.org/2006/vcard/Address -->

    <owl:Class rdf:about="&vcard;Address">
        <rdfs:label
            >vCard Address Class</rdfs:label>
        <rdfs:subClassOf>
            <owl:Restriction>
                <owl:onProperty rdf:resource="&vcard;extended-address"/>
                <owl:someValuesFrom rdf:resource="&rdfs;Literal"/>
            </owl:Restriction>
        </rdfs:subClassOf>
        <rdfs:subClassOf>
            <owl:Restriction>
                <owl:onProperty rdf:resource="&vcard;locality"/>
                <owl:someValuesFrom rdf:resource="&rdfs;Literal"/>
            </owl:Restriction>
        </rdfs:subClassOf>
        <rdfs:subClassOf>
            <owl:Restriction>
                <owl:onProperty rdf:resource="&vcard;country-name"/>
                <owl:someValuesFrom rdf:resource="&rdfs;Literal"/>
            </owl:Restriction>
        </rdfs:subClassOf>
        <rdfs:subClassOf>
            <owl:Restriction>
                <owl:onProperty rdf:resource="&vcard;post-office-box"/>
                <owl:someValuesFrom rdf:resource="&rdfs;Literal"/>
            </owl:Restriction>
        </rdfs:subClassOf>
        <rdfs:subClassOf>
            <owl:Restriction>
                <owl:onProperty rdf:resource="&vcard;region"/>
                <owl:someValuesFrom rdf:resource="&rdfs;Literal"/>
            </owl:Restriction>
        </rdfs:subClassOf>
        <rdfs:subClassOf>
            <owl:Restriction>
                <owl:onProperty rdf:resource="&vcard;postal-code"/>
                <owl:someValuesFrom rdf:resource="&rdfs;Literal"/>
            </owl:Restriction>
        </rdfs:subClassOf>
        <rdfs:subClassOf>
            <owl:Restriction>
                <owl:onProperty rdf:resource="&vcard;street-address"/>
                <owl:someValuesFrom rdf:resource="&rdfs;Literal"/>
            </owl:Restriction>
        </rdfs:subClassOf>
        <owl:disjointWith rdf:resource="&vcard;Email"/>
        <owl:disjointWith rdf:resource="&vcard;Label"/>
        <owl:disjointWith rdf:resource="&vcard;Tel"/>
        <rdfs:comment
            >Resources that are vCard Addresses</rdfs:comment>
    </owl:Class>
    


    <!-- http://www.w3.org/2006/vcard/BBS -->

    <owl:Class rdf:about="&vcard;BBS">
        <rdfs:label
            >Bulletin Board System</rdfs:label>
        <rdfs:subClassOf rdf:resource="&vcard;Tel"/>
        <rdfs:comment
            >Bulletin Board System Communications</rdfs:comment>
    </owl:Class>
    


    <!-- http://www.w3.org/2006/vcard/Car -->

    <owl:Class rdf:about="&vcard;Car">
        <rdfs:label>Car Phone</rdfs:label>
        <rdfs:subClassOf rdf:resource="&vcard;Tel"/>
        <rdfs:comment>Car Telephone</rdfs:comment>
    </owl:Class>
    


    <!-- http://www.w3.org/2006/vcard/Cell -->

    <owl:Class rdf:about="&vcard;Cell">
        <rdfs:label
            >Cellular Telephone</rdfs:label>
        <rdfs:subClassOf rdf:resource="&vcard;Tel"/>
        <rdfs:comment
            >Cellular or Mobile Telephone</rdfs:comment>
    </owl:Class>
    


    <!-- http://www.w3.org/2006/vcard/Dom -->

    <owl:Class rdf:about="&vcard;Dom">
        <rdfs:label>Domestic</rdfs:label>
        <rdfs:subClassOf>
            <owl:Class>
                <owl:unionOf rdf:parseType="Collection">
                    <rdf:Description rdf:about="&vcard;Address"/>
                    <rdf:Description rdf:about="&vcard;Label"/>
                </owl:unionOf>
            </owl:Class>
        </rdfs:subClassOf>
        <rdfs:comment
            >Information related to a Domestic Address or Label</rdfs:comment>
    </owl:Class>
    


    <!-- http://www.w3.org/2006/vcard/Email -->

    <owl:Class rdf:about="&vcard;Email">
        <rdfs:label>Email</rdfs:label>
        <owl:disjointWith rdf:resource="&vcard;Label"/>
        <owl:disjointWith rdf:resource="&vcard;Tel"/>
        <rdfs:comment
            >Resources that are vCard Email Addresses</rdfs:comment>
    </owl:Class>
    


    <!-- http://www.w3.org/2006/vcard/Fax -->

    <owl:Class rdf:about="&vcard;Fax">
        <rdfs:label>Fax</rdfs:label>
        <rdfs:subClassOf rdf:resource="&vcard;Tel"/>
        <rdfs:comment
            >Fax Communications</rdfs:comment>
    </owl:Class>
    


    <!-- http://www.w3.org/2006/vcard/Home -->

    <owl:Class rdf:about="&vcard;Home">
        <rdfs:label>Home</rdfs:label>
        <rdfs:subClassOf>
            <owl:Class>
                <owl:unionOf rdf:parseType="Collection">
                    <rdf:Description rdf:about="&vcard;Address"/>
                    <rdf:Description rdf:about="&vcard;Label"/>
                    <rdf:Description rdf:about="&vcard;Tel"/>
                </owl:unionOf>
            </owl:Class>
        </rdfs:subClassOf>
        <rdfs:comment
            >Information related to a Home Address, Label, or Telephone</rdfs:comment>
    </owl:Class>
    


    <!-- http://www.w3.org/2006/vcard/ISDN -->

    <owl:Class rdf:about="&vcard;ISDN">
        <rdfs:label>ISDN</rdfs:label>
        <rdfs:subClassOf rdf:resource="&vcard;Tel"/>
        <rdfs:comment
            >ISDN Communications</rdfs:comment>
    </owl:Class>
    


    <!-- http://www.w3.org/2006/vcard/Internet -->

    <owl:Class rdf:about="&vcard;Internet">
        <rdfs:label>Internet</rdfs:label>
        <rdfs:subClassOf rdf:resource="&vcard;Email"/>
        <rdfs:comment>Internet Email</rdfs:comment>
    </owl:Class>
    


    <!-- http://www.w3.org/2006/vcard/Intl -->

    <owl:Class rdf:about="&vcard;Intl">
        <rdfs:label>International</rdfs:label>
        <rdfs:subClassOf>
            <owl:Class>
                <owl:unionOf rdf:parseType="Collection">
                    <rdf:Description rdf:about="&vcard;Address"/>
                    <rdf:Description rdf:about="&vcard;Label"/>
                </owl:unionOf>
            </owl:Class>
        </rdfs:subClassOf>
        <rdfs:comment
            >Information related to an International Address or Label</rdfs:comment>
    </owl:Class>
    


    <!-- http://www.w3.org/2006/vcard/Label -->

    <owl:Class rdf:about="&vcard;Label">
        <rdfs:label>Label</rdfs:label>
        <owl:disjointWith rdf:resource="&vcard;Tel"/>
        <rdfs:comment
            >Resources that are vCard Labels</rdfs:comment>
    </owl:Class>
    


    <!-- http://www.w3.org/2006/vcard/Location -->

    <owl:Class rdf:about="&vcard;Location">
        <rdfs:label
            >vCard Geographic Location Class</rdfs:label>
        <rdfs:comment
            >Resources that are vCard geographic locations</rdfs:comment>
            
      <rdfs:subClassOf>
            <owl:Restriction>
                <owl:onProperty rdf:resource="&vcard;latitude"/>
                <owl:someValuesFrom rdf:resource="&rdfs;Literal"/>
            </owl:Restriction>
        </rdfs:subClassOf>
        <rdfs:subClassOf>
            <owl:Restriction>
                <owl:onProperty rdf:resource="&vcard;longitude"/>
                <owl:someValuesFrom rdf:resource="&rdfs;Literal"/>
            </owl:Restriction>
        </rdfs:subClassOf>
        
        
    </owl:Class>
    


    <!-- http://www.w3.org/2006/vcard/Modem -->

    <owl:Class rdf:about="&vcard;Modem">
        <rdfs:label>Modem</rdfs:label>
        <rdfs:subClassOf rdf:resource="&vcard;Tel"/>
        <rdfs:comment
            >Modem Communications</rdfs:comment>
    </owl:Class>
    


    <!-- http://www.w3.org/2006/vcard/Msg -->

    <owl:Class rdf:about="&vcard;Msg">
        <rdfs:label>Voice Messenger</rdfs:label>
        <rdfs:subClassOf rdf:resource="&vcard;Tel"/>
        <rdfs:comment
            >Voice Message Communications</rdfs:comment>
    </owl:Class>
    


    <!-- http://www.w3.org/2006/vcard/Name -->

    <owl:Class rdf:about="&vcard;Name">
        <rdfs:label
            >vCard Name Class</rdfs:label>
        <rdfs:subClassOf>
            <owl:Restriction>
                <owl:onProperty rdf:resource="&vcard;family-name"/>
                <owl:someValuesFrom rdf:resource="&rdfs;Literal"/>
            </owl:Restriction>
        </rdfs:subClassOf>
        <rdfs:subClassOf>
            <owl:Restriction>
                <owl:onProperty rdf:resource="&vcard;given-name"/>
                <owl:someValuesFrom rdf:resource="&rdfs;Literal"/>
            </owl:Restriction>
        </rdfs:subClassOf>
        <rdfs:subClassOf>
            <owl:Restriction>
                <owl:onProperty rdf:resource="&vcard;additional-name"/>
                <owl:someValuesFrom rdf:resource="&rdfs;Literal"/>
            </owl:Restriction>
        </rdfs:subClassOf>
        <rdfs:subClassOf>
            <owl:Restriction>
                <owl:onProperty rdf:resource="&vcard;honorific-suffix"/>
                <owl:someValuesFrom rdf:resource="&rdfs;Literal"/>
            </owl:Restriction>
        </rdfs:subClassOf>
        <rdfs:subClassOf>
            <owl:Restriction>
                <owl:onProperty rdf:resource="&vcard;honorific-prefix"/>
                <owl:someValuesFrom rdf:resource="&rdfs;Literal"/>
            </owl:Restriction>
        </rdfs:subClassOf>
        <rdfs:comment
            >Resources that are vCard personal names</rdfs:comment>
    </owl:Class>
    


    <!-- http://www.w3.org/2006/vcard/Organization -->

    <owl:Class rdf:about="&vcard;Organization">
        <rdfs:label
            >vCard Organization Class</rdfs:label>
        <rdfs:subClassOf>
            <owl:Restriction>
                <owl:onProperty rdf:resource="&vcard;organization-unit"/>
                <owl:someValuesFrom rdf:resource="&rdfs;Literal"/>
            </owl:Restriction>
        </rdfs:subClassOf>
        <rdfs:subClassOf>
            <owl:Restriction>
                <owl:onProperty rdf:resource="&vcard;organization-name"/>
                <owl:someValuesFrom rdf:resource="&rdfs;Literal"/>
            </owl:Restriction>
        </rdfs:subClassOf>
        <rdfs:comment
            >Resources that are vCard organizations</rdfs:comment>
    </owl:Class>
    


    <!-- http://www.w3.org/2006/vcard/PCS -->

    <owl:Class rdf:about="&vcard;PCS">
        <rdfs:label
            >Personal Communications Service</rdfs:label>
        <rdfs:subClassOf rdf:resource="&vcard;Tel"/>
        <rdfs:comment
            >Personal Communications Service</rdfs:comment>
    </owl:Class>
    


    <!-- http://www.w3.org/2006/vcard/Pager -->

    <owl:Class rdf:about="&vcard;Pager">
        <rdfs:label>Pager Device</rdfs:label>
        <rdfs:subClassOf rdf:resource="&vcard;Tel"/>
        <rdfs:comment
            >Pager Communications</rdfs:comment>
    </owl:Class>
    


    <!-- http://www.w3.org/2006/vcard/Parcel -->

    <owl:Class rdf:about="&vcard;Parcel">
        <rdfs:label>Parcel</rdfs:label>
        <rdfs:subClassOf>
            <owl:Class>
                <owl:unionOf rdf:parseType="Collection">
                    <rdf:Description rdf:about="&vcard;Address"/>
                    <rdf:Description rdf:about="&vcard;Label"/>
                </owl:unionOf>
            </owl:Class>
        </rdfs:subClassOf>
        <rdfs:comment
            >Information related to a Parcel Address or Label</rdfs:comment>
    </owl:Class>
    


    <!-- http://www.w3.org/2006/vcard/Postal -->

    <owl:Class rdf:about="&vcard;Postal">
        <rdfs:label>Postal</rdfs:label>
        <rdfs:subClassOf>
            <owl:Class>
                <owl:unionOf rdf:parseType="Collection">
                    <rdf:Description rdf:about="&vcard;Address"/>
                    <rdf:Description rdf:about="&vcard;Label"/>
                </owl:unionOf>
            </owl:Class>
        </rdfs:subClassOf>
        <rdfs:comment
            >Information related to a Postal Address or Label</rdfs:comment>
    </owl:Class>
    


    <!-- http://www.w3.org/2006/vcard/Pref -->

    <owl:Class rdf:about="&vcard;Pref">
        <rdfs:label>Preferred</rdfs:label>
        <rdfs:subClassOf>
            <owl:Class>
                <owl:unionOf rdf:parseType="Collection">
                    <rdf:Description rdf:about="&vcard;Address"/>
                    <rdf:Description rdf:about="&vcard;Email"/>
                    <rdf:Description rdf:about="&vcard;Label"/>
                    <rdf:Description rdf:about="&vcard;Tel"/>
                </owl:unionOf>
            </owl:Class>
        </rdfs:subClassOf>
        <rdfs:comment
            >Information related to a Preferred Address, Email, Label, or Telephone</rdfs:comment>
    </owl:Class>
    


    <!-- http://www.w3.org/2006/vcard/Tel -->

    <owl:Class rdf:about="&vcard;Tel">
        <rdfs:comment>Telephone</rdfs:comment>
        <rdfs:comment
            >Resources that are vCard Telephony communication mechanisms</rdfs:comment>
    </owl:Class>
    


    <!-- http://www.w3.org/2006/vcard/VCard -->

    <owl:Class rdf:about="&vcard;VCard">
        <rdfs:label>vCard Class</rdfs:label>
        <rdfs:comment
            >Resources that are vCards and the URIs that denote these vCards can also be the same URIs that denote people/orgs</rdfs:comment>
    </owl:Class>
    


    <!-- http://www.w3.org/2006/vcard/Video -->

    <owl:Class rdf:about="&vcard;Video">
        <rdfs:label>Video</rdfs:label>
        <rdfs:subClassOf rdf:resource="&vcard;Tel"/>
        <rdfs:comment
            >Video Communications</rdfs:comment>
    </owl:Class>
    


    <!-- http://www.w3.org/2006/vcard/Voice -->

    <owl:Class rdf:about="&vcard;Voice">
        <rdfs:label>Voice</rdfs:label>
        <rdfs:subClassOf rdf:resource="&vcard;Tel"/>
        <rdfs:comment
            >Voice Communications</rdfs:comment>
    </owl:Class>
    


    <!-- http://www.w3.org/2006/vcard/Work -->

    <owl:Class rdf:about="&vcard;Work">
        <rdfs:label>Work</rdfs:label>
        <rdfs:subClassOf>
            <owl:Class>
                <owl:unionOf rdf:parseType="Collection">
                    <rdf:Description rdf:about="&vcard;Address"/>
                     <rdf:Description rdf:about="&vcard;Email"/>
                   <rdf:Description rdf:about="&vcard;Label"/>
                    <rdf:Description rdf:about="&vcard;Tel"/>
                </owl:unionOf>
            </owl:Class>
        </rdfs:subClassOf>
        <rdfs:comment
            >Information related to a Work Address, Label, or Telephone</rdfs:comment>
    </owl:Class>
    


    <!-- http://www.w3.org/2006/vcard/X400 -->

    <owl:Class rdf:about="&vcard;X400">
        <rdfs:label>X.400</rdfs:label>
        <rdfs:subClassOf rdf:resource="&vcard;Email"/>
        <rdfs:comment>X.400 Email</rdfs:comment>
    </owl:Class>
</rdf:RDF>