rdf-vocab 3.1.5 → 3.1.10

Sign up to get free protection for your applications and to get access to all the features.
Files changed (82) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +10 -3
  3. data/VERSION +1 -1
  4. data/lib/rdf/vocab.rb +46 -20
  5. data/lib/rdf/vocab/acl.rb +20 -60
  6. data/lib/rdf/vocab/as.rb +90 -90
  7. data/lib/rdf/vocab/bf2.rb +552 -552
  8. data/lib/rdf/vocab/bibframe.rb +3456 -1706
  9. data/lib/rdf/vocab/bibo.rb +120 -123
  10. data/lib/rdf/vocab/cc.rb +18 -47
  11. data/lib/rdf/vocab/cert.rb +19 -126
  12. data/lib/rdf/vocab/cnt.rb +19 -19
  13. data/lib/rdf/vocab/crm.rb +240 -775
  14. data/lib/rdf/vocab/dbo.rb +1 -6
  15. data/lib/rdf/vocab/dc.rb +533 -99
  16. data/lib/rdf/vocab/dc11.rb +30 -30
  17. data/lib/rdf/vocab/dcat.rb +97 -96
  18. data/lib/rdf/vocab/dcmitype.rb +62 -12
  19. data/lib/rdf/vocab/disco.rb +58 -58
  20. data/lib/rdf/vocab/doap.rb +53 -55
  21. data/lib/rdf/vocab/dwc.rb +188 -188
  22. data/lib/rdf/vocab/earl.rb +27 -27
  23. data/lib/rdf/vocab/ebucore.rb +1231 -1521
  24. data/lib/rdf/vocab/edm.rb +52 -75
  25. data/lib/rdf/vocab/exif.rb +161 -162
  26. data/lib/rdf/vocab/extensions.rb +7 -3
  27. data/lib/rdf/vocab/fcrepo4.rb +21 -21
  28. data/lib/rdf/vocab/foaf.rb +75 -75
  29. data/lib/rdf/vocab/geo.rb +8 -109
  30. data/lib/rdf/vocab/geojson.rb +16 -16
  31. data/lib/rdf/vocab/geonames.rb +1342 -1350
  32. data/lib/rdf/vocab/gr.rb +177 -564
  33. data/lib/rdf/vocab/gs1.rb +958 -958
  34. data/lib/rdf/vocab/ht.rb +41 -41
  35. data/lib/rdf/vocab/hydra.rb +133 -85
  36. data/lib/rdf/vocab/iana.rb +71 -113
  37. data/lib/rdf/vocab/ical.rb +103 -151
  38. data/lib/rdf/vocab/identifiers.rb +161 -662
  39. data/lib/rdf/vocab/iiif.rb +25 -25
  40. data/lib/rdf/vocab/jsonld.rb +45 -53
  41. data/lib/rdf/vocab/ldp.rb +31 -31
  42. data/lib/rdf/vocab/lrmi.rb +170 -38
  43. data/lib/rdf/vocab/ma.rb +79 -79
  44. data/lib/rdf/vocab/mads.rb +9 -9
  45. data/lib/rdf/vocab/marcrelators.rb +4 -3
  46. data/lib/rdf/vocab/mo.rb +196 -539
  47. data/lib/rdf/vocab/mods.rb +121 -125
  48. data/lib/rdf/vocab/oa.rb +68 -72
  49. data/lib/rdf/vocab/og.rb +57 -35
  50. data/lib/rdf/vocab/ogc.rb +8 -8
  51. data/lib/rdf/vocab/ore.rb +13 -13
  52. data/lib/rdf/vocab/org.rb +46 -46
  53. data/lib/rdf/vocab/pcdm.rb +11 -33
  54. data/lib/rdf/vocab/pplan.rb +18 -196
  55. data/lib/rdf/vocab/premis.rb +315 -410
  56. data/lib/rdf/vocab/premiseventtype.rb +1 -1
  57. data/lib/rdf/vocab/prov.rb +87 -112
  58. data/lib/rdf/vocab/ptr.rb +34 -36
  59. data/lib/rdf/vocab/rdau.rb +10511 -0
  60. data/lib/rdf/vocab/rightsstatements.rb +12 -12
  61. data/lib/rdf/vocab/rsa.rb +8 -27
  62. data/lib/rdf/vocab/rss.rb +51 -10
  63. data/lib/rdf/vocab/schema.rb +5292 -4980
  64. data/lib/rdf/vocab/schemas.rb +26802 -0
  65. data/lib/rdf/vocab/sd.rb +38 -38
  66. data/lib/rdf/vocab/sh.rb +184 -184
  67. data/lib/rdf/vocab/sioc.rb +97 -97
  68. data/lib/rdf/vocab/siocservices.rb +8 -8
  69. data/lib/rdf/vocab/sioctypes.rb +38 -38
  70. data/lib/rdf/vocab/skos.rb +45 -47
  71. data/lib/rdf/vocab/skosxl.rb +12 -12
  72. data/lib/rdf/vocab/v.rb +32 -36
  73. data/lib/rdf/vocab/vcard.rb +117 -118
  74. data/lib/rdf/vocab/vmd.rb +32 -36
  75. data/lib/rdf/vocab/void.rb +26 -26
  76. data/lib/rdf/vocab/vs.rb +4 -4
  77. data/lib/rdf/vocab/wdrs.rb +22 -22
  78. data/lib/rdf/vocab/wot.rb +18 -18
  79. data/lib/rdf/vocab/xhv.rb +84 -200
  80. data/lib/rdf/vocab/xkos.rb +9 -9
  81. data/spec/spec_helper.rb +13 -0
  82. metadata +42 -14
@@ -30,11 +30,14 @@ module RDF
30
30
  end
31
31
 
32
32
  ##
33
- # A hash of all vocabularies by prefix showing relevant URI and associated vocabulary Class Name
33
+ # A hash of all vocabularies by prefix showing relevant URI and
34
+ # associated vocabulary Class Name
35
+ #
34
36
  # @return [Hash{Symbol => Hash{Symbol => String}}]
35
37
  #alias_method :_orig_vocab_map, :vocab_map
36
38
  def vocab_map
37
- @vocab_map ||= RDF::VOCABS.merge(RDF::Vocab::VOCABS)
39
+ @vocab_map ||= RDF::VOCABS.transform_values(&:freeze).merge(
40
+ RDF::Vocab::VOCABS.transform_values(&:freeze))
38
41
  end
39
42
 
40
43
  ##
@@ -44,7 +47,8 @@ module RDF
44
47
  # @return [RDF::Vocabulary]
45
48
  alias_method :_orig_from_sym, :from_sym
