_FOAF.py 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. from rdflib.namespace import DefinedNamespace, Namespace
  2. from rdflib.term import URIRef
  3. class FOAF(DefinedNamespace):
  4. """
  5. Friend of a Friend (FOAF) vocabulary
  6. The Friend of a Friend (FOAF) RDF vocabulary, described using W3C RDF Schema and the Web Ontology Language.
  7. Generated from: http://xmlns.com/foaf/spec/index.rdf
  8. Date: 2020-05-26 14:20:01.597998
  9. """
  10. _fail = True
  11. # http://www.w3.org/1999/02/22-rdf-syntax-ns#Property
  12. account: URIRef # Indicates an account held by this agent.
  13. accountName: (
  14. URIRef # Indicates the name (identifier) associated with this online account.
  15. )
  16. accountServiceHomepage: (
  17. URIRef # Indicates a homepage of the service provide for this online account.
  18. )
  19. age: URIRef # The age in years of some agent.
  20. based_near: URIRef # A location that something is based near, for some broadly human notion of near.
  21. birthday: URIRef # The birthday of this Agent, represented in mm-dd string form, eg. '12-31'.
  22. currentProject: URIRef # A current project this person works on.
  23. depiction: URIRef # A depiction of some thing.
  24. depicts: URIRef # A thing depicted in this representation.
  25. dnaChecksum: URIRef # A checksum for the DNA of some thing. Joke.
  26. familyName: URIRef # The family name of some person.
  27. family_name: URIRef # The family name of some person.
  28. firstName: URIRef # The first name of a person.
  29. focus: URIRef # The underlying or 'focal' entity associated with some SKOS-described concept.
  30. fundedBy: URIRef # An organization funding a project or person.
  31. geekcode: URIRef # A textual geekcode for this person, see http://www.geekcode.com/geek.html
  32. gender: URIRef # The gender of this Agent (typically but not necessarily 'male' or 'female').
  33. givenName: URIRef # The given name of some person.
  34. givenname: URIRef # The given name of some person.
  35. holdsAccount: URIRef # Indicates an account held by this agent.
  36. img: URIRef # 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).
  37. interest: URIRef # A page about a topic of interest to this person.
  38. knows: URIRef # A person known by this person (indicating some level of reciprocated interaction between the parties).
  39. lastName: URIRef # The last name of a person.
  40. made: URIRef # Something that was made by this agent.
  41. maker: URIRef # An agent that made this thing.
  42. member: URIRef # Indicates a member of a Group
  43. membershipClass: (
  44. URIRef # Indicates the class of individuals that are a member of a Group
  45. )
  46. myersBriggs: URIRef # A Myers Briggs (MBTI) personality classification.
  47. name: URIRef # A name for some thing.
  48. nick: URIRef # A short informal nickname characterising an agent (includes login identifiers, IRC and other chat nicknames).
  49. page: URIRef # A page or document about this thing.
  50. pastProject: URIRef # A project this person has previously worked on.
  51. phone: URIRef # A phone, specified using fully qualified tel: URI scheme (refs: http://www.w3.org/Addressing/schemes.html#tel).
  52. plan: URIRef # A .plan comment, in the tradition of finger and '.plan' files.
  53. primaryTopic: URIRef # The primary topic of some page or document.
  54. publications: URIRef # A link to the publications of this person.
  55. schoolHomepage: URIRef # A homepage of a school attended by the person.
  56. sha1: URIRef # A sha1sum hash, in hex.
  57. skypeID: URIRef # A Skype ID
  58. status: URIRef # A string expressing what the user is happy for the general public (normally) to know about their current activity.
  59. surname: URIRef # The surname of some person.
  60. theme: URIRef # A theme.
  61. thumbnail: URIRef # A derived thumbnail image.
  62. tipjar: URIRef # A tipjar document for this agent, describing means for payment and reward.
  63. title: URIRef # Title (Mr, Mrs, Ms, Dr. etc)
  64. topic: URIRef # A topic of some page or document.
  65. topic_interest: URIRef # A thing of interest to this person.
  66. workInfoHomepage: URIRef # A work info homepage of some person; a page about their work for some organization.
  67. workplaceHomepage: URIRef # A workplace homepage of some person; the homepage of an organization they work for.
  68. # http://www.w3.org/2000/01/rdf-schema#Class
  69. Agent: URIRef # An agent (eg. person, group, software or physical artifact).
  70. Document: URIRef # A document.
  71. Group: URIRef # A class of Agents.
  72. Image: URIRef # An image.
  73. LabelProperty: URIRef # A foaf:LabelProperty is any RDF property with textual values that serve as labels.
  74. OnlineAccount: URIRef # An online account.
  75. OnlineChatAccount: URIRef # An online chat account.
  76. OnlineEcommerceAccount: URIRef # An online e-commerce account.
  77. OnlineGamingAccount: URIRef # An online gaming account.
  78. Organization: URIRef # An organization.
  79. Person: URIRef # A person.
  80. PersonalProfileDocument: URIRef # A personal profile RDF document.
  81. Project: URIRef # A project (a collective endeavour of some kind).
  82. # http://www.w3.org/2002/07/owl#InverseFunctionalProperty
  83. aimChatID: URIRef # An AIM chat ID
  84. homepage: URIRef # A homepage for some thing.
  85. icqChatID: URIRef # An ICQ chat ID
  86. isPrimaryTopicOf: URIRef # A document that this thing is the primary topic of.
  87. jabberID: URIRef # A jabber ID for something.
  88. logo: URIRef # A logo representing some thing.
  89. mbox: URIRef # 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.
  90. mbox_sha1sum: URIRef # The sha1sum of the URI of an Internet mailbox associated with exactly one owner, the first owner of the mailbox.
  91. msnChatID: URIRef # An MSN chat ID
  92. openid: URIRef # An OpenID for an Agent.
  93. weblog: URIRef # A weblog of some thing (whether person, group, company etc.).
  94. yahooChatID: URIRef # A Yahoo chat ID
  95. _NS = Namespace("http://xmlns.com/foaf/0.1/")