- Migrated `published_at` to `is_or_was_published_at` with structured `PublicationEvent` class for enhanced temporal accuracy. - Introduced `has_or_had_publisher` slot to replace the string-based `publisher` slot, allowing for detailed publisher information. - Added new slots: `deduction_percentage`, `regulatory_body`, `expiration_date`, and `jurisdiction` to support tax scheme documentation. - Archived outdated slots: `published_by` and `publisher`, ensuring compliance with updated naming conventions and ontology alignment. - Updated `Database` types to `DatabaseSystem` for consistency in technological infrastructure classification. - Broadened range types for slots `allows_or_allowed` and `includes_or_included` from `string` to `uriorcurie` to resolve OWL ambiguities. - Enhanced documentation and examples across various classes and slots to clarify usage and improve understanding.
162 lines
5.5 KiB
YAML
162 lines
5.5 KiB
YAML
id: https://nde.nl/ontology/hc/class/Publisher
|
|
name: Publisher
|
|
title: Publisher Class
|
|
description: |
|
|
Represents a publisher entity for publications and documents.
|
|
|
|
CREATED 2026-01-17 per Rule 53/56: Class for structured publisher representation.
|
|
Replaces string-valued publisher slot with structured data including:
|
|
- Publisher name (required)
|
|
- Publisher type (institutional, commercial, academic, self-published)
|
|
- Location/city
|
|
- Identifiers (ISNI, Wikidata)
|
|
- URL
|
|
|
|
**Ontology Alignment**:
|
|
|
|
- **Schema.org**: schema:Organization (primary - web discoverability)
|
|
- **Dublin Core**: dcterms:Agent (abstract agent entity)
|
|
- **FOAF**: foaf:Organization (friend-of-a-friend vocabulary)
|
|
|
|
**Publisher Types**:
|
|
|
|
| Type | Description | Example |
|
|
|------|-------------|---------|
|
|
| institutional | Museum, archive, or library publishing | Rijksmuseum, British Museum Press |
|
|
| commercial | Trade and commercial publishers | Thames & Hudson, Phaidon |
|
|
| academic | University and academic presses | Yale University Press, MIT Press |
|
|
| self-published | Self-publishing by individuals | Artist monographs |
|
|
| government | Government publishing offices | GPO, HMSO |
|
|
prefixes:
|
|
linkml: https://w3id.org/linkml/
|
|
hc: https://nde.nl/ontology/hc/
|
|
schema: http://schema.org/
|
|
dcterms: http://purl.org/dc/terms/
|
|
foaf: http://xmlns.com/foaf/0.1/
|
|
imports:
|
|
- linkml:types
|
|
- ../metadata
|
|
- ../slots/has_or_had_label
|
|
- ../slots/has_or_had_identifier
|
|
- ../slots/has_or_had_location
|
|
- ../slots/has_or_had_url
|
|
- ../slots/has_or_had_type
|
|
- ../slots/specificity_annotation
|
|
- ../slots/has_or_had_score
|
|
- ./SpecificityAnnotation
|
|
- ./TemplateSpecificityScore
|
|
- ./TemplateSpecificityType
|
|
- ./TemplateSpecificityTypes
|
|
default_prefix: hc
|
|
classes:
|
|
Publisher:
|
|
class_uri: schema:Organization
|
|
description: |
|
|
A publisher of publications, catalogs, finding aids, or other documents.
|
|
|
|
Supports structured representation with name, type, location, and identifiers.
|
|
CREATED 2026-01-17 per Rule 53/56: Replaces string-valued publisher slot.
|
|
exact_mappings:
|
|
- schema:Organization
|
|
- foaf:Organization
|
|
close_mappings:
|
|
- dcterms:Agent
|
|
slots:
|
|
- has_or_had_label
|
|
- has_or_had_identifier
|
|
- has_or_had_location
|
|
- has_or_had_url
|
|
- has_or_had_type
|
|
- specificity_annotation
|
|
- has_or_had_score
|
|
slot_usage:
|
|
has_or_had_label:
|
|
required: true
|
|
range: string
|
|
description: |
|
|
Name of the publisher.
|
|
Required field - every publisher must have a name.
|
|
examples:
|
|
- value: Rijksmuseum
|
|
description: Dutch national museum publisher
|
|
- value: Yale University Press
|
|
description: Academic press
|
|
- value: Thames & Hudson
|
|
description: Commercial art publisher
|
|
- value: The British Museum Press
|
|
description: Institutional publisher
|
|
has_or_had_type:
|
|
required: false
|
|
range: string
|
|
description: |
|
|
Type classification of the publisher.
|
|
|
|
Common values:
|
|
- institutional: Museums, archives, libraries
|
|
- commercial: Trade publishers
|
|
- academic: University presses
|
|
- self-published: Individual publishing
|
|
- government: Government publishing offices
|
|
examples:
|
|
- value: institutional
|
|
- value: commercial
|
|
- value: academic
|
|
- value: government
|
|
has_or_had_location:
|
|
required: false
|
|
range: string
|
|
description: |
|
|
Location/city of the publisher.
|
|
Typically the city where the publisher is headquartered.
|
|
examples:
|
|
- value: Amsterdam
|
|
- value: New York
|
|
- value: London
|
|
- value: New Haven
|
|
has_or_had_identifier:
|
|
required: false
|
|
range: uriorcurie
|
|
multivalued: true
|
|
description: |
|
|
Identifiers for the publisher (ISNI, Wikidata Q-number, etc.).
|
|
examples:
|
|
- value: "Q190804"
|
|
description: Wikidata identifier for Rijksmuseum
|
|
- value: "0000000121671840"
|
|
description: ISNI identifier
|
|
has_or_had_url:
|
|
required: false
|
|
range: uri
|
|
description: |
|
|
Official website URL of the publisher.
|
|
examples:
|
|
- value: "https://www.rijksmuseum.nl"
|
|
- value: "https://yalebooks.yale.edu"
|
|
examples:
|
|
- value:
|
|
has_or_had_label: Rijksmuseum
|
|
has_or_had_type: institutional
|
|
has_or_had_location: Amsterdam
|
|
has_or_had_url: "https://www.rijksmuseum.nl"
|
|
description: Museum as institutional publisher
|
|
- value:
|
|
has_or_had_label: Yale University Press
|
|
has_or_had_type: academic
|
|
has_or_had_location: New Haven
|
|
has_or_had_url: "https://yalebooks.yale.edu"
|
|
description: Academic press publisher
|
|
- value:
|
|
has_or_had_label: Thames & Hudson
|
|
has_or_had_type: commercial
|
|
has_or_had_location: London
|
|
description: Commercial art book publisher
|
|
- value:
|
|
has_or_had_label: The British Museum Press
|
|
has_or_had_type: institutional
|
|
has_or_had_location: London
|
|
description: Museum press as institutional publisher
|
|
- value:
|
|
has_or_had_label: Hannibal Publishing
|
|
has_or_had_type: commercial
|
|
has_or_had_location: Veurne
|
|
description: Belgian art book publisher
|