46
49
  def from_sym(sym)
47
- RDF::Vocab.const_defined?(sym.to_sym) ? RDF::Vocab.const_get(sym.to_sym) : _orig_from_sym(sym)
50
+ RDF::Vocab.const_defined?(sym.to_sym) ?
51
+ RDF::Vocab.const_get(sym.to_sym) : _orig_from_sym(sym)
48
52
  end
49
53
 
50
54
  ##
@@ -387,7 +387,7 @@ module RDF::Vocab
387
387
 
388
388
  # Ontology definition
389
389
  ontology :"http://fedora.info/definitions/v4/repository#",
390
- comment: %(Ontology for the Fedora data model, intended primarily to make it possible to expose Fedora-curated RDF predicates via de-reference-able URIs.).freeze,
390
+ comment: "Ontology for the Fedora data model, intended primarily to make it possible to expose Fedora-curated RDF predicates via de-reference-able URIs.".freeze,
391
391
  label: "Fedora Commons Repository Ontology".freeze,
392
392
  "owl:priorVersion": "http://fedora.info/definitions/v4/2015/05/19/repository".freeze,
393
393
  "owl:versionInfo": "v4/2015/07/24".freeze,
@@ -395,77 +395,77 @@ module RDF::Vocab
395
395
 
396
396
  # Class definitions
397
397
  term :AnnotatedResource,
398
- comment: %(A Resource that maintains properties in its own right.).freeze,
398
+ comment: "A Resource that maintains properties in its own right.".freeze,
399
399
  label: "annotated resource".freeze,
400
400
  subClassOf: "fcrepo4:Resource".freeze,
401
401
  type: "owl:Class".freeze
402
402
  term :Binary,
403
- comment: %(A bitstream, with no further data properties.).freeze,
403
+ comment: "A bitstream, with no further data properties.".freeze,
404
404
  label: "binary".freeze,
405
405
  "owl:disjointWith": ["fcrepo4:Container".freeze, "fcrepo4:NonRdfSourceDescription".freeze],
406
406
  subClassOf: "fcrepo4:Resource".freeze,
407
407
  type: "owl:Class".freeze
408
408
  term :Configuration,
409
- comment: %(A container for transform configuration.).freeze,
409
+ comment: "A container for transform configuration.".freeze,
410
410
  label: "Fedora transform configuration".freeze,
411
411
  subClassOf: "fcrepo4:Thing".freeze,
412
412
  type: "owl:Class".freeze
413
413
  term :Container,
414
- comment: %(A Fedora Container: the fundamental quantum of durable content in a Fedora repository.).freeze,
414
+ comment: "A Fedora Container: the fundamental quantum of durable content in a Fedora repository.".freeze,
415
415
  label: "Fedora Container".freeze,
416
416
  subClassOf: "fcrepo4:AnnotatedResource".freeze,
417
417
  type: "owl:Class".freeze
418
418
  term :EmbedResources,
419
- comment: %(The set of triples representing child resources of a given resource.).freeze,
419
+ comment: "The set of triples representing child resources of a given resource.".freeze,
420
420
  label: "embed resources".freeze,
421
421
  subClassOf: "fcrepo4:Thing".freeze,
422
422
  type: "owl:Class".freeze
423
423
  term :InboundReferences,
424
- comment: %(The set of triples representing other repository resources which link to a given resource.).freeze,
424
+ comment: "The set of triples representing other repository resources which link to a given resource.".freeze,
425
425
  label: "inbound references".freeze,
426
426
  subClassOf: "fcrepo4:Thing".freeze,
427
427
  type: "owl:Class".freeze
428
428
  term :NodeTypeConfiguration,
429
- comment: %(A container for transform node type configuration.).freeze,
429
+ comment: "A container for transform node type configuration.".freeze,
430
430
  label: "Fedora transform node type configuration".freeze,
431
431
  subClassOf: "fcrepo4:Thing".freeze,
432
432
  type: "owl:Class".freeze
433
433
  term :NonRdfSourceDescription,
434
- comment: %(A container for a bitstream and associated properties.).freeze,
434
+ comment: "A container for a bitstream and associated properties.".freeze,
435
435
  label: "Fedora NonRdfSourceDescription".freeze,
436
436
  "owl:disjointWith": "fcrepo4:Container".freeze,
437
437
  subClassOf: "fcrepo4:AnnotatedResource".freeze,
438
438
  type: "owl:Class".freeze
439
439
  term :Pairtree,
440
- comment: %(An entity that is a an intermediary node created in a PairTree hierarchy.).freeze,
440
+ comment: "An entity that is a an intermediary node created in a PairTree hierarchy.".freeze,
441
441
  label: "pair tree".freeze,
442
442
  subClassOf: "fcrepo4:Thing".freeze,
443
443
  type: "owl:Class".freeze
444
444
  term :Relations,
445
- comment: %(An entity that may be related to other repository entities.).freeze,
445
+ comment: "An entity that may be related to other repository entities.".freeze,
446
446
  subClassOf: "fcrepo4:Thing".freeze,
447
447
  type: "owl:Class".freeze
448
448
  term :Resource,
449
- comment: %(An entity that has been committed to the repository for safekeeping. For example, Fedora objects and datastreams are resources. A Fixity is not, because the provenance of the instance is entirely internal to the repository.).freeze,
449
+ comment: "An entity that has been committed to the repository for safekeeping. For example, Fedora objects and datastreams are resources. A Fixity is not, because the provenance of the instance is entirely internal to the repository.".freeze,
450
450
  label: "Fedora resource".freeze,
451
451
  subClassOf: "fcrepo4:Thing".freeze,
452
452
  type: "owl:Class".freeze
453
453
  term :ServerManaged,
454
- comment: %(The system-generated triples for a given resource \(as opposed to explicity-declared properties\).).freeze,
454
+ comment: "The system-generated triples for a given resource (as opposed to explicity-declared properties).".freeze,
455
455
  label: "server managed".freeze,
456
456
  subClassOf: "fcrepo4:Thing".freeze,
457
457
  type: "owl:Class".freeze
458
458
  term :Skolem,
459
- comment: %(An entity that is a representation of an RDF Skolem node.).freeze,
459
+ comment: "An entity that is a representation of an RDF Skolem node.".freeze,
460
460
  label: "skolem".freeze,
461
461
  subClassOf: "fcrepo4:Thing".freeze,
462
462
  type: "owl:Class".freeze
463
463
  term :Thing,
464
- comment: %(Something that is contemplated in the Fedora repository model.).freeze,
464
+ comment: "Something that is contemplated in the Fedora repository model.".freeze,
465
465
  label: "Fedora thing".freeze,
