rdf-vocab 3.1.7 → 3.1.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/lib/rdf/vocab.rb +5 -1
- data/lib/rdf/vocab/acl.rb +20 -60
- data/lib/rdf/vocab/as.rb +90 -90
- data/lib/rdf/vocab/bf2.rb +488 -488
- data/lib/rdf/vocab/bibo.rb +120 -123
- data/lib/rdf/vocab/cc.rb +18 -47
- data/lib/rdf/vocab/crm.rb +240 -775
- data/lib/rdf/vocab/dc.rb +98 -98
- data/lib/rdf/vocab/dc11.rb +30 -30
- data/lib/rdf/vocab/dcat.rb +85 -85
- data/lib/rdf/vocab/dcmitype.rb +12 -12
- data/lib/rdf/vocab/disco.rb +58 -58
- data/lib/rdf/vocab/dwc.rb +188 -188
- data/lib/rdf/vocab/earl.rb +27 -27
- data/lib/rdf/vocab/ebucore.rb +1232 -1522
- data/lib/rdf/vocab/edm.rb +52 -75
- data/lib/rdf/vocab/fcrepo4.rb +21 -21
- data/lib/rdf/vocab/foaf.rb +75 -75
- data/lib/rdf/vocab/geo.rb +8 -109
- data/lib/rdf/vocab/geojson.rb +16 -16
- data/lib/rdf/vocab/geonames.rb +1344 -1352
- data/lib/rdf/vocab/gr.rb +177 -564
- data/lib/rdf/vocab/ht.rb +40 -40
- data/lib/rdf/vocab/hydra.rb +99 -58
- data/lib/rdf/vocab/iana.rb +71 -113
- data/lib/rdf/vocab/ical.rb +123 -171
- data/lib/rdf/vocab/identifiers.rb +161 -662
- data/lib/rdf/vocab/iiif.rb +25 -25
- data/lib/rdf/vocab/jsonld.rb +33 -51
- data/lib/rdf/vocab/lrmi.rb +16 -16
- data/lib/rdf/vocab/ma.rb +79 -79
- data/lib/rdf/vocab/marcrelators.rb +4 -3
- data/lib/rdf/vocab/mo.rb +196 -539
- data/lib/rdf/vocab/mods.rb +119 -123
- data/lib/rdf/vocab/oa.rb +68 -72
- data/lib/rdf/vocab/ogc.rb +8 -8
- data/lib/rdf/vocab/ore.rb +13 -13
- data/lib/rdf/vocab/org.rb +46 -46
- data/lib/rdf/vocab/pcdm.rb +11 -33
- data/lib/rdf/vocab/pplan.rb +18 -196
- data/lib/rdf/vocab/premis.rb +321 -416
- data/lib/rdf/vocab/premiseventtype.rb +1 -1
- data/lib/rdf/vocab/prov.rb +90 -115
- data/lib/rdf/vocab/ptr.rb +34 -36
- data/lib/rdf/vocab/rightsstatements.rb +12 -12
- data/lib/rdf/vocab/rss.rb +10 -10
- data/lib/rdf/vocab/schema.rb +3131 -3445
- data/lib/rdf/vocab/schemas.rb +27066 -0
- data/lib/rdf/vocab/sd.rb +38 -38
- data/lib/rdf/vocab/sh.rb +183 -183
- data/lib/rdf/vocab/sioc.rb +97 -97
- data/lib/rdf/vocab/siocservices.rb +8 -8
- data/lib/rdf/vocab/sioctypes.rb +38 -38
- data/lib/rdf/vocab/skos.rb +45 -47
- data/lib/rdf/vocab/skosxl.rb +10 -10
- data/lib/rdf/vocab/v.rb +32 -36
- data/lib/rdf/vocab/vcard.rb +117 -118
- data/lib/rdf/vocab/vmd.rb +32 -36
- data/lib/rdf/vocab/void.rb +26 -26
- data/lib/rdf/vocab/vs.rb +4 -4
- data/lib/rdf/vocab/wdrs.rb +22 -22
- data/lib/rdf/vocab/wot.rb +18 -18
- data/lib/rdf/vocab/xhv.rb +84 -200
- data/lib/rdf/vocab/xkos.rb +10 -10
- metadata +6 -5
data/lib/rdf/vocab/sioc.rb
CHANGED
@@ -419,61 +419,61 @@ module RDF::Vocab
|
|
419
419
|
|
420
420
|
# Class definitions
|
421
421
|
term :Community,
|
422
|
-
comment:
|
422
|
+
comment: "Community is a high-level concept that defines an online community and what it consists of.".freeze,
|
423
423
|
isDefinedBy: "sioc:".freeze,
|
424
424
|
label: "Community".freeze,
|
425
425
|
"owl:disjointWith": ["sioc:Item".freeze, "sioc:Role".freeze, "sioc:UserAccount".freeze],
|
426
426
|
type: "owl:Class".freeze
|
427
427
|
term :Container,
|
428
|
-
comment:
|
428
|
+
comment: "An area in which content Items are contained.".freeze,
|
429
429
|
isDefinedBy: "sioc:".freeze,
|
430
430
|
label: "Container".freeze,
|
431
431
|
"owl:disjointWith": ["sioc:Item".freeze, "sioc:Role".freeze, "sioc:UserAccount".freeze, "sioc:Usergroup".freeze],
|
432
432
|
type: "owl:Class".freeze
|
433
433
|
term :Forum,
|
434
|
-
comment:
|
434
|
+
comment: "A discussion area on which Posts or entries are made.".freeze,
|
435
435
|
isDefinedBy: "sioc:".freeze,
|
436
436
|
label: "Forum".freeze,
|
437
437
|
subClassOf: "sioc:Container".freeze,
|
438
438
|
type: "owl:Class".freeze
|
439
439
|
term :Item,
|
440
|
-
comment:
|
440
|
+
comment: "An Item is something which can be in a Container.".freeze,
|
441
441
|
isDefinedBy: "sioc:".freeze,
|
442
442
|
label: "Item".freeze,
|
443
443
|
"owl:disjointWith": ["sioc:Container".freeze, "sioc:Role".freeze, "sioc:Space".freeze, "sioc:UserAccount".freeze, "sioc:Usergroup".freeze],
|
444
444
|
type: "owl:Class".freeze
|
445
445
|
term :Post,
|
446
|
-
comment:
|
446
|
+
comment: "An article or message that can be posted to a Forum.".freeze,
|
447
447
|
isDefinedBy: "sioc:".freeze,
|
448
448
|
label: "Post".freeze,
|
449
449
|
subClassOf: ["foaf:Document".freeze, "sioc:Item".freeze],
|
450
450
|
type: "owl:Class".freeze
|
451
451
|
term :Role,
|
452
|
-
comment:
|
452
|
+
comment: "A Role is a function of a UserAccount within a scope of a particular Forum, Site, etc.".freeze,
|
453
453
|
isDefinedBy: "sioc:".freeze,
|
454
454
|
label: "Role".freeze,
|
455
455
|
"owl:disjointWith": ["sioc:Container".freeze, "sioc:Item".freeze, "sioc:Space".freeze, "sioc:UserAccount".freeze, "sioc:Usergroup".freeze],
|
456
456
|
type: "owl:Class".freeze
|
457
457
|
term :Site,
|
458
|
-
comment:
|
458
|
+
comment: "A Site can be the location of an online community or set of communities, with UserAccounts and Usergroups creating Items in a set of Containers. It can be thought of as a web-accessible data Space.".freeze,
|
459
459
|
isDefinedBy: "sioc:".freeze,
|
460
460
|
label: "Site".freeze,
|
461
461
|
subClassOf: "sioc:Space".freeze,
|
462
462
|
type: "owl:Class".freeze
|
463
463
|
term :Space,
|
464
|
-
comment:
|
464
|
+
comment: "A Space is a place where data resides, e.g. on a website, desktop, fileshare, etc.".freeze,
|
465
465
|
isDefinedBy: "sioc:".freeze,
|
466
466
|
label: "Space".freeze,
|
467
467
|
"owl:disjointWith": ["sioc:Item".freeze, "sioc:Role".freeze, "sioc:UserAccount".freeze, "sioc:Usergroup".freeze],
|
468
468
|
type: "owl:Class".freeze
|
469
469
|
term :Thread,
|
470
|
-
comment:
|
470
|
+
comment: "A container for a series of threaded discussion Posts or Items.".freeze,
|
471
471
|
isDefinedBy: "sioc:".freeze,
|
472
472
|
label: "Thread".freeze,
|
473
473
|
subClassOf: "sioc:Container".freeze,
|
474
474
|
type: "owl:Class".freeze
|
475
475
|
term :User,
|
476
|
-
comment:
|
476
|
+
comment: "UserAccount is now preferred. This is a deprecated class for a User in an online community site.".freeze,
|
477
477
|
equivalentClass: "sioc:UserAccount".freeze,
|
478
478
|
isDefinedBy: "sioc:".freeze,
|
479
479
|
label: "User".freeze,
|
@@ -482,14 +482,14 @@ module RDF::Vocab
|
|
482
482
|
subClassOf: "foaf:OnlineAccount".freeze,
|
483
483
|
type: "owl:DeprecatedClass".freeze
|
484
484
|
term :UserAccount,
|
485
|
-
comment:
|
485
|
+
comment: "A user account in an online community site.".freeze,
|
486
486
|
isDefinedBy: "sioc:".freeze,
|
487
487
|
label: "User Account".freeze,
|
488
488
|
"owl:disjointWith": ["sioc:Container".freeze, "sioc:Item".freeze, "sioc:Role".freeze, "sioc:Space".freeze, "sioc:Usergroup".freeze],
|
489
489
|
subClassOf: "foaf:OnlineAccount".freeze,
|
490
490
|
type: "owl:Class".freeze
|
491
491
|
term :Usergroup,
|
492
|
-
comment:
|
492
|
+
comment: "A set of UserAccounts whose owners have a common purpose or interest. Can be used for access control purposes.".freeze,
|
493
493
|
isDefinedBy: "sioc:".freeze,
|
494
494
|
label: "Usergroup".freeze,
|
495
495
|
"owl:disjointWith": ["sioc:Container".freeze, "sioc:Item".freeze, "sioc:Role".freeze, "sioc:Space".freeze, "sioc:UserAccount".freeze],
|
@@ -497,13 +497,13 @@ module RDF::Vocab
|
|
497
497
|
|
498
498
|
# Property definitions
|
499
499
|
property :about,
|
500
|
-
comment:
|
500
|
+
comment: "Specifies that this Item is about a particular resource, e.g. a Post describing a book, hotel, etc.".freeze,
|
501
501
|
domain: "sioc:Item".freeze,
|
502
502
|
isDefinedBy: "sioc:".freeze,
|
503
503
|
label: "about".freeze,
|
504
504
|
type: "owl:ObjectProperty".freeze
|
505
505
|
property :account_of,
|
506
|
-
comment:
|
506
|
+
comment: "Refers to the foaf:Agent or foaf:Person who owns this sioc:UserAccount.".freeze,
|
507
507
|
domain: "sioc:UserAccount".freeze,
|
508
508
|
inverseOf: "foaf:account".freeze,
|
509
509
|
isDefinedBy: "sioc:".freeze,
|
@@ -511,13 +511,13 @@ module RDF::Vocab
|
|
511
511
|
range: "foaf:Agent".freeze,
|
512
512
|
type: "owl:ObjectProperty".freeze
|
513
513
|
property :addressed_to,
|
514
|
-
comment:
|
514
|
+
comment: "Refers to who (e.g. a UserAccount, e-mail address, etc.) a particular Item is addressed to.".freeze,
|
515
515
|
domain: "sioc:Item".freeze,
|
516
516
|
isDefinedBy: "sioc:".freeze,
|
517
517
|
label: "addressed to".freeze,
|
518
518
|
type: "owl:ObjectProperty".freeze
|
519
519
|
property :administrator_of,
|
520
|
-
comment:
|
520
|
+
comment: "A Site that the UserAccount is an administrator of.".freeze,
|
521
521
|
domain: "sioc:UserAccount".freeze,
|
522
522
|
inverseOf: "sioc:has_administrator".freeze,
|
523
523
|
isDefinedBy: "sioc:".freeze,
|
@@ -525,20 +525,20 @@ module RDF::Vocab
|
|
525
525
|
range: "sioc:Site".freeze,
|
526
526
|
type: "owl:ObjectProperty".freeze
|
527
527
|
property :attachment,
|
528
|
-
comment:
|
528
|
+
comment: "The URI of a file attached to an Item.".freeze,
|
529
529
|
domain: "sioc:Item".freeze,
|
530
530
|
isDefinedBy: "sioc:".freeze,
|
531
531
|
label: "attachment".freeze,
|
532
532
|
type: "owl:ObjectProperty".freeze
|
533
533
|
property :avatar,
|
534
|
-
comment:
|
534
|
+
comment: "An image or depiction used to represent this UserAccount.".freeze,
|
535
535
|
domain: "sioc:UserAccount".freeze,
|
536
536
|
isDefinedBy: "sioc:".freeze,
|
537
537
|
label: "avatar".freeze,
|
538
538
|
subPropertyOf: "foaf:depiction".freeze,
|
539
539
|
type: "owl:ObjectProperty".freeze
|
540
540
|
property :container_of,
|
541
|
-
comment:
|
541
|
+
comment: "An Item that this Container contains.".freeze,
|
542
542
|
domain: "sioc:Container".freeze,
|
543
543
|
inverseOf: "sioc:has_container".freeze,
|
544
544
|
isDefinedBy: "sioc:".freeze,
|
@@ -547,14 +547,14 @@ module RDF::Vocab
|
|
547
547
|
subPropertyOf: "dc:hasPart".freeze,
|
548
548
|
type: "owl:ObjectProperty".freeze
|
549
549
|
property :content,
|
550
|
-
comment:
|
550
|
+
comment: "The content of the Item in plain text format.".freeze,
|
551
551
|
domain: "sioc:Item".freeze,
|
552
552
|
isDefinedBy: "sioc:".freeze,
|
553
553
|
label: "content".freeze,
|
554
554
|
range: "rdfs:Literal".freeze,
|
555
555
|
type: "owl:DatatypeProperty".freeze
|
556
556
|
property :content_encoded,
|
557
|
-
comment:
|
557
|
+
comment: "The encoded content of the Post, contained in CDATA areas.".freeze,
|
558
558
|
domain: "sioc:Post".freeze,
|
559
559
|
isDefinedBy: "sioc:".freeze,
|
560
560
|
label: "content encoded".freeze,
|
@@ -562,7 +562,7 @@ module RDF::Vocab
|
|
562
562
|
range: "rdfs:Literal".freeze,
|
563
563
|
type: ["owl:DatatypeProperty".freeze, "owl:DeprecatedProperty".freeze]
|
564
564
|
property :created_at,
|
565
|
-
comment:
|
565
|
+
comment: "When this was created, in ISO 8601 format.".freeze,
|
566
566
|
domain: "sioc:Post".freeze,
|
567
567
|
isDefinedBy: "sioc:".freeze,
|
568
568
|
label: "created at".freeze,
|
@@ -570,21 +570,21 @@ module RDF::Vocab
|
|
570
570
|
range: "rdfs:Literal".freeze,
|
571
571
|
type: ["owl:DatatypeProperty".freeze, "owl:DeprecatedProperty".freeze]
|
572
572
|
property :creator_of,
|
573
|
-
comment:
|
573
|
+
comment: "A resource that the UserAccount is a creator of.".freeze,
|
574
574
|
domain: "sioc:UserAccount".freeze,
|
575
575
|
inverseOf: "sioc:has_creator".freeze,
|
576
576
|
isDefinedBy: "sioc:".freeze,
|
577
577
|
label: "creator of".freeze,
|
578
578
|
type: "owl:ObjectProperty".freeze
|
579
579
|
property :delivered_at,
|
580
|
-
comment:
|
580
|
+
comment: "When this was delivered, in ISO 8601 format.".freeze,
|
581
581
|
domain: "sioc:Item".freeze,
|
582
582
|
isDefinedBy: "sioc:".freeze,
|
583
583
|
label: "delivered at".freeze,
|
584
584
|
range: "rdfs:Literal".freeze,
|
585
585
|
type: ["owl:DatatypeProperty".freeze, "owl:ObjectProperty".freeze]
|
586
586
|
property :description,
|
587
|
-
comment:
|
587
|
+
comment: "The content of the Post.".freeze,
|
588
588
|
domain: "sioc:Post".freeze,
|
589
589
|
isDefinedBy: "sioc:".freeze,
|
590
590
|
label: "description".freeze,
|
@@ -592,14 +592,14 @@ module RDF::Vocab
|
|
592
592
|
range: "rdfs:Literal".freeze,
|
593
593
|
type: ["owl:DatatypeProperty".freeze, "owl:DeprecatedProperty".freeze]
|
594
594
|
property :discussion_of,
|
595
|
-
comment:
|
595
|
+
comment: "The Item that this discussion is about.".freeze,
|
596
596
|
inverseOf: "sioc:has_discussion".freeze,
|
597
597
|
isDefinedBy: "sioc:".freeze,
|
598
598
|
label: "discussion of".freeze,
|
599
599
|
range: "sioc:Item".freeze,
|
600
600
|
type: "owl:ObjectProperty".freeze
|
601
601
|
property :earlier_version,
|
602
|
-
comment:
|
602
|
+
comment: "Links to a previous (older) revision of this Item or Post.".freeze,
|
603
603
|
domain: "sioc:Item".freeze,
|
604
604
|
inverseOf: "sioc:later_version".freeze,
|
605
605
|
isDefinedBy: "sioc:".freeze,
|
@@ -607,32 +607,32 @@ module RDF::Vocab
|
|
607
607
|
range: "sioc:Item".freeze,
|
608
608
|
type: "owl:TransitiveProperty".freeze
|
609
609
|
property :email,
|
610
|
-
comment:
|
610
|
+
comment: "An electronic mail address of the UserAccount.".freeze,
|
611
611
|
domain: "sioc:UserAccount".freeze,
|
612
612
|
isDefinedBy: "sioc:".freeze,
|
613
613
|
label: "email".freeze,
|
614
614
|
type: "owl:ObjectProperty".freeze
|
615
615
|
property :email_sha1,
|
616
|
-
comment:
|
616
|
+
comment: "An electronic mail address of the UserAccount, encoded using SHA1.".freeze,
|
617
617
|
domain: "sioc:UserAccount".freeze,
|
618
618
|
isDefinedBy: "sioc:".freeze,
|
619
619
|
label: "email sha1".freeze,
|
620
620
|
range: "rdfs:Literal".freeze,
|
621
621
|
type: "owl:DatatypeProperty".freeze
|
622
622
|
property :embeds_knowledge,
|
623
|
-
comment:
|
623
|
+
comment: "This links Items to embedded statements, facts and structured content.".freeze,
|
624
624
|
domain: "sioc:Item".freeze,
|
625
625
|
isDefinedBy: "sioc:".freeze,
|
626
626
|
label: "embeds knowledge".freeze,
|
627
627
|
range: "http://www.w3.org/2004/03/trix/rdfg-1/Graph".freeze,
|
628
628
|
type: "owl:ObjectProperty".freeze
|
629
629
|
property :feed,
|
630
|
-
comment:
|
630
|
+
comment: "A feed (e.g. RSS, Atom, etc.) pertaining to this resource (e.g. for a Forum, Site, UserAccount, etc.).".freeze,
|
631
631
|
isDefinedBy: "sioc:".freeze,
|
632
632
|
label: "feed".freeze,
|
633
633
|
type: "owl:ObjectProperty".freeze
|
634
634
|
property :first_name,
|
635
|
-
comment:
|
635
|
+
comment: "First (real) name of this User. Synonyms include given name or christian name.".freeze,
|
636
636
|
domain: "sioc:UserAccount".freeze,
|
637
637
|
isDefinedBy: "sioc:".freeze,
|
638
638
|
label: "first name".freeze,
|
@@ -640,21 +640,21 @@ module RDF::Vocab
|
|
640
640
|
range: "rdfs:Literal".freeze,
|
641
641
|
type: ["owl:DatatypeProperty".freeze, "owl:DeprecatedProperty".freeze]
|
642
642
|
property :follows,
|
643
|
-
comment:
|
643
|
+
comment: "Indicates that one UserAccount follows another UserAccount (e.g. for microblog posts or other content item updates).".freeze,
|
644
644
|
domain: "sioc:UserAccount".freeze,
|
645
645
|
isDefinedBy: "sioc:".freeze,
|
646
646
|
label: "follows".freeze,
|
647
647
|
range: "sioc:UserAccount".freeze,
|
648
648
|
type: "owl:ObjectProperty".freeze
|
649
649
|
property :function_of,
|
650
|
-
comment:
|
650
|
+
comment: "A UserAccount that has this Role.".freeze,
|
651
651
|
domain: "sioc:Role".freeze,
|
652
652
|
inverseOf: "sioc:has_function".freeze,
|
653
653
|
isDefinedBy: "sioc:".freeze,
|
654
654
|
label: "function of".freeze,
|
655
655
|
type: "owl:ObjectProperty".freeze
|
656
656
|
property :generator,
|
657
|
-
comment:
|
657
|
+
comment: "A URI for the application used to generate this Item.".freeze,
|
658
658
|
domain: "sioc:Item".freeze,
|
659
659
|
isDefinedBy: "sioc:".freeze,
|
660
660
|
label: "generator".freeze,
|
@@ -665,7 +665,7 @@ module RDF::Vocab
|
|
665
665
|
"owl:versionInfo": "This property has been renamed. Use sioc:usergroup_of instead.".freeze,
|
666
666
|
type: ["owl:DeprecatedProperty".freeze, "owl:ObjectProperty".freeze]
|
667
667
|
property :has_administrator,
|
668
|
-
comment:
|
668
|
+
comment: "A UserAccount that is an administrator of this Site.".freeze,
|
669
669
|
domain: "sioc:Site".freeze,
|
670
670
|
inverseOf: "sioc:administrator_of".freeze,
|
671
671
|
isDefinedBy: "sioc:".freeze,
|
@@ -673,7 +673,7 @@ module RDF::Vocab
|
|
673
673
|
range: "sioc:UserAccount".freeze,
|
674
674
|
type: "owl:ObjectProperty".freeze
|
675
675
|
property :has_container,
|
676
|
-
comment:
|
676
|
+
comment: "The Container to which this Item belongs.".freeze,
|
677
677
|
domain: "sioc:Item".freeze,
|
678
678
|
inverseOf: "sioc:container_of".freeze,
|
679
679
|
isDefinedBy: "sioc:".freeze,
|
@@ -682,21 +682,21 @@ module RDF::Vocab
|
|
682
682
|
subPropertyOf: "dc:partOf".freeze,
|
683
683
|
type: "owl:ObjectProperty".freeze
|
684
684
|
property :has_creator,
|
685
|
-
comment:
|
685
|
+
comment: "This is the UserAccount that made this resource.".freeze,
|
686
686
|
inverseOf: "sioc:creator_of".freeze,
|
687
687
|
isDefinedBy: "sioc:".freeze,
|
688
688
|
label: "has creator".freeze,
|
689
689
|
range: "sioc:UserAccount".freeze,
|
690
690
|
type: "owl:ObjectProperty".freeze
|
691
691
|
property :has_discussion,
|
692
|
-
comment:
|
692
|
+
comment: "A discussion that is related to this Item. The discussion can be anything, for example, a sioc:Forum or sioc:Thread, a sioct:WikiArticle or simply a foaf:Document.".freeze,
|
693
693
|
domain: "sioc:Item".freeze,
|
694
694
|
inverseOf: "sioc:discussion_of".freeze,
|
695
695
|
isDefinedBy: "sioc:".freeze,
|
696
696
|
label: "has discussion".freeze,
|
697
697
|
type: "owl:ObjectProperty".freeze
|
698
698
|
property :has_function,
|
699
|
-
comment:
|
699
|
+
comment: "A Role that this UserAccount has.".freeze,
|
700
700
|
inverseOf: "sioc:function_of".freeze,
|
701
701
|
isDefinedBy: "sioc:".freeze,
|
702
702
|
label: "has function".freeze,
|
@@ -708,7 +708,7 @@ module RDF::Vocab
|
|
708
708
|
"owl:versionInfo": "This property has been renamed. Use sioc:has_usergroup instead.".freeze,
|
709
709
|
type: ["owl:DeprecatedProperty".freeze, "owl:ObjectProperty".freeze]
|
710
710
|
property :has_host,
|
711
|
-
comment:
|
711
|
+
comment: "The Site that hosts this Container.".freeze,
|
712
712
|
domain: "sioc:Container".freeze,
|
713
713
|
inverseOf: "sioc:host_of".freeze,
|
714
714
|
isDefinedBy: "sioc:".freeze,
|
@@ -717,7 +717,7 @@ module RDF::Vocab
|
|
717
717
|
subPropertyOf: "sioc:has_space".freeze,
|
718
718
|
type: "owl:ObjectProperty".freeze
|
719
719
|
property :has_member,
|
720
|
-
comment:
|
720
|
+
comment: "A UserAccount that is a member of this Usergroup.".freeze,
|
721
721
|
domain: "sioc:Usergroup".freeze,
|
722
722
|
inverseOf: "sioc:member_of".freeze,
|
723
723
|
isDefinedBy: "sioc:".freeze,
|
@@ -725,7 +725,7 @@ module RDF::Vocab
|
|
725
725
|
range: "sioc:UserAccount".freeze,
|
726
726
|
type: "owl:ObjectProperty".freeze
|
727
727
|
property :has_moderator,
|
728
|
-
comment:
|
728
|
+
comment: "A UserAccount that is a moderator of this Forum.".freeze,
|
729
729
|
domain: "sioc:Forum".freeze,
|
730
730
|
inverseOf: "sioc:moderator_of".freeze,
|
731
731
|
isDefinedBy: "sioc:".freeze,
|
@@ -733,21 +733,21 @@ module RDF::Vocab
|
|
733
733
|
range: "sioc:UserAccount".freeze,
|
734
734
|
type: "owl:ObjectProperty".freeze
|
735
735
|
property :has_modifier,
|
736
|
-
comment:
|
736
|
+
comment: "A UserAccount that modified this resource (e.g. Item, Container, Space).".freeze,
|
737
737
|
inverseOf: "sioc:modifier_of".freeze,
|
738
738
|
isDefinedBy: "sioc:".freeze,
|
739
739
|
label: "has modifier".freeze,
|
740
740
|
range: "sioc:UserAccount".freeze,
|
741
741
|
type: "owl:ObjectProperty".freeze
|
742
742
|
property :has_owner,
|
743
|
-
comment:
|
743
|
+
comment: "A UserAccount that this resource is owned by.".freeze,
|
744
744
|
inverseOf: "sioc:owner_of".freeze,
|
745
745
|
isDefinedBy: "sioc:".freeze,
|
746
746
|
label: "has owner".freeze,
|
747
747
|
range: "sioc:UserAccount".freeze,
|
748
748
|
type: "owl:ObjectProperty".freeze
|
749
749
|
property :has_parent,
|
750
|
-
comment:
|
750
|
+
comment: "A Container or Forum that this Container or Forum is a child of.".freeze,
|
751
751
|
domain: "sioc:Container".freeze,
|
752
752
|
inverseOf: "sioc:parent_of".freeze,
|
753
753
|
isDefinedBy: "sioc:".freeze,
|
@@ -756,14 +756,14 @@ module RDF::Vocab
|
|
756
756
|
subPropertyOf: "dc:partOf".freeze,
|
757
757
|
type: "owl:ObjectProperty".freeze
|
758
758
|
property :has_part,
|
759
|
-
comment:
|
759
|
+
comment: "An resource that is a part of this subject.".freeze,
|
760
760
|
inverseOf: "sioc:part_of".freeze,
|
761
761
|
isDefinedBy: "sioc:".freeze,
|
762
762
|
label: "has part".freeze,
|
763
763
|
"owl:versionInfo": "This property is deprecated. Use dcterms:hasPart from the Dublin Core ontology instead.".freeze,
|
764
764
|
type: ["owl:DeprecatedProperty".freeze, "owl:ObjectProperty".freeze]
|
765
765
|
property :has_reply,
|
766
|
-
comment:
|
766
|
+
comment: "Points to an Item or Post that is a reply or response to this Item or Post.".freeze,
|
767
767
|
domain: "sioc:Item".freeze,
|
768
768
|
inverseOf: "sioc:reply_of".freeze,
|
769
769
|
isDefinedBy: "sioc:".freeze,
|
@@ -772,14 +772,14 @@ module RDF::Vocab
|
|
772
772
|
subPropertyOf: "sioc:related_to".freeze,
|
773
773
|
type: "owl:ObjectProperty".freeze
|
774
774
|
property :has_scope,
|
775
|
-
comment:
|
775
|
+
comment: "A resource that this Role applies to.".freeze,
|
776
776
|
domain: "sioc:Role".freeze,
|
777
777
|
inverseOf: "sioc:scope_of".freeze,
|
778
778
|
isDefinedBy: "sioc:".freeze,
|
779
779
|
label: "has scope".freeze,
|
780
780
|
type: "owl:ObjectProperty".freeze
|
781
781
|
property :has_space,
|
782
|
-
comment:
|
782
|
+
comment: "A data Space which this resource is a part of.".freeze,
|
783
783
|
inverseOf: "sioc:space_of".freeze,
|
784
784
|
isDefinedBy: "sioc:".freeze,
|
785
785
|
label: "has space".freeze,
|
@@ -787,7 +787,7 @@ module RDF::Vocab
|
|
787
787
|
subPropertyOf: "dc:partOf".freeze,
|
788
788
|
type: "owl:ObjectProperty".freeze
|
789
789
|
property :has_subscriber,
|
790
|
-
comment:
|
790
|
+
comment: "A UserAccount that is subscribed to this Container.".freeze,
|
791
791
|
domain: "sioc:Container".freeze,
|
792
792
|
inverseOf: "sioc:subscriber_of".freeze,
|
793
793
|
isDefinedBy: "sioc:".freeze,
|
@@ -796,7 +796,7 @@ module RDF::Vocab
|
|
796
796
|
"rdfs:seeAlso": "sioc:feed".freeze,
|
797
797
|
type: "owl:ObjectProperty".freeze
|
798
798
|
property :has_usergroup,
|
799
|
-
comment:
|
799
|
+
comment: "Points to a Usergroup that has certain access to this Space.".freeze,
|
800
800
|
domain: "sioc:Space".freeze,
|
801
801
|
inverseOf: "sioc:usergroup_of".freeze,
|
802
802
|
isDefinedBy: "sioc:".freeze,
|
@@ -804,7 +804,7 @@ module RDF::Vocab
|
|
804
804
|
range: "sioc:Usergroup".freeze,
|
805
805
|
type: "owl:ObjectProperty".freeze
|
806
806
|
property :host_of,
|
807
|
-
comment:
|
807
|
+
comment: "A Container that is hosted on this Site.".freeze,
|
808
808
|
domain: "sioc:Site".freeze,
|
809
809
|
inverseOf: "sioc:has_host".freeze,
|
810
810
|
isDefinedBy: "sioc:".freeze,
|
@@ -813,26 +813,26 @@ module RDF::Vocab
|
|
813
813
|
subPropertyOf: "sioc:space_of".freeze,
|
814
814
|
type: "owl:ObjectProperty".freeze
|
815
815
|
property :id,
|
816
|
-
comment:
|
816
|
+
comment: "An identifier of a SIOC concept instance. For example, a user ID. Must be unique for instances of each type of SIOC concept within the same site.".freeze,
|
817
817
|
isDefinedBy: "sioc:".freeze,
|
818
818
|
label: "id".freeze,
|
819
819
|
range: "rdfs:Literal".freeze,
|
820
820
|
type: "owl:DatatypeProperty".freeze
|
821
821
|
property :ip_address,
|
822
|
-
comment:
|
822
|
+
comment: "The IP address used when creating this Item, UserAccount, etc. This can be associated with a creator. Some wiki articles list the IP addresses for the creator or modifiers when the usernames are absent.".freeze,
|
823
823
|
isDefinedBy: "sioc:".freeze,
|
824
824
|
label: "ip address".freeze,
|
825
825
|
range: "rdfs:Literal".freeze,
|
826
826
|
type: "owl:DatatypeProperty".freeze
|
827
827
|
property :last_activity_date,
|
828
|
-
comment:
|
828
|
+
comment: "The date and time of the last activity associated with a SIOC concept instance, and expressed in ISO 8601 format. This could be due to a reply Post or Comment, a modification to an Item, etc.".freeze,
|
829
829
|
isDefinedBy: "sioc:".freeze,
|
830
830
|
label: "last activity date".freeze,
|
831
831
|
range: "rdfs:Literal".freeze,
|
832
832
|
subPropertyOf: "dc:date".freeze,
|
833
833
|
type: "owl:DatatypeProperty".freeze
|
834
834
|
property :last_item_date,
|
835
|
-
comment:
|
835
|
+
comment: "The date and time of the last Post (or Item) in a Forum (or a Container), in ISO 8601 format.".freeze,
|
836
836
|
domain: "sioc:Container".freeze,
|
837
837
|
isDefinedBy: "sioc:".freeze,
|
838
838
|
label: "last item date".freeze,
|
@@ -840,7 +840,7 @@ module RDF::Vocab
|
|
840
840
|
subPropertyOf: "dc:date".freeze,
|
841
841
|
type: "owl:DatatypeProperty".freeze
|
842
842
|
property :last_name,
|
843
|
-
comment:
|
843
|
+
comment: "Last (real) name of this user. Synonyms include surname or family name.".freeze,
|
844
844
|
domain: "sioc:UserAccount".freeze,
|
845
845
|
isDefinedBy: "sioc:".freeze,
|
846
846
|
label: "last name".freeze,
|
@@ -848,14 +848,14 @@ module RDF::Vocab
|
|
848
848
|
range: "rdfs:Literal".freeze,
|
849
849
|
type: ["owl:DatatypeProperty".freeze, "owl:DeprecatedProperty".freeze]
|
850
850
|
property :last_reply_date,
|
851
|
-
comment:
|
851
|
+
comment: "The date and time of the last reply Post or Comment, which could be associated with a starter Item or Post or with a Thread, and expressed in ISO 8601 format.".freeze,
|
852
852
|
isDefinedBy: "sioc:".freeze,
|
853
853
|
label: "last reply date".freeze,
|
854
854
|
range: "rdfs:Literal".freeze,
|
855
855
|
subPropertyOf: "dc:date".freeze,
|
856
856
|
type: "owl:DatatypeProperty".freeze
|
857
857
|
property :later_version,
|
858
|
-
comment:
|
858
|
+
comment: "Links to a later (newer) revision of this Item or Post.".freeze,
|
859
859
|
domain: "sioc:Item".freeze,
|
860
860
|
inverseOf: "sioc:earlier_version".freeze,
|
861
861
|
isDefinedBy: "sioc:".freeze,
|
@@ -863,30 +863,30 @@ module RDF::Vocab
|
|
863
863
|
range: "sioc:Item".freeze,
|
864
864
|
type: "owl:TransitiveProperty".freeze
|
865
865
|
property :latest_version,
|
866
|
-
comment:
|
866
|
+
comment: "Links to the latest revision of this Item or Post.".freeze,
|
867
867
|
domain: "sioc:Item".freeze,
|
868
868
|
isDefinedBy: "sioc:".freeze,
|
869
869
|
label: "latest version".freeze,
|
870
870
|
range: "sioc:Item".freeze,
|
871
871
|
type: "owl:ObjectProperty".freeze
|
872
872
|
property :likes,
|
873
|
-
comment:
|
873
|
+
comment: "Used to indicate some form of endorsement by a UserAccount or Agent of an Item, Container, Space, UserAccount, etc.".freeze,
|
874
874
|
isDefinedBy: "sioc:".freeze,
|
875
875
|
label: "likes".freeze,
|
876
876
|
type: "owl:ObjectProperty".freeze
|
877
877
|
property :link,
|
878
|
-
comment:
|
878
|
+
comment: "A URI of a document which contains this SIOC object.".freeze,
|
879
879
|
isDefinedBy: "sioc:".freeze,
|
880
880
|
label: "link".freeze,
|
881
881
|
type: "owl:ObjectProperty".freeze
|
882
882
|
property :links_to,
|
883
|
-
comment:
|
883
|
+
comment: "Links extracted from hyperlinks within a SIOC concept, e.g. Post or Site.".freeze,
|
884
884
|
isDefinedBy: "sioc:".freeze,
|
885
885
|
label: "links to".freeze,
|
886
886
|
subPropertyOf: "dc:references".freeze,
|
887
887
|
type: "owl:ObjectProperty".freeze
|
888
888
|
property :member_of,
|
889
|
-
comment:
|
889
|
+
comment: "A Usergroup that this UserAccount is a member of.".freeze,
|
890
890
|
domain: "sioc:UserAccount".freeze,
|
891
891
|
inverseOf: "sioc:has_member".freeze,
|
892
892
|
isDefinedBy: "sioc:".freeze,
|
@@ -894,14 +894,14 @@ module RDF::Vocab
|
|
894
894
|
range: "sioc:Usergroup".freeze,
|
895
895
|
type: "owl:ObjectProperty".freeze
|
896
896
|
property :mentions,
|
897
|
-
comment:
|
897
|
+
comment: "Refers to a UserAccount that a particular Item mentions.".freeze,
|
898
898
|
domain: "sioc:Item".freeze,
|
899
899
|
isDefinedBy: "sioc:".freeze,
|
900
900
|
label: "mentions".freeze,
|
901
901
|
range: "sioc:UserAccount".freeze,
|
902
902
|
type: "owl:ObjectProperty".freeze
|
903
903
|
property :moderator_of,
|
904
|
-
comment:
|
904
|
+
comment: "A Forum that a UserAccount is a moderator of.".freeze,
|
905
905
|
domain: "sioc:UserAccount".freeze,
|
906
906
|
inverseOf: "sioc:has_moderator".freeze,
|
907
907
|
isDefinedBy: "sioc:".freeze,
|
@@ -909,7 +909,7 @@ module RDF::Vocab
|
|
909
909
|
range: "sioc:Forum".freeze,
|
910
910
|
type: "owl:ObjectProperty".freeze
|
911
911
|
property :modified_at,
|
912
|
-
comment:
|
912
|
+
comment: "When this was modified, in ISO 8601 format.".freeze,
|
913
913
|
domain: "sioc:Post".freeze,
|
914
914
|
isDefinedBy: "sioc:".freeze,
|
915
915
|
label: "modified at".freeze,
|
@@ -917,20 +917,20 @@ module RDF::Vocab
|
|
917
917
|
range: "rdfs:Literal".freeze,
|
918
918
|
type: ["owl:DatatypeProperty".freeze, "owl:DeprecatedProperty".freeze]
|
919
919
|
property :modifier_of,
|
920
|
-
comment:
|
920
|
+
comment: "A resource that this UserAccount has modified.".freeze,
|
921
921
|
domain: "sioc:UserAccount".freeze,
|
922
922
|
inverseOf: "sioc:has_modifier".freeze,
|
923
923
|
isDefinedBy: "sioc:".freeze,
|
924
924
|
label: "modifier of".freeze,
|
925
925
|
type: "owl:ObjectProperty".freeze
|
926
926
|
property :name,
|
927
|
-
comment:
|
927
|
+
comment: "The name of a SIOC concept instance, e.g. a username for a UserAccount, group name for a Usergroup, etc.".freeze,
|
928
928
|
isDefinedBy: "sioc:".freeze,
|
929
929
|
label: "name".freeze,
|
930
930
|
range: "rdfs:Literal".freeze,
|
931
931
|
type: "owl:DatatypeProperty".freeze
|
932
932
|
property :next_by_date,
|
933
|
-
comment:
|
933
|
+
comment: "Next Item or Post in a given Container sorted by date.".freeze,
|
934
934
|
domain: "sioc:Item".freeze,
|
935
935
|
inverseOf: "sioc:previous_by_date".freeze,
|
936
936
|
isDefinedBy: "sioc:".freeze,
|
@@ -938,7 +938,7 @@ module RDF::Vocab
|
|
938
938
|
range: "sioc:Item".freeze,
|
939
939
|
type: "owl:ObjectProperty".freeze
|
940
940
|
property :next_version,
|
941
|
-
comment:
|
941
|
+
comment: "Links to the next revision of this Item or Post.".freeze,
|
942
942
|
domain: "sioc:Item".freeze,
|
943
943
|
inverseOf: "sioc:previous_version".freeze,
|
944
944
|
isDefinedBy: "sioc:".freeze,
|
@@ -947,52 +947,52 @@ module RDF::Vocab
|
|
947
947
|
subPropertyOf: "sioc:later_version".freeze,
|
948
948
|
type: "owl:ObjectProperty".freeze
|
949
949
|
property :note,
|
950
|
-
comment:
|
950
|
+
comment: "A note associated with this resource, for example, if it has been edited by a UserAccount.".freeze,
|
951
951
|
isDefinedBy: "sioc:".freeze,
|
952
952
|
label: "note".freeze,
|
953
953
|
range: "rdfs:Literal".freeze,
|
954
954
|
type: "owl:DatatypeProperty".freeze
|
955
955
|
property :num_authors,
|
956
|
-
comment:
|
956
|
+
comment: "The number of unique authors (UserAccounts and unregistered posters) who have contributed to this Item, Thread, Post, etc.".freeze,
|
957
957
|
isDefinedBy: "sioc:".freeze,
|
958
958
|
label: "num authors".freeze,
|
959
959
|
range: "xsd:nonNegativeInteger".freeze,
|
960
960
|
type: "owl:DatatypeProperty".freeze
|
961
961
|
property :num_items,
|
962
|
-
comment:
|
962
|
+
comment: "The number of Posts (or Items) in a Forum (or a Container).".freeze,
|
963
963
|
domain: "sioc:Container".freeze,
|
964
964
|
isDefinedBy: "sioc:".freeze,
|
965
965
|
label: "num items".freeze,
|
966
966
|
range: "xsd:nonNegativeInteger".freeze,
|
967
967
|
type: "owl:DatatypeProperty".freeze
|
968
968
|
property :num_replies,
|
969
|
-
comment:
|
969
|
+
comment: "The number of replies that this Item, Thread, Post, etc. has. Useful for when the reply structure is absent.".freeze,
|
970
970
|
isDefinedBy: "sioc:".freeze,
|
971
971
|
label: "num replies".freeze,
|
972
972
|
range: "xsd:nonNegativeInteger".freeze,
|
973
973
|
type: "owl:DatatypeProperty".freeze
|
974
974
|
property :num_threads,
|
975
|
-
comment:
|
975
|
+
comment: "The number of Threads (AKA discussion topics) in a Forum.".freeze,
|
976
976
|
domain: "sioc:Forum".freeze,
|
977
977
|
isDefinedBy: "sioc:".freeze,
|
978
978
|
label: "num threads".freeze,
|
979
979
|
range: "xsd:nonNegativeInteger".freeze,
|
980
980
|
type: "owl:DatatypeProperty".freeze
|
981
981
|
property :num_views,
|
982
|
-
comment:
|
982
|
+
comment: "The number of times this Item, Thread, UserAccount profile, etc. has been viewed.".freeze,
|
983
983
|
isDefinedBy: "sioc:".freeze,
|
984
984
|
label: "num views".freeze,
|
985
985
|
range: "xsd:nonNegativeInteger".freeze,
|
986
986
|
type: "owl:DatatypeProperty".freeze
|
987
987
|
property :owner_of,
|
988
|
-
comment:
|
988
|
+
comment: "A resource owned by a particular UserAccount, for example, a weblog or image gallery.".freeze,
|
989
989
|
domain: "sioc:UserAccount".freeze,
|
990
990
|
inverseOf: "sioc:has_owner".freeze,
|
991
991
|
isDefinedBy: "sioc:".freeze,
|
992
992
|
label: "owner of".freeze,
|
993
993
|
type: "owl:ObjectProperty".freeze
|
994
994
|
property :parent_of,
|
995
|
-
comment:
|
995
|
+
comment: "A child Container or Forum that this Container or Forum is a parent of.".freeze,
|
996
996
|
domain: "sioc:Container".freeze,
|
997
997
|
inverseOf: "sioc:has_parent".freeze,
|
998
998
|
isDefinedBy: "sioc:".freeze,
|
@@ -1001,14 +1001,14 @@ module RDF::Vocab
|
|
1001
1001
|
subPropertyOf: "dc:hasPart".freeze,
|
1002
1002
|
type: "owl:ObjectProperty".freeze
|
1003
1003
|
property :part_of,
|
1004
|
-
comment:
|
1004
|
+
comment: "A resource that the subject is a part of.".freeze,
|
1005
1005
|
inverseOf: "sioc:has_part".freeze,
|
1006
1006
|
isDefinedBy: "sioc:".freeze,
|
1007
1007
|
label: "part of".freeze,
|
1008
1008
|
"owl:versionInfo": "This property is deprecated. Use dcterms:isPartOf from the Dublin Core ontology instead.".freeze,
|
1009
1009
|
type: ["owl:DeprecatedProperty".freeze, "owl:ObjectProperty".freeze]
|
1010
1010
|
property :previous_by_date,
|
1011
|
-
comment:
|
1011
|
+
comment: "Previous Item or Post in a given Container sorted by date.".freeze,
|
1012
1012
|
domain: "sioc:Item".freeze,
|
1013
1013
|
inverseOf: "sioc:next_by_date".freeze,
|
1014
1014
|
isDefinedBy: "sioc:".freeze,
|
@@ -1016,7 +1016,7 @@ module RDF::Vocab
|
|
1016
1016
|
range: "sioc:Item".freeze,
|
1017
1017
|
type: "owl:ObjectProperty".freeze
|
1018
1018
|
property :previous_version,
|
1019
|
-
comment:
|
1019
|
+
comment: "Links to the previous revision of this Item or Post.".freeze,
|
1020
1020
|
domain: "sioc:Item".freeze,
|
1021
1021
|
inverseOf: "sioc:next_version".freeze,
|
1022
1022
|
isDefinedBy: "sioc:".freeze,
|
@@ -1025,26 +1025,26 @@ module RDF::Vocab
|
|
1025
1025
|
subPropertyOf: "sioc:earlier_version".freeze,
|
1026
1026
|
type: "owl:ObjectProperty".freeze
|
1027
1027
|
property :read_at,
|
1028
|
-
comment:
|
1028
|
+
comment: "When this was read, in ISO 8601 format.".freeze,
|
1029
1029
|
domain: "sioc:Item".freeze,
|
1030
1030
|
isDefinedBy: "sioc:".freeze,
|
1031
1031
|
label: "read at".freeze,
|
1032
1032
|
range: "rdfs:Literal".freeze,
|
1033
1033
|
type: ["owl:DatatypeProperty".freeze, "owl:ObjectProperty".freeze]
|
1034
1034
|
property :reference,
|
1035
|
-
comment:
|
1035
|
+
comment: "Links either created explicitly or extracted implicitly on the HTML level from the Post.".freeze,
|
1036
1036
|
domain: "sioc:Post".freeze,
|
1037
1037
|
isDefinedBy: "sioc:".freeze,
|
1038
1038
|
label: "reference".freeze,
|
1039
1039
|
"owl:versionInfo": "Renamed to sioc:links_to.".freeze,
|
1040
1040
|
type: ["owl:DeprecatedProperty".freeze, "owl:ObjectProperty".freeze]
|
1041
1041
|
property :related_to,
|
1042
|
-
comment:
|
1042
|
+
comment: "Related resources for this resource, e.g. for Posts, perhaps determined implicitly from topics or references.".freeze,
|
1043
1043
|
isDefinedBy: "sioc:".freeze,
|
1044
1044
|
label: "related to".freeze,
|
1045
1045
|
type: "owl:ObjectProperty".freeze
|
1046
1046
|
property :reply_of,
|
1047
|
-
comment:
|
1047
|
+
comment: "Links to an Item or Post which this Item or Post is a reply to.".freeze,
|
1048
1048
|
domain: "sioc:Item".freeze,
|
1049
1049
|
inverseOf: "sioc:has_reply".freeze,
|
1050
1050
|
isDefinedBy: "sioc:".freeze,
|
@@ -1053,20 +1053,20 @@ module RDF::Vocab
|
|
1053
1053
|
subPropertyOf: "sioc:related_to".freeze,
|
1054
1054
|
type: "owl:ObjectProperty".freeze
|
1055
1055
|
property :respond_to,
|
1056
|
-
comment:
|
1056
|
+
comment: "For the reply-to address set in email messages, IMs, etc. The property name was chosen to avoid confusion with has_reply/reply_of (the reply graph).".freeze,
|
1057
1057
|
domain: "sioc:Item".freeze,
|
1058
1058
|
isDefinedBy: "sioc:".freeze,
|
1059
1059
|
label: "respond to".freeze,
|
1060
1060
|
type: "owl:ObjectProperty".freeze
|
1061
1061
|
property :scope_of,
|
1062
|
-
comment:
|
1062
|
+
comment: "A Role that has a scope of this resource.".freeze,
|
1063
1063
|
inverseOf: "sioc:has_scope".freeze,
|
1064
1064
|
isDefinedBy: "sioc:".freeze,
|
1065
1065
|
label: "scope of".freeze,
|
1066
1066
|
range: "sioc:Role".freeze,
|
1067
1067
|
type: "owl:ObjectProperty".freeze
|
1068
1068
|
property :shared_by,
|
1069
|
-
comment:
|
1069
|
+
comment: "For shared Items where there is a certain creator_of and an intermediary who shares or forwards it (e.g. as a sibling Item).".freeze,
|
1070
1070
|
domain: "sioc:Item".freeze,
|
1071
1071
|
isDefinedBy: "sioc:".freeze,
|
1072
1072
|
label: "shared by".freeze,
|
@@ -1074,14 +1074,14 @@ module RDF::Vocab
|
|
1074
1074
|
"rdfs:seeAlso": "sioc:sibling".freeze,
|
1075
1075
|
type: "owl:ObjectProperty".freeze
|
1076
1076
|
property :sibling,
|
1077
|
-
comment:
|
1077
|
+
comment: "An Item may have a sibling or a twin that exists in a different Container, but the siblings may differ in some small way (for example, language, category, etc.). The sibling of this Item should be self-describing (that is, it should contain all available information).".freeze,
|
1078
1078
|
domain: "sioc:Item".freeze,
|
1079
1079
|
isDefinedBy: "sioc:".freeze,
|
1080
1080
|
label: "sibling".freeze,
|
1081
1081
|
range: "sioc:Item".freeze,
|
1082
1082
|
type: "owl:SymmetricProperty".freeze
|
1083
1083
|
property :space_of,
|
1084
|
-
comment:
|
1084
|
+
comment: "A resource which belongs to this data Space.".freeze,
|
1085
1085
|
domain: "sioc:Space".freeze,
|
1086
1086
|
inverseOf: "sioc:has_space".freeze,
|
1087
1087
|
isDefinedBy: "sioc:".freeze,
|
@@ -1089,7 +1089,7 @@ module RDF::Vocab
|
|
1089
1089
|
subPropertyOf: "dc:hasPart".freeze,
|
1090
1090
|
type: "owl:ObjectProperty".freeze
|
1091
1091
|
property :subject,
|
1092
|
-
comment:
|
1092
|
+
comment: "Keyword(s) describing subject of the Post.".freeze,
|
1093
1093
|
domain: "sioc:Post".freeze,
|
1094
1094
|
isDefinedBy: "sioc:".freeze,
|
1095
1095
|
label: "subject".freeze,
|
@@ -1097,7 +1097,7 @@ module RDF::Vocab
|
|
1097
1097
|
range: "rdfs:Literal".freeze,
|
1098
1098
|
type: ["owl:DatatypeProperty".freeze, "owl:DeprecatedProperty".freeze]
|
1099
1099
|
property :subscriber_of,
|
1100
|
-
comment:
|
1100
|
+
comment: "A Container that a UserAccount is subscribed to.".freeze,
|
1101
1101
|
domain: "sioc:UserAccount".freeze,
|
1102
1102
|
inverseOf: "sioc:has_subscriber".freeze,
|
1103
1103
|
isDefinedBy: "sioc:".freeze,
|
@@ -1106,7 +1106,7 @@ module RDF::Vocab
|
|
1106
1106
|
"rdfs:seeAlso": "sioc:feed".freeze,
|
1107
1107
|
type: "owl:ObjectProperty".freeze
|
1108
1108
|
property :title,
|
1109
|
-
comment:
|
1109
|
+
comment: "This is the title (subject line) of the Post. Note that for a Post within a threaded discussion that has no parents, it would detail the topic thread.".freeze,
|
1110
1110
|
domain: "sioc:Post".freeze,
|
1111
1111
|
isDefinedBy: "sioc:".freeze,
|
1112
1112
|
label: "title".freeze,
|
@@ -1114,13 +1114,13 @@ module RDF::Vocab
|
|
1114
1114
|
range: "rdfs:Literal".freeze,
|
1115
1115
|
type: ["owl:DatatypeProperty".freeze, "owl:DeprecatedProperty".freeze]
|
1116
1116
|
property :topic,
|
1117
|
-
comment:
|
1117
|
+
comment: "A topic of interest, linking to the appropriate URI, e.g. in the Open Directory Project or of a SKOS category.".freeze,
|
1118
1118
|
isDefinedBy: "sioc:".freeze,
|
1119
1119
|
label: "topic".freeze,
|
1120
1120
|
subPropertyOf: "dc:subject".freeze,
|
1121
1121
|
type: "owl:ObjectProperty".freeze
|
1122
1122
|
property :usergroup_of,
|
1123
|
-
comment:
|
1123
|
+
comment: "A Space that the Usergroup has access to.".freeze,
|
1124
1124
|
domain: "sioc:Usergroup".freeze,
|
1125
1125
|
inverseOf: "sioc:has_usergroup".freeze,
|
1126
1126
|
isDefinedBy: "sioc:".freeze,
|