- Introduced `founding_date`, `founding_date_diocese`, and `fr` slots for capturing founding dates and French language text. - Created `collects_or_collected`, `has_or_had_objective`, `has_or_had_percentage`, `has_or_had_place`, `has_or_had_reply`, `has_or_had_web_page`, `is_or_was_acquired_by`, `is_or_was_appreciated`, `is_or_was_founded_through`, `is_or_was_part_of`, `is_or_was_part_of_total`, `start_of_the_start`, `takes_or_took_comission`, and `was_fetched_at` slots to enhance data modeling capabilities. - Each slot includes detailed descriptions, examples, and ontology alignments to ensure clarity and usability. - Migration notes added for slots transitioned from previous definitions to maintain historical context and facilitate understanding of changes.
148 lines
4.5 KiB
YAML
148 lines
4.5 KiB
YAML
# ArtSaleService class
|
|
# Created per slot_fixes.yaml revision for: commission_rate
|
|
#
|
|
# Represents art sales service with commission structure
|
|
# MIGRATION NOTE (2026-01-22): Created as part of commission_rate migration per Rule 53.
|
|
|
|
id: https://nde.nl/ontology/hc/class/ArtSaleService
|
|
name: art_sale_service_class
|
|
title: Art Sale Service Class
|
|
|
|
prefixes:
|
|
linkml: https://w3id.org/linkml/
|
|
hc: https://nde.nl/ontology/hc/
|
|
schema: http://schema.org/
|
|
|
|
imports:
|
|
- linkml:types
|
|
- ../metadata
|
|
- ./Service
|
|
- ../slots/takes_or_took_comission
|
|
- ./CommissionRate
|
|
|
|
default_prefix: hc
|
|
|
|
classes:
|
|
ArtSaleService:
|
|
is_a: Service
|
|
class_uri: hc:ArtSaleService
|
|
description: |
|
|
Service for selling artworks, typically offered by commercial galleries.
|
|
|
|
**PURPOSE**:
|
|
|
|
Models art sales activities including commission structures,
|
|
market type (primary/secondary), and artist representation.
|
|
|
|
**DESIGN RATIONALE**:
|
|
|
|
Created per slot_fixes.yaml migration from `commission_rate` string
|
|
to structured `has_or_had_service` + `ArtSaleService` with nested
|
|
commission details.
|
|
|
|
**USE CASES**:
|
|
|
|
- Commercial gallery primary market sales (representing artists)
|
|
- Secondary market resales (consignment)
|
|
- Auction house sales (different commission model)
|
|
|
|
**MARKET TYPES**:
|
|
|
|
- **Primary market**: First sale of artwork by artist (40-50% commission)
|
|
- **Secondary market**: Resale of previously sold works (10-20% commission)
|
|
|
|
close_mappings:
|
|
- schema:SellAction
|
|
- schema:Service
|
|
|
|
slots:
|
|
- takes_or_took_comission
|
|
|
|
attributes:
|
|
market_type:
|
|
description: |
|
|
Type of art market (primary or secondary).
|
|
range: string
|
|
required: false
|
|
examples:
|
|
- value: "primary"
|
|
description: First sale by artist
|
|
- value: "secondary"
|
|
description: Resale of previously sold work
|
|
|
|
artist_representation:
|
|
description: |
|
|
Whether this service involves exclusive artist representation.
|
|
range: boolean
|
|
required: false
|
|
examples:
|
|
- value: true
|
|
description: Gallery exclusively represents the artist
|
|
- value: false
|
|
description: Consignment or non-exclusive arrangement
|
|
|
|
sales_activity:
|
|
description: |
|
|
Whether active sales are conducted (vs exhibition-only).
|
|
range: boolean
|
|
required: true
|
|
examples:
|
|
- value: true
|
|
description: Active artwork sales
|
|
- value: false
|
|
description: Exhibition only, no sales
|
|
|
|
slot_usage:
|
|
takes_or_took_comission:
|
|
description: |
|
|
Commission structure for this art sales service.
|
|
range: CommissionRate
|
|
inlined: true
|
|
required: false
|
|
examples:
|
|
- value:
|
|
rate_type: "primary_market"
|
|
has_or_had_percentage:
|
|
percentage_value: 50
|
|
description: Standard 50% primary market commission
|
|
|
|
examples:
|
|
- value:
|
|
service_name: "Primary Market Sales"
|
|
market_type: "primary"
|
|
artist_representation: true
|
|
sales_activity: true
|
|
takes_or_took_comission:
|
|
rate_type: "primary_market"
|
|
has_or_had_percentage:
|
|
percentage_value: 50
|
|
percentage_display: "50%"
|
|
description: Commercial gallery with 50% primary market commission
|
|
|
|
- value:
|
|
service_name: "Consignment Sales"
|
|
market_type: "secondary"
|
|
artist_representation: false
|
|
sales_activity: true
|
|
takes_or_took_comission:
|
|
rate_type: "secondary_market"
|
|
has_or_had_percentage:
|
|
percentage_value: 15
|
|
percentage_display: "10-20%"
|
|
description: Secondary market consignment with variable commission
|
|
|
|
comments:
|
|
- Created 2026-01-22 from commission_rate migration (Rule 53)
|
|
- Extends Service class for art sales context
|
|
- Supports primary and secondary market distinctions
|
|
|
|
see_also:
|
|
- https://schema.org/SellAction
|
|
|
|
annotations:
|
|
custodian_types: '["G", "C"]'
|
|
custodian_types_rationale: >-
|
|
Primarily for galleries (G) and commercial organizations (C).
|
|
specificity_score: "0.75"
|
|
specificity_rationale: >-
|
|
Specific to commercial art sales context.
|