466
466
  type: "owl:Class".freeze
467
467
  term :Tombstone,
468
- comment: %(An entity that is a marker for a deleted node.).freeze,
468
+ comment: "An entity that is a marker for a deleted node.".freeze,
469
469
  label: "tombstone".freeze,
470
470
  type: "owl:Class".freeze
471
471
  term :Version,
@@ -546,13 +546,13 @@ module RDF::Vocab
546
546
  ),
547
547
  type: ["owl:InverseFunctionalProperty".freeze, "owl:ObjectProperty".freeze]
548
548
  property :hasContent,
549
- comment: %(Indicates a binary in which content is stored for this datastream.).freeze,
549
+ comment: "Indicates a binary in which content is stored for this datastream.".freeze,
550
550
  domain: "fcrepo4:NonRdfSourceDescription".freeze,
551
551
  label: "has content".freeze,
552
552
  range: "fcrepo4:Binary".freeze,
553
553
  type: "owl:ObjectProperty".freeze
554
554
  property :hasDefaultWorkspace,
555
- comment: %(Indicates the default workspace of the repository.).freeze,
555
+ comment: "Indicates the default workspace of the repository.".freeze,
556
556
  label: "has default workspace".freeze,
557
557
  type: "owl:ObjectProperty".freeze
558
558
  property :hasFixityService,
@@ -563,7 +563,7 @@ module RDF::Vocab
563
563
  subPropertyOf: "owl:topDataProperty".freeze,
564
564
  type: "owl:DatatypeProperty".freeze
565
565
  property :hasMember,
566
- comment: %(Links to a newly-minted identifier which can be used to create a repository resource.).freeze,
566
+ comment: "Links to a newly-minted identifier which can be used to create a repository resource.".freeze,
567
567
  label: "has member".freeze,
568
568
  range: "xsd:anyURI".freeze,
569
569
  type: "owl:ObjectProperty".freeze
@@ -602,7 +602,7 @@ module RDF::Vocab
602
602
  label: "has versions".freeze,
603
603
  type: "owl:ObjectProperty".freeze
604
604
  property :hasWorkspace,
605
- comment: %(Links to a workspace of the repository.).freeze,
605
+ comment: "Links to a workspace of the repository.".freeze,
606
606
  label: "has workspace".freeze,
607
607
  type: "owl:ObjectProperty".freeze
608
608
  property :hasWorkspaces,
@@ -613,7 +613,7 @@ module RDF::Vocab
613
613
  subPropertyOf: "owl:topDataProperty".freeze,
614
614
  type: "owl:DatatypeProperty".freeze
615
615
  property :isContentOf,
616
- comment: %(Indicates a datastream for which this resource contains the content. ).freeze,
616
+ comment: "Indicates a datastream for which this resource contains the content. ".freeze,
617
617
  domain: "fcrepo4:Binary".freeze,
618
618
  label: "is content of".freeze,
619
619
  range: "fcrepo4:NonRdfSourceDescription".freeze,
@@ -321,69 +321,69 @@ module RDF::Vocab
321
321
 
322
322
  # Class definitions
323
323
  term :Agent,
324
- comment: %(An agent \(eg. person, group, software or physical artifact\).).freeze,
324
+ comment: "An agent (eg. person, group, software or physical artifact).".freeze,
325
325
  equivalentClass: "dc:Agent".freeze,
326
326
  isDefinedBy: "foaf:".freeze,
327
327
  label: "Agent".freeze,
328
328
  type: ["owl:Class".freeze, "rdfs:Class".freeze],
329
329
  "vs:term_status": "stable".freeze
330
330
  term :Document,
331
- comment: %(A document.).freeze,
331
+ comment: "A document.".freeze,
332
332
  isDefinedBy: "foaf:".freeze,
333
333
  label: "Document".freeze,
334
334
  "owl:disjointWith": ["foaf:Organization".freeze, "foaf:Project".freeze],
335
335
  type: ["owl:Class".freeze, "rdfs:Class".freeze],
336
336
  "vs:term_status": "testing".freeze
337
337
  term :Group,
338
- comment: %(A class of Agents.).freeze,
338
+ comment: "A class of Agents.".freeze,
339
339
  isDefinedBy: "foaf:".freeze,
340
340
  label: "Group".freeze,
341
341
  subClassOf: "foaf:Agent".freeze,
342
342
  type: ["owl:Class".freeze, "rdfs:Class".freeze],
343
343
  "vs:term_status": "stable".freeze
344
344
  term :Image,
345
- comment: %(An image.).freeze,
345
+ comment: "An image.".freeze,
346
346
  isDefinedBy: "foaf:".freeze,
347
347
  label: "Image".freeze,
348
348
  subClassOf: "foaf:Document".freeze,
349
349
  type: ["owl:Class".freeze, "rdfs:Class".freeze],
350
350
  "vs:term_status": "testing".freeze
351
351
  term :LabelProperty,
352
- comment: %(A foaf:LabelProperty is any RDF property with texual values that serve as labels.).freeze,
352
+ comment: "A foaf:LabelProperty is any RDF property with texual values that serve as labels.".freeze,
353
353
  isDefinedBy: "foaf:".freeze,
354
354
  label: "Label Property".freeze,
355
355
  type: ["owl:Class".freeze, "rdfs:Class".freeze],
356
356
  "vs:term_status": "unstable".freeze
357
357
  term :OnlineAccount,
358
- comment: %(An online account.).freeze,
358
+ comment: "An online account.".freeze,
359
359
  isDefinedBy: "foaf:".freeze,
360
360
  label: "Online Account".freeze,
361
361
  subClassOf: "owl:Thing".freeze,
362
362
  type: ["owl:Class".freeze, "rdfs:Class".freeze],
363
363
  "vs:term_status": "testing".freeze
364
364
  term :OnlineChatAccount,
365
- comment: %(An online chat account.).freeze,
365
+ comment: "An online chat account.".freeze,
366
366
  isDefinedBy: "foaf:".freeze,
367
367
  label: "Online Chat Account".freeze,
368
368
  subClassOf: "foaf:OnlineAccount".freeze,
369
369
  type: ["owl:Class".freeze, "rdfs:Class".freeze],
370
370
  "vs:term_status": "unstable".freeze
371
371
  term :OnlineEcommerceAccount,
372
- comment: %(An online e-commerce account.).freeze,
372
+ comment: "An online e-commerce account.".freeze,
373
373
  isDefinedBy: "foaf:".freeze,
374
374
  label: "Online E-commerce Account".freeze,
375
375
  subClassOf: "foaf:OnlineAccount".freeze,
376
376
  type: ["owl:Class".freeze, "rdfs:Class".freeze],
