LACK Knowledge Graph

LACK Ontology

Prefix: lack:
Namespace: https://purl.net/climatesense/lack/ns#
Status: Draft

@prefix lack: <https://purl.net/climatesense/lack/ns#> .

Download the formal files: Turtle (.ttl) · Manchester Syntax (.omn)


Overview

LACK is a lightweight ontology for describing relationships between people and organisations, derived from a large corpus of real-world relation expressions relevant to lobbying against climate change awareness and policies. It provides a minimal, reusable vocabulary covering membership, employment, leadership, funding, founding, and association.

The ontology is built around two top-level types and a set of object properties connecting them.

lack:Person individual human lack:Collective group / organisation rdf:Statement (temporal reification) xsd:gYear (datatype — years) memberOf hasMember employedBy leadsAt contributedTo fundedBy / founded / sponsored hasPartner (symmetric) associatedWith (symmetric, top-level) acquired / derivedFrom organised owl:sameAs activeSince / activeUntil activeSince / activeUntil since / until Legend object property symmetric property datatype / reification

Types

lack:Person

An individual human being.

lack:Collective

Any group of people organised around a shared purpose. This includes but is not limited to: companies, NGOs, think tanks, news agencies, political assemblies, events, committees, and networks.


Relations

Membership

Term Label Domain Range Inverse Sub-property of
lack:memberOf member of lack:Person lack:Collective lack:hasMember lack:associatedWith
lack:hasMember has member lack:Collective lack:Person lack:memberOf lack:associatedWith

Employment

Term Label Domain Range Inverse Sub-property of
lack:employedBy employed by lack:Person lack:Collective lack:hasEmployee lack:associatedWith
lack:hasEmployee has employee lack:Collective lack:Person lack:employedBy lack:associatedWith

Leadership

Term Label Domain Range Inverse Sub-property of
lack:leadsAt leads at lack:Person lack:Collective lack:hasLeader lack:employedBy
lack:hasLeader has leader lack:Collective lack:Person lack:leadsAt lack:associatedWith

lack:leadsAt covers any named leadership or responsibility role within an organisation or department, including but not limited to: CEO, president, chair, director, VP, treasurer, secretary, COO, and department-level director roles. It is a sub-property of lack:employedBy, which is itself a sub-property of lack:associatedWith.

Funding

Term Label Domain Range Inverse Sub-property of
lack:fundedBy funded by lack:Person | lack:Collective lack:Person | lack:Collective lack:hasFunder lack:associatedWith
lack:hasFunder has funder lack:Person | lack:Collective lack:Person | lack:Collective lack:fundedBy lack:associatedWith

Covers funding, donation, commissioning, and award receipt.

Founding & Creation

Term Label Domain Range Inverse Sub-property of
lack:founded founded lack:Person | lack:Collective lack:Collective lack:wasFoundedBy lack:associatedWith
lack:wasFoundedBy was founded by lack:Collective lack:Person | lack:Collective lack:founded lack:associatedWith

Covers founding, co-founding, creation, incorporation, and launch.

Contribution

Term Label Domain Range Inverse Sub-property of
lack:contributedTo contributed to lack:Person | lack:Collective lack:Collective lack:hasContributor
lack:hasContributor has contributor lack:Collective lack:Person | lack:Collective lack:contributedTo

Covers contribution, authorship, distribution, presentation, and reposting.

Partnership

Term Label Domain Range Inverse Sub-property of
lack:hasPartner has partner lack:Collective lack:Collective lack:hasPartner (symmetric) lack:associatedWith

Sponsorship

Term Label Domain Range Inverse Sub-property of
lack:sponsored sponsored lack:Person | lack:Collective lack:Person | lack:Collective lack:wasSponsoredBy lack:associatedWith
lack:wasSponsoredBy was sponsored by lack:Person | lack:Collective lack:Person | lack:Collective lack:sponsored lack:associatedWith

Covers sponsorship, promotion, patronage, and support.

Association

Term Label Domain Range Inverse Sub-property of
lack:associatedWith associated with lack:Person | lack:Collective lack:Person | lack:Collective lack:associatedWith (symmetric)

General-purpose association or affiliation. Used when no more specific relation applies. This is the top-level relation from which most other relations in this ontology are derived.

Ownership & Acquisition

Term Label Domain Range Inverse Sub-property of
lack:acquired acquired lack:Collective lack:Collective lack:wasAcquiredBy lack:associatedWith
lack:wasAcquiredBy was acquired by lack:Collective lack:Collective lack:acquired lack:associatedWith

Covers acquisition, ownership, controlling interest, and shareholding.

Derivation

Term Label Domain Range Inverse Sub-property of
lack:derivedFrom derived from lack:Collective lack:Collective lack:hasDerivation lack:associatedWith
lack:hasDerivation has derivation lack:Collective lack:Collective lack:derivedFrom lack:associatedWith

Event Organisation

Term Label Domain Range Inverse Sub-property of
lack:organised organised lack:Person | lack:Collective lack:Collective lack:wasOrganisedBy lack:associatedWith
lack:wasOrganisedBy was organised by lack:Collective lack:Person | lack:Collective lack:organised lack:associatedWith

Identity & Naming

We reuse owl:sameAs to cover identity, renaming, aliases, and doing-business-as relations.

Term Label Domain Range Inverse Sub-property of
owl:sameAs same as lack:Person | lack:Collective lack:Person | lack:Collective owl:sameAs (symmetric)

Temporal Activity (entity-level)

