Profile Page
- CURIE:
gmeow:ProfilePage - IRI: https://blackcatinformatics.ca/gmeow/ProfilePage
- Category: class
- Defined by:
gmeow:slices/documents - Box roles: ConfigBox role, TBox role (What is this?)
A web page whose principal subject is an agent — a person's or organization's profile/about page. A DEFINED class: any gmeow:WebPage whose gmeow:pagePrincipalSubject is a gmeow:Agent IS a ProfilePage (≡ gmeow:WebPage ⊓ ∃gmeow:pagePrincipalSubject.gmeow:Agent), so no manual typing is needed. Projects to schema:ProfilePage.
Structure
Subclass of: gmeow:WebPage
Practical Pattern
Use gmeow:ProfilePage as a specialized kind of gmeow:WebPage. Add statement metadata or a standpoint when the assertion needs provenance, confidence, or vantage.
Example Snippets
These snippets are generated from canonical slice examples and trimmed to the Turtle blocks where this term appears.
Web Presence
- Source:
slices/core/documents/examples/web-presence.ttl - Examples catalog: open in catalog#example-slices-core-documents-examples-web-presence
# SPDX-FileCopyrightText: 2026 Blackcat Informatics® Inc. <paudley@blackcatinformatics.ca>
# SPDX-License-Identifier: CC-BY-4.0
#
# Worked example: a web presence on the WEMI spine. A WebSite and
# its WebPages are concrete gmeow:Manifestations — so each embodies an Expression
# that realizes a Work, the same four-tier backing every published artifact
# carries. Pages belong to the site via gmeow:pageOfSite (⊑ partOf). The about
# page names a person as its gmeow:pagePrincipalSubject (⊑ isAbout), which makes
# it a gmeow:ProfilePage by INFERENCE — ProfilePage is a defined class (any
# WebPage whose principal subject is an Agent), so no manual typing is needed.
@prefix gmeow: <https://blackcatinformatics.ca/gmeow/> .
@prefix ex: <https://blackcatinformatics.ca/gmeow/examples/documents/> .
Common Companion Terms
Projects To
| Profile | External Targets |
|---|---|
schema-org |
schema |
Linkages
Generated from the canonical mapping DSL. SSSOM files are the generated public interchange form for term equivalences.
Projection Coverage
| Source | Kind | Profile | Predicate/Relation | Target | Evidence |
|---|---|---|---|---|---|
gmeow:ProfilePage |
projection | schema-org |
projects to / <= | schema:ProfilePage | gmeow:mapSchemaProfilePage; confidence 0.9; lossy: the WebPage→ProfilePage refinement is the defined-class inference (page principally about an Agent); schema gets the bare ProfilePage typing |
Usage Advice
Use when
- Use as the QUERY target for any page that profiles an agent; membership is derived, so reach for it when selecting or projecting profile/about pages rather than to type them by hand.
Avoid when
- Avoid asserting rdf:type
gmeow:ProfilePagemanually — it is a defined class inferred fromgmeow:pagePrincipalSubjectranging over agmeow:Agent; assert the principal subject instead and let the reasoner classify.
How to use
- Do not type instances directly: give a
gmeow:WebPageagmeow:pagePrincipalSubjectthat is agmeow:Agentand the equivalence axiom classifies it as aProfilePage, which projects to schema:ProfilePage.
Examples
- ex:aboutPage a
gmeow:WebPage;gmeow:pagePrincipalSubjectex:lillith. # ex:lillith anAgent⇒ ex:aboutPage inferred agmeow:ProfilePage