377
377
  "vs:term_status": "unstable".freeze
378
378
  term :OnlineGamingAccount,
379
- comment: %(An online gaming account.).freeze,
379
+ comment: "An online gaming account.".freeze,
380
380
  isDefinedBy: "foaf:".freeze,
381
381
  label: "Online Gaming Account".freeze,
382
382
  subClassOf: "foaf:OnlineAccount".freeze,
383
383
  type: ["owl:Class".freeze, "rdfs:Class".freeze],
384
384
  "vs:term_status": "unstable".freeze
385
385
  term :Organization,
386
- comment: %(An organization.).freeze,
386
+ comment: "An organization.".freeze,
387
387
  isDefinedBy: "foaf:".freeze,
388
388
  label: "Organization".freeze,
389
389
  "owl:disjointWith": ["foaf:Document".freeze, "foaf:Person".freeze],
@@ -391,7 +391,7 @@ module RDF::Vocab
391
391
  type: ["owl:Class".freeze, "rdfs:Class".freeze],
392
392
  "vs:term_status": "stable".freeze
393
393
  term :Person,
394
- comment: %(A person.).freeze,
394
+ comment: "A person.".freeze,
395
395
  isDefinedBy: "foaf:".freeze,
396
396
  label: "Person".freeze,
397
397
  "owl:disjointWith": ["foaf:Organization".freeze, "foaf:Project".freeze],
@@ -399,14 +399,14 @@ module RDF::Vocab
399
399
  type: ["owl:Class".freeze, "rdfs:Class".freeze],
400
400
  "vs:term_status": "stable".freeze
401
401
  term :PersonalProfileDocument,
402
- comment: %(A personal profile RDF document.).freeze,
402
+ comment: "A personal profile RDF document.".freeze,
403
403
  isDefinedBy: "foaf:".freeze,
404
404
  label: "PersonalProfileDocument".freeze,
405
405
  subClassOf: "foaf:Document".freeze,
406
406
  type: ["owl:Class".freeze, "rdfs:Class".freeze],
407
407
  "vs:term_status": "testing".freeze
408
408
  term :Project,
409
- comment: %(A project \(a collective endeavour of some kind\).).freeze,
409
+ comment: "A project (a collective endeavour of some kind).".freeze,
410
410
  isDefinedBy: "foaf:".freeze,
411
411
  label: "Project".freeze,
412
412
  "owl:disjointWith": ["foaf:Document".freeze, "foaf:Person".freeze],
@@ -415,7 +415,7 @@ module RDF::Vocab
415
415
 
416
416
  # Property definitions
417
417
  property :account,
418
- comment: %(Indicates an account held by this agent.).freeze,
418
+ comment: "Indicates an account held by this agent.".freeze,
419
419
  domain: "foaf:Agent".freeze,
420
420
  isDefinedBy: "foaf:".freeze,
421
421
  label: "account".freeze,
@@ -423,7 +423,7 @@ module RDF::Vocab
423
423
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze],
424
424
  "vs:term_status": "testing".freeze
425
425
  property :accountName,
426
- comment: %(Indicates the name \(identifier\) associated with this online account.).freeze,
426
+ comment: "Indicates the name (identifier) associated with this online account.".freeze,
427
427
  domain: "foaf:OnlineAccount".freeze,
428
428
  isDefinedBy: "foaf:".freeze,
429
429
  label: "account name".freeze,
@@ -431,7 +431,7 @@ module RDF::Vocab
431
431
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze],
432
432
  "vs:term_status": "testing".freeze
433
433
  property :accountServiceHomepage,
434
- comment: %(Indicates a homepage of the service provide for this online account.).freeze,
434
+ comment: "Indicates a homepage of the service provide for this online account.".freeze,
435
435
  domain: "foaf:OnlineAccount".freeze,
436
436
  isDefinedBy: "foaf:".freeze,
437
437
  label: "account service homepage".freeze,
@@ -439,7 +439,7 @@ module RDF::Vocab
439
439
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze],
440
440
  "vs:term_status": "testing".freeze
441
441
  property :age,
442
- comment: %(The age in years of some agent.).freeze,
442
+ comment: "The age in years of some agent.".freeze,
443
443
  domain: "foaf:Agent".freeze,
444
444
  isDefinedBy: "foaf:".freeze,
445
445
  label: "age".freeze,
@@ -447,7 +447,7 @@ module RDF::Vocab
447
447
  type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze, "rdf:Property".freeze],
448
448
  "vs:term_status": "unstable".freeze
449
449
  property :aimChatID,
450
- comment: %(An AIM chat ID).freeze,
450
+ comment: "An AIM chat ID".freeze,
451
451
  domain: "foaf:Agent".freeze,
452
452
  isDefinedBy: "foaf:".freeze,
453
453
  label: "AIM chat ID".freeze,
@@ -456,7 +456,7 @@ module RDF::Vocab
456
456
  type: ["owl:DatatypeProperty".freeze, "owl:InverseFunctionalProperty".freeze, "rdf:Property".freeze],
457
457
  "vs:term_status": "testing".freeze
458
458
  property :based_near,
459
- comment: %(A location that something is based near, for some broadly human notion of near.).freeze,
459
+ comment: "A location that something is based near, for some broadly human notion of near.".freeze,
460
460
  domain: "geo:SpatialThing".freeze,
461
461
  isDefinedBy: "foaf:".freeze,
462
462
  label: "based near".freeze,
@@ -464,7 +464,7 @@ module RDF::Vocab
464
464
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze],
465
465
  "vs:term_status": "testing".freeze
466
466
  property :birthday,
467
- comment: %(The birthday of this Agent, represented in mm-dd string form, eg. '12-31'.).freeze,
467
+ comment: "The birthday of this Agent, represented in mm-dd string form, eg. '12-31'.".freeze,
468
468
  domain: "foaf:Agent".freeze,
469
469
  isDefinedBy: "foaf:".freeze,
470
470
  label: "birthday".freeze,
@@ -472,7 +472,7 @@ module RDF::Vocab
472
472
  type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze, "rdf:Property".freeze],
473
473
  "vs:term_status": "unstable".freeze
474
474
  property :currentProject,
475
- comment: %(A current project this person works on.).freeze,
475
+ comment: "A current project this person works on.".freeze,
476
476
  domain: "foaf:Person".freeze,
477
477
  isDefinedBy: "foaf:".freeze,
478
478
  label: "current project".freeze,
@@ -480,7 +480,7 @@ module RDF::Vocab
480
480
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze],
481
481
  "vs:term_status": "testing".freeze
482
482
  property :depiction,
483
- comment: %(A depiction of some thing.).freeze,
483
+ comment: "A depiction of some thing.".freeze,
484
484
  domain: "owl:Thing".freeze,
485
485
  inverseOf: "foaf:depicts".freeze,
486
486
  isDefinedBy: "foaf:".freeze,
@@ -489,7 +489,7 @@ module RDF::Vocab
489
489
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze],
490
490
  "vs:term_status": "testing".freeze
491
491
  property :depicts,
492
- comment: %(A thing depicted in this representation.).freeze,
492
+ comment: "A thing depicted in this representation.".freeze,
493
493
  domain: "foaf:Image".freeze,
494
494
  inverseOf: "foaf:depiction".freeze,
495
495
  isDefinedBy: "foaf:".freeze,
@@ -498,14 +498,14 @@ module RDF::Vocab
498
498
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze],
499
499
  "vs:term_status": "testing".freeze
500
500
  property :dnaChecksum,
501
- comment: %(A checksum for the DNA of some thing. Joke.).freeze,
501
+ comment: "A checksum for the DNA of some thing. Joke.".freeze,
502
502
  isDefinedBy: "foaf:".freeze,
503
503
  label: "DNA checksum".freeze,
504
504
  range: "rdfs:Literal".freeze,
505
505
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze],
506
506
  "vs:term_status": "archaic".freeze
507
507
  property :familyName,
508
- comment: %(The family name of some person.).freeze,
508
+ comment: "The family name of some person.".freeze,
509
509
  domain: "foaf:Person".freeze,
510
510
  isDefinedBy: "foaf:".freeze,
511
511
  label: "familyName".freeze,
@@ -513,7 +513,7 @@ module RDF::Vocab
513
513
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze],
514
514
  "vs:term_status": "testing".freeze
515
515
  property :family_name,
516
- comment: %(The family name of some person.).freeze,
516
+ comment: "The family name of some person.".freeze,
517
517
  domain: "foaf:Person".freeze,
518
518
  isDefinedBy: "foaf:".freeze,
519
519
  label: "family_name".freeze,
@@ -521,7 +521,7 @@ module RDF::Vocab
521
521
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze],
522
522
  "vs:term_status": "archaic".freeze
523
523
  property :firstName,
524
- comment: %(The first name of a person.).freeze,
524
+ comment: "The first name of a person.".freeze,
525
525
  domain: "foaf:Person".freeze,
526
526
  isDefinedBy: "foaf:".freeze,
527
527
  label: "firstName".freeze,
@@ -529,7 +529,7 @@ module RDF::Vocab
529
529
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze],
530
530
  "vs:term_status": "testing".freeze
531
531
  property :focus,
532
- comment: %(The underlying or 'focal' entity associated with some SKOS-described concept.).freeze,
532
+ comment: "The underlying or 'focal' entity associated with some SKOS-described concept.".freeze,
533
533
  domain: "skos:Concept".freeze,
534
534
  isDefinedBy: "foaf:".freeze,
535
535
  label: "focus".freeze,
@@ -537,7 +537,7 @@ module RDF::Vocab
537
537
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze],
538
538
  "vs:term_status": "testing".freeze
539
539
  property :fundedBy,
540
- comment: %(An organization funding a project or person.).freeze,
540
+ comment: "An organization funding a project or person.".freeze,
541
541
  domain: "owl:Thing".freeze,
542
542
  isDefinedBy: "foaf:".freeze,
543
543
  label: "funded by".freeze,
@@ -545,7 +545,7 @@ module RDF::Vocab
545
545
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze],
546
546
  "vs:term_status": "archaic".freeze
547
547
  property :geekcode,
548
- comment: %(A textual geekcode for this person, see http://www.geekcode.com/geek.html).freeze,
548
+ comment: "A textual geekcode for this person, see http://www.geekcode.com/geek.html".freeze,
549
549
  domain: "foaf:Person".freeze,
550
550
  isDefinedBy: "foaf:".freeze,
551
551
  label: "geekcode".freeze,
@@ -553,7 +553,7 @@ module RDF::Vocab
553
553
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze],
554
554
  "vs:term_status": "archaic".freeze
555
555
  property :gender,
556
- comment: %(The gender of this Agent \(typically but not necessarily 'male' or 'female'\).).freeze,
556
+ comment: "The gender of this Agent (typically but not necessarily 'male' or 'female').".freeze,
557
557
  domain: "foaf:Agent".freeze,
558
558
  isDefinedBy: "foaf:".freeze,
559
559
  label: "gender".freeze,
@@ -561,19 +561,19 @@ module RDF::Vocab
561
561
  type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze, "rdf:Property".freeze],
562
562
  "vs:term_status": "testing".freeze
563
563
  property :givenName,
564
- comment: %(The given name of some person.).freeze,
564
+ comment: "The given name of some person.".freeze,
565
565
  isDefinedBy: "foaf:".freeze,
566
566
  label: "Given name".freeze,
567
567
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze],
568
568
  "vs:term_status": "testing".freeze
569
569
  property :givenname,
570
- comment: %(The given name of some person.).freeze,
570
+ comment: "The given name of some person.".freeze,
571
571
  isDefinedBy: "foaf:".freeze,
572
572
  label: "Given name".freeze,
573
573
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze],
574
574
  "vs:term_status": "archaic".freeze
575
575
  property :holdsAccount,
576
- comment: %(Indicates an account held by this agent.).freeze,
576
+ comment: "Indicates an account held by this agent.".freeze,
577
577
  domain: "foaf:Agent".freeze,
578
578
  isDefinedBy: "foaf:".freeze,
579
579
  label: "account".freeze,
@@ -581,7 +581,7 @@ module RDF::Vocab
581
581
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze],
582
582
  "vs:term_status": "archaic".freeze
583
583
  property :homepage,
584
- comment: %(A homepage for some thing.).freeze,
584
+ comment: "A homepage for some thing.".freeze,
585
585
  domain: "owl:Thing".freeze,
586
586
  isDefinedBy: "foaf:".freeze,
587
587
  label: "homepage".freeze,
@@ -590,7 +590,7 @@ module RDF::Vocab
590
590
  type: ["owl:InverseFunctionalProperty".freeze, "owl:ObjectProperty".freeze, "rdf:Property".freeze],
591
591
  "vs:term_status": "stable".freeze
592
592
  property :icqChatID,
593
- comment: %(An ICQ chat ID).freeze,
593
+ comment: "An ICQ chat ID".freeze,
594
594
  domain: "foaf:Agent".freeze,
595
595
  isDefinedBy: "foaf:".freeze,
