glam/schemas/20251121/linkml/modules/classes/Author.yaml
kempersc 90842851c2 Add slot definitions for 'updated_at' and 'written_in' with multilingual support and ontology alignment
- Created 'updated_at.yaml' to record the last modified date and time of entities, including multilingual descriptions and structured aliases.
- Created 'written_in.yaml' to specify the language in which content is composed, covering both natural and programming languages, with detailed comments and close ontology mappings.
2026-02-07 11:22:05 +01:00

97 lines
4 KiB
YAML

id: https://nde.nl/ontology/hc/class/Author
name: author_class
title: Author Class
prefixes:
linkml: https://w3id.org/linkml/
hc: https://nde.nl/ontology/hc/
schema: http://schema.org/
dcterms: http://purl.org/dc/terms/
bf: http://id.loc.gov/ontologies/bibframe/
bibo: http://purl.org/ontology/bibo/
foaf: http://xmlns.com/foaf/0.1/
rico: https://www.ica.org/standards/RiC/ontology#
imports:
- linkml:types
- ../enums/AuthorRoleEnum
- ../metadata
- ../slots/20260202_matang/has_description
- ../slots/20260202_matang/identified_by
- ../slots/20260202_matang/has_label
- ../slots/20260202_matang/has_name
- ../slots/20260202_matang/has_role
- ../slots/20260202_matang/has_score
- ../slots/20260202_matang/affiliated_with
default_prefix: hc
classes:
Author:
class_uri: schema:Person
description: "Person or organization that authored/created a creative work.\n**PURPOSE**:\nAuthor models the creator(s) of works produced by heritage custodians, such as exhibition catalogs, research publications, finding aids, and reports. Replaces simple string author lists with structured data.\n**ONTOLOGY ALIGNMENT**:\n| Ontology | Class/Property | Usage | |----------|----------------|-------| | **Schema.org** | `schema:Person`, `schema:author` | Primary class and property | | **Dublin Core** | `dcterms:creator` | Creator relationship | | **BIBFRAME** | `bf:Contribution`, `bf:Agent` | Bibliographic contributions | | **FOAF** | `foaf:Person`, `foaf:name` | Personal information | | **RiC-O** | `rico:Agent` | Archival agent modeling |\n**AUTHOR TYPES**:\nAuthors may be: - **Individual persons**: Named authors with affiliations - **Organizations**: Corporate authors (e.g., \"Rijksmuseum Staff\") - **Anonymous**: Works with unknown authorship - **Collective**: Group authorships\n**ROLES**:\n\
Beyond simple \"author\", works may have multiple contributor types: - Author (primary creator) - Editor - Compiler - Translator - Illustrator - Contributor\n**EXAMPLE**:\n```yaml has_author:\n - has_name: \"Jan de Vries\"\n has_role: AUTHOR\n affiliated_with: \"Rijksmuseum Amsterdam\"\n - has_name: \"Maria van Dijk\"\n has_role: EDITOR\n```"
exact_mappings:
- schema:Person
- foaf:Person
close_mappings:
- bf:Agent
- rico:Agent
related_mappings:
- bf:Contribution
- dcterms:creator
slots:
- has_name
- has_role
- affiliated_with
- identified_by
- has_label
- has_description
- has_score
slot_usage:
has_name:
# range: string
required: true
examples:
- value: Jan de Vries
- value: Rijksmuseum Research Department
has_role:
range: AuthorRoleEnum
required: false
ifabsent: string(AUTHOR)
examples:
- value: AUTHOR
- value: EDITOR
affiliated_with:
# range: string
required: false
examples:
- value: Rijksmuseum Amsterdam
- value: Universiteit van Amsterdam
identified_by:
# range: string # uriorcurie
required: false
examples:
- value: https://orcid.org/0000-0001-2345-6789
- value: https://viaf.org/viaf/12345678
comments:
- Author replaces simple string author lists with structured data
- Supports both individual and organizational authors
- Includes roles (author, editor, compiler, etc.)
- Can link to identifier systems (ORCID, VIAF)
see_also:
- https://schema.org/author
- https://schema.org/Person
- http://id.loc.gov/ontologies/bibframe/Contribution
examples:
- value:
has_name: Jan de Vries
has_role: AUTHOR
affiliated_with: Rijksmuseum Amsterdam
identified_by: https://orcid.org/0000-0001-2345-6789
- value:
has_name: Maria van Dijk
has_role: EDITOR
- value:
has_name: Rijksmuseum Research Department
has_role: AUTHOR
annotations:
specificity_score: 0.35
specificity_rationale: Authorship is broadly useful for creative/documentary works.
custodian_types: "['*']"