These datatype properties attach temporal bounds directly to a lack:Person or lack:Collective.

Term Label Domain Range Note
lack:activeSince active since lack:Person | lack:Collective xsd:gYear Datatype property — no inverse
lack:activeUntil active until lack:Person | lack:Collective xsd:gYear Datatype property — no inverse

Reification of Temporal Relations

When a relation is annotated with temporal information (since, until, or when), it is represented using RDF reification (rdf:Statement). The base triple is always asserted directly in addition to the reified statement.

Term Label Domain Range Note
lack:since since rdf:Statement xsd:gYear Start year of the relation
lack:until until rdf:Statement xsd:gYear End year of the relation

When the source annotation is when (a point in time rather than an interval), both lack:since and lack:until are set to the same year value.

Example

@prefix lack: <https://purl.net/climatesense/lack/ns#> .
@prefix rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .

# Base triple always asserted
lack-entity:alice lack:employedBy lack-entity:org .

# Reified statement with interval
[] a rdf:Statement ;
    rdf:subject   lack-entity:alice ;
    rdf:predicate lack:employedBy ;
    rdf:object    lack-entity:org ;
    lack:since    "2010"^^xsd:gYear ;
    lack:until    "2020"^^xsd:gYear .

# Reified statement with point-in-time (when → since = until)
[] a rdf:Statement ;
    rdf:subject   lack-entity:alice ;
    rdf:predicate lack:memberOf ;
    rdf:object    lack-entity:boardX ;
    lack:since    "2015"^^xsd:gYear ;
    lack:until    "2015"^^xsd:gYear .

Full Vocabulary Summary

Term Domain Range Inverse Sub-property of
lack:memberOf lack:Person lack:Collective lack:hasMember lack:associatedWith
lack:hasMember lack:Collective lack:Person lack:memberOf lack:associatedWith
lack:employedBy lack:Person lack:Collective lack:hasEmployee lack:associatedWith
lack:hasEmployee lack:Collective lack:Person lack:employedBy lack:associatedWith
lack:leadsAt lack:Person lack:Collective lack:hasLeader lack:employedBy
lack:hasLeader lack:Collective lack:Person lack:leadsAt lack:associatedWith
lack:fundedBy lack:Person | lack:Collective lack:Person | lack:Collective lack:hasFunder lack:associatedWith
lack:hasFunder lack:Person | lack:Collective lack:Person | lack:Collective lack:fundedBy lack:associatedWith
lack:founded lack:Person | lack:Collective lack:Collective lack:wasFoundedBy lack:associatedWith
lack:wasFoundedBy lack:Collective lack:Person | lack:Collective lack:founded lack:associatedWith
lack:contributedTo lack:Person | lack:Collective lack:Collective lack:hasContributor
lack:hasContributor lack:Collective lack:Person | lack:Collective lack:contributedTo
lack:hasPartner lack:Collective lack:Collective (symmetric) lack:associatedWith
lack:sponsored lack:Person | lack:Collective lack:Person | lack:Collective lack:wasSponsoredBy lack:associatedWith
lack:wasSponsoredBy lack:Person | lack:Collective lack:Person | lack:Collective lack:sponsored lack:associatedWith
lack:associatedWith lack:Person | lack:Collective lack:Person | lack:Collective (symmetric)
lack:acquired lack:Collective lack:Collective lack:wasAcquiredBy lack:associatedWith
lack:wasAcquiredBy lack:Collective lack:Collective lack:acquired lack:associatedWith
lack:derivedFrom lack:Collective lack:Collective lack:hasDerivation lack:associatedWith
lack:hasDerivation lack:Collective lack:Collective lack:derivedFrom lack:associatedWith
lack:organised lack:Person | lack:Collective lack:Collective lack:wasOrganisedBy lack:associatedWith
lack:wasOrganisedBy lack:Collective lack:Person | lack:Collective lack:organised lack:associatedWith
owl:sameAs lack:Person | lack:Collective lack:Person | lack:Collective (symmetric)
lack:activeSince lack:Person | lack:Collective xsd:gYear (datatype property)
lack:activeUntil lack:Person | lack:Collective xsd:gYear (datatype property)
lack:since rdf:Statement xsd:gYear (datatype property — reification)
lack:until rdf:Statement xsd:gYear (datatype property — reification)

Schema.org Alignment

A mapping exercise to schema.org has been conducted. Key findings:


Competency Questions

The following competency questions were used to drive the design of the ontology and the knowledge extraction process, and were refined based on data quality assessment after extraction. They represent the key questions that LACK is designed to answer.

Transparency and Disclosure

Network Structure

Temporal Reasoning

Identity and Deduplication


Vocabulary Metadata

The following metadata is provided in accordance with the LOV Vocabulary Design Recommendations.

Property Value
rdf:type owl:Ontology, voaf:Vocabulary
vann:preferredNamespacePrefix lack
vann:preferredNamespaceUri https://purl.net/climatesense/lack/ns#
dc:title LACK Ontology
dc:description Lobbying Against Climate science Knowledge — a lightweight ontology for describing relationships between people and organisations relevant to lobbying against climate change awareness and policies.
dc:issued 2026-04-26
dc:modified 2026-04-28
owl:versionInfo 1.0
dc:creator Enrico Daga
dc:publisher Climate Sense Project
dc:rights Copyright © 2026 Climate Sense Project
cc:license CC BY 4.0
rdfs:isDefinedBy Applied to all classes and properties
vs:term_status stable on all terms