596
596
  label: "ICQ chat ID".freeze,
@@ -599,7 +599,7 @@ module RDF::Vocab
599
599
  type: ["owl:DatatypeProperty".freeze, "owl:InverseFunctionalProperty".freeze, "rdf:Property".freeze],
600
600
  "vs:term_status": "testing".freeze
601
601
  property :img,
602
- comment: %(An image that can be used to represent some thing \(ie. those depictions which are particularly representative of something, eg. one's photo on a homepage\).).freeze,
602
+ comment: "An image that can be used to represent some thing (ie. those depictions which are particularly representative of something, eg. one's photo on a homepage).".freeze,
603
603
  domain: "foaf:Person".freeze,
604
604
  isDefinedBy: "foaf:".freeze,
605
605
  label: "image".freeze,
@@ -608,7 +608,7 @@ module RDF::Vocab
608
608
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze],
609
609
  "vs:term_status": "testing".freeze
610
610
  property :interest,
611
- comment: %(A page about a topic of interest to this person.).freeze,
611
+ comment: "A page about a topic of interest to this person.".freeze,
612
612
  domain: "foaf:Agent".freeze,
613
613
  isDefinedBy: "foaf:".freeze,
614
614
  label: "interest".freeze,
@@ -616,7 +616,7 @@ module RDF::Vocab
616
616
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze],
617
617
  "vs:term_status": "testing".freeze
618
618
  property :isPrimaryTopicOf,
619
- comment: %(A document that this thing is the primary topic of.).freeze,
619
+ comment: "A document that this thing is the primary topic of.".freeze,
620
620
  domain: "owl:Thing".freeze,
621
621
  inverseOf: "foaf:primaryTopic".freeze,
622
622
  isDefinedBy: "foaf:".freeze,
@@ -626,7 +626,7 @@ module RDF::Vocab
626
626
  type: ["owl:InverseFunctionalProperty".freeze, "rdf:Property".freeze],
627
627
  "vs:term_status": "stable".freeze
628
628
  property :jabberID,
629
- comment: %(A jabber ID for something.).freeze,
629
+ comment: "A jabber ID for something.".freeze,
630
630
  domain: "foaf:Agent".freeze,
631
631
  isDefinedBy: "foaf:".freeze,
632
632
  label: "jabber ID".freeze,
@@ -634,7 +634,7 @@ module RDF::Vocab
634
634
  type: ["owl:DatatypeProperty".freeze, "owl:InverseFunctionalProperty".freeze, "rdf:Property".freeze],
635
635
  "vs:term_status": "testing".freeze
636
636
  property :knows,
637
- comment: %(A person known by this person \(indicating some level of reciprocated interaction between the parties\).).freeze,
637
+ comment: "A person known by this person (indicating some level of reciprocated interaction between the parties).".freeze,
638
638
  domain: "foaf:Person".freeze,
639
639
  isDefinedBy: "foaf:".freeze,
640
640
  label: "knows".freeze,
@@ -642,7 +642,7 @@ module RDF::Vocab
642
642
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze],
643
643
  "vs:term_status": "stable".freeze
644
644
  property :lastName,
645
- comment: %(The last name of a person.).freeze,
645
+ comment: "The last name of a person.".freeze,
646
646
  domain: "foaf:Person".freeze,
647
647
  isDefinedBy: "foaf:".freeze,
648
648
  label: "lastName".freeze,
@@ -650,7 +650,7 @@ module RDF::Vocab
650
650
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze],
651
651
  "vs:term_status": "testing".freeze
652
652
  property :logo,
653
- comment: %(A logo representing some thing.).freeze,
653
+ comment: "A logo representing some thing.".freeze,
654
654
  domain: "owl:Thing".freeze,
655
655
  isDefinedBy: "foaf:".freeze,
656
656
  label: "logo".freeze,
@@ -658,7 +658,7 @@ module RDF::Vocab
658
658
  type: ["owl:InverseFunctionalProperty".freeze, "owl:ObjectProperty".freeze, "rdf:Property".freeze],
659
659
  "vs:term_status": "testing".freeze
660
660
  property :made,
661
- comment: %(Something that was made by this agent.).freeze,
661
+ comment: "Something that was made by this agent.".freeze,
662
662
  domain: "foaf:Agent".freeze,
663
663
  inverseOf: "foaf:maker".freeze,
664
664
  isDefinedBy: "foaf:".freeze,
@@ -667,7 +667,7 @@ module RDF::Vocab
667
667
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze],
668
668
  "vs:term_status": "stable".freeze
669
669
  property :maker,
670
- comment: %(An agent that made this thing.).freeze,
670
+ comment: "An agent that made this thing.".freeze,
671
671
  domain: "owl:Thing".freeze,
672
672
  equivalentProperty: "dc:creator".freeze,
673
673
  inverseOf: "foaf:made".freeze,
@@ -677,7 +677,7 @@ module RDF::Vocab
677
677
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze],
678
678
  "vs:term_status": "stable".freeze
679
679
  property :mbox,
680
- comment: %(A personal mailbox, ie. an Internet mailbox associated with exactly one owner, the first owner of this mailbox. This is a 'static inverse functional property', in that there is \(across time and change\) at most one individual that ever has any particular value for foaf:mbox.).freeze,
680
+ comment: "A personal mailbox, ie. an Internet mailbox associated with exactly one owner, the first owner of this mailbox. This is a 'static inverse functional property', in that there is (across time and change) at most one individual that ever has any particular value for foaf:mbox.".freeze,
681
681
  domain: "foaf:Agent".freeze,
682
682
  isDefinedBy: "foaf:".freeze,
683
683
  label: "personal mailbox".freeze,
@@ -685,7 +685,7 @@ module RDF::Vocab
685
685
  type: ["owl:InverseFunctionalProperty".freeze, "owl:ObjectProperty".freeze, "rdf:Property".freeze],
686
686
  "vs:term_status": "stable".freeze
687
687
  property :mbox_sha1sum,
688
- comment: %(The sha1sum of the URI of an Internet mailbox associated with exactly one owner, the first owner of the mailbox.).freeze,
688
+ comment: "The sha1sum of the URI of an Internet mailbox associated with exactly one owner, the first owner of the mailbox.".freeze,
689
689
  domain: "foaf:Agent".freeze,
690
690
  isDefinedBy: "foaf:".freeze,
691
691
  label: "sha1sum of a personal mailbox URI name".freeze,
@@ -693,7 +693,7 @@ module RDF::Vocab
693
693
  type: ["owl:DatatypeProperty".freeze, "owl:InverseFunctionalProperty".freeze, "rdf:Property".freeze],
694
694
  "vs:term_status": "testing".freeze
695
695
  property :member,
696
- comment: %(Indicates a member of a Group).freeze,
696
+ comment: "Indicates a member of a Group".freeze,
697
697
  domain: "foaf:Group".freeze,
698
698
  isDefinedBy: "foaf:".freeze,
699
699
  label: "member".freeze,
@@ -701,13 +701,13 @@ module RDF::Vocab
701
701
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze],
702
702
  "vs:term_status": "stable".freeze
703
703
  property :membershipClass,
704
- comment: %(Indicates the class of individuals that are a member of a Group).freeze,
704
+ comment: "Indicates the class of individuals that are a member of a Group".freeze,
705
705
  isDefinedBy: "foaf:".freeze,
706
706
  label: "membershipClass".freeze,
707
707
  type: ["owl:AnnotationProperty".freeze, "rdf:Property".freeze],
708
708
  "vs:term_status": "unstable".freeze
709
709
  property :msnChatID,
710
- comment: %(An MSN chat ID).freeze,
710
+ comment: "An MSN chat ID".freeze,
711
711
  domain: "foaf:Agent".freeze,
712
712
  isDefinedBy: "foaf:".freeze,
713
713
  label: "MSN chat ID".freeze,
@@ -716,7 +716,7 @@ module RDF::Vocab
716
716
  type: ["owl:DatatypeProperty".freeze, "owl:InverseFunctionalProperty".freeze, "rdf:Property".freeze],
717
717
  "vs:term_status": "testing".freeze
718
718
  property :myersBriggs,
719
- comment: %(A Myers Briggs \(MBTI\) personality classification.).freeze,
719
+ comment: "A Myers Briggs (MBTI) personality classification.".freeze,
720
720
  domain: "foaf:Person".freeze,
721
721
  isDefinedBy: "foaf:".freeze,
722
722
  label: "myersBriggs".freeze,
@@ -724,7 +724,7 @@ module RDF::Vocab
724
724
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze],
725
725
  "vs:term_status": "testing".freeze
726
726
  property :name,
727
- comment: %(A name for some thing.).freeze,
727
+ comment: "A name for some thing.".freeze,
728
728
  domain: "owl:Thing".freeze,
729
729
  isDefinedBy: "foaf:".freeze,
730
730
  label: "name".freeze,
@@ -733,13 +733,13 @@ module RDF::Vocab
733
733
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze],
734
734
  "vs:term_status": "testing".freeze
735
735
  property :nick,
736
- comment: %(A short informal nickname characterising an agent \(includes login identifiers, IRC and other chat nicknames\).).freeze,
736
+ comment: "A short informal nickname characterising an agent (includes login identifiers, IRC and other chat nicknames).".freeze,
737
737
  isDefinedBy: "foaf:".freeze,
738
738
  label: "nickname".freeze,
739
739
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze],
740
740
  "vs:term_status": "testing".freeze
741
741
  property :openid,
742
- comment: %(An OpenID for an Agent.).freeze,
742
+ comment: "An OpenID for an Agent.".freeze,
743
743
  domain: "foaf:Agent".freeze,
744
744
  isDefinedBy: "foaf:".freeze,
745
745
  label: "openid".freeze,
@@ -748,7 +748,7 @@ module RDF::Vocab
748
748
  type: ["owl:InverseFunctionalProperty".freeze, "owl:ObjectProperty".freeze, "rdf:Property".freeze],
749
749
  "vs:term_status": "testing".freeze
750
750
  property :page,
751
- comment: %(A page or document about this thing.).freeze,
751
+ comment: "A page or document about this thing.".freeze,
752
752
  domain: "owl:Thing".freeze,
753
753
  inverseOf: "foaf:topic".freeze,
754
754
  isDefinedBy: "foaf:".freeze,
@@ -757,7 +757,7 @@ module RDF::Vocab
757
757
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze],
758
758
  "vs:term_status": "testing".freeze
759
759
  property :pastProject,
760
- comment: %(A project this person has previously worked on.).freeze,
760
+ comment: "A project this person has previously worked on.".freeze,
761
761
  domain: "foaf:Person".freeze,
762
762
  isDefinedBy: "foaf:".freeze,
763
763
  label: "past project".freeze,
@@ -765,13 +765,13 @@ module RDF::Vocab
765
765
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze],
766
766
  "vs:term_status": "testing".freeze
767
767
  property :phone,
768
- comment: %(A phone, specified using fully qualified tel: URI scheme \(refs: http://www.w3.org/Addressing/schemes.html#tel\).).freeze,
768
+ comment: "A phone, specified using fully qualified tel: URI scheme (refs: http://www.w3.org/Addressing/schemes.html#tel).".freeze,
769
769
  isDefinedBy: "foaf:".freeze,
770
770
  label: "phone".freeze,
771
771
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze],
772
772
  "vs:term_status": "testing".freeze
773
773
  property :plan,
774
- comment: %(A .plan comment, in the tradition of finger and '.plan' files.).freeze,
774
+ comment: "A .plan comment, in the tradition of finger and '.plan' files.".freeze,
775
775
  domain: "foaf:Person".freeze,
776
776
  isDefinedBy: "foaf:".freeze,
777
777
  label: "plan".freeze,
@@ -779,7 +779,7 @@ module RDF::Vocab
779
779
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze],
780
780
  "vs:term_status": "testing".freeze
781
781
  property :primaryTopic,
782
- comment: %(The primary topic of some page or document.).freeze,
782
+ comment: "The primary topic of some page or document.".freeze,
783
783
  domain: "foaf:Document".freeze,
784
784
  inverseOf: "foaf:isPrimaryTopicOf".freeze,
785
785
  isDefinedBy: "foaf:".freeze,
@@ -788,7 +788,7 @@ module RDF::Vocab
788
788
  type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze, "rdf:Property".freeze],
789
789
  "vs:term_status": "stable".freeze
790
790
  property :publications,
791
- comment: %(A link to the publications of this person.).freeze,
791
+ comment: "A link to the publications of this person.".freeze,
792
792
  domain: "foaf:Person".freeze,
793
793
  isDefinedBy: "foaf:".freeze,
794
794
  label: "publications".freeze,
@@ -796,7 +796,7 @@ module RDF::Vocab
796
796
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze],
797
797
  "vs:term_status": "testing".freeze
798
798
  property :schoolHomepage,
799
- comment: %(A homepage of a school attended by the person.).freeze,
799
+ comment: "A homepage of a school attended by the person.".freeze,
800
800
  domain: "foaf:Person".freeze,
801
801
  isDefinedBy: "foaf:".freeze,
802
802
  label: "schoolHomepage".freeze,
@@ -804,14 +804,14 @@ module RDF::Vocab
804
804
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze],
805
805
  "vs:term_status": "testing".freeze
806
806
  property :sha1,
807
- comment: %(A sha1sum hash, in hex.).freeze,
807
+ comment: "A sha1sum hash, in hex.".freeze,
808
808
  domain: "foaf:Document".freeze,
809
809
  isDefinedBy: "foaf:".freeze,
810
810
  label: "sha1sum (hex)".freeze,
811
811
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze],
812
812
  "vs:term_status": "unstable".freeze
813
813
  property :skypeID,
814
- comment: %(A Skype ID).freeze,
814
+ comment: "A Skype ID".freeze,
815
815
  domain: "foaf:Agent".freeze,
816
816
  isDefinedBy: "foaf:".freeze,
817
817
  label: "Skype ID".freeze,
@@ -820,7 +820,7 @@ module RDF::Vocab
820
820
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze],
821
821
  "vs:term_status": "testing".freeze
822
822
  property :status,
823
- comment: %(A string expressing what the user is happy for the general public \(normally\) to know about their current activity.).freeze,
823
+ comment: "A string expressing what the user is happy for the general public (normally) to know about their current activity.".freeze,
824
824
  domain: "foaf:Agent".freeze,
825
825
  isDefinedBy: "foaf:".freeze,
826
826
  label: "status".freeze,
@@ -828,7 +828,7 @@ module RDF::Vocab
828
828
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze],
829
829
  "vs:term_status": "unstable".freeze
830
830
  property :surname,
831
- comment: %(The surname of some person.).freeze,
831
+ comment: "The surname of some person.".freeze,
832
832
  domain: "foaf:Person".freeze,
833
833
  isDefinedBy: "foaf:".freeze,
834
834
  label: "Surname".freeze,
@@ -836,7 +836,7 @@ module RDF::Vocab
836
836
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze],
837
837
  "vs:term_status": "archaic".freeze
838
838
  property :theme,
839
- comment: %(A theme.).freeze,
839
+ comment: "A theme.".freeze,
840
840
  domain: "owl:Thing".freeze,
841
841
  isDefinedBy: "foaf:".freeze,
842
842
  label: "theme".freeze,
@@ -844,7 +844,7 @@ module RDF::Vocab
844
844
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze],
845
845
  "vs:term_status": "archaic".freeze
846
846
  property :thumbnail,
847
- comment: %(A derived thumbnail image.).freeze,
847
+ comment: "A derived thumbnail image.".freeze,
848
848
  domain: "foaf:Image".freeze,
849
849
  isDefinedBy: "foaf:".freeze,
850
850
  label: "thumbnail".freeze,
@@ -852,7 +852,7 @@ module RDF::Vocab
852
852
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze],
853
853
  "vs:term_status": "testing".freeze
854
854
  property :tipjar,
855
- comment: %(A tipjar document for this agent, describing means for payment and reward.).freeze,
855
+ comment: "A tipjar document for this agent, describing means for payment and reward.".freeze,
856
856
  domain: "foaf:Agent".freeze,
857
857
  isDefinedBy: "foaf:".freeze,
858
858
  label: "tipjar".freeze,
@@ -861,13 +861,13 @@ module RDF::Vocab
861
861
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze],
862
862
  "vs:term_status": "testing".freeze
863
863
  property :title,
864
- comment: %(Title \(Mr, Mrs, Ms, Dr. etc\)).freeze,
864
+ comment: "Title (Mr, Mrs, Ms, Dr. etc)".freeze,
865
865
  isDefinedBy: "foaf:".freeze,
866
866
  label: "title".freeze,
867
867
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze],
868
868
  "vs:term_status": "testing".freeze
869
869
  property :topic,
870
- comment: %(A topic of some page or document.).freeze,
870
+ comment: "A topic of some page or document.".freeze,
871
871
  domain: "foaf:Document".freeze,
872
872
  inverseOf: "foaf:page".freeze,
873
873
  isDefinedBy: "foaf:".freeze,
@@ -876,7 +876,7 @@ module RDF::Vocab
876
876
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze],
877
877
  "vs:term_status": "testing".freeze
878
878
  property :topic_interest,
879
- comment: %(A thing of interest to this person.).freeze,
879
+ comment: "A thing of interest to this person.".freeze,
880
880
  domain: "foaf:Agent".freeze,
881
881
  isDefinedBy: "foaf:".freeze,
882
882
  label: "topic_interest".freeze,
@@ -884,7 +884,7 @@ module RDF::Vocab
884
884
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze],
885
885
  "vs:term_status": "testing".freeze
886
886
  property :weblog,
887
- comment: %(A weblog of some thing \(whether person, group, company etc.\).).freeze,
887
+ comment: "A weblog of some thing (whether person, group, company etc.).".freeze,
888
888
  domain: "foaf:Agent".freeze,
889
889
  isDefinedBy: "foaf:".freeze,
890
890
  label: "weblog".freeze,
@@ -893,7 +893,7 @@ module RDF::Vocab
893
893
  type: ["owl:InverseFunctionalProperty".freeze, "owl:ObjectProperty".freeze, "rdf:Property".freeze],
894
894
  "vs:term_status": "testing".freeze
895
895
  property :workInfoHomepage,
896
- comment: %(A work info homepage of some person; a page about their work for some organization.).freeze,
896
+ comment: "A work info homepage of some person; a page about their work for some organization.".freeze,
897
897
  domain: "foaf:Person".freeze,
898
898
  isDefinedBy: "foaf:".freeze,
899
899
  label: "work info homepage".freeze,
@@ -901,7 +901,7 @@ module RDF::Vocab
901
901
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze],
902
902
  "vs:term_status": "testing".freeze
903
903
  property :workplaceHomepage,
904
- comment: %(A workplace homepage of some person; the homepage of an organization they work for.).freeze,
904
+ comment: "A workplace homepage of some person; the homepage of an organization they work for.".freeze,
905
905
  domain: "foaf:Person".freeze,
906
906
  isDefinedBy: "foaf:".freeze,
907
907
  label: "workplace homepage".freeze,
@@ -909,7 +909,7 @@ module RDF::Vocab
909
909
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze],
910
910
  "vs:term_status": "testing".freeze
911
911
  property :yahooChatID,
912
- comment: %(A Yahoo chat ID).freeze,
912
+ comment: "A Yahoo chat ID".freeze,
913
913
  domain: "foaf:Agent".freeze,
914
914
  isDefinedBy: "foaf:".freeze,
915
915
  label: "Yahoo chat ID".freeze,