glam/schemas/20251121/linkml/modules/classes/ArtSaleService.yaml
kempersc f7bf1cc5ae Refactor schema slots and classes
- Deleted obsolete slot definitions: statement_summary, statement_text, statement_type, status_name, supersede_articles, supersede_condition, supersede_name, temporal_dynamics, total_amount, typical_contents, use_cases, was_acquired_through, was_fetched_at, was_retrieved_at.
- Updated existing slot definitions for states_or_stated to enhance clarity and structure.
- Introduced new classes: Article, ConditionofAccess, FinancialStatementType, MaximumQuantity, Series, Summary, Type, and their respective slots to improve schema organization and usability.
- Added new slots: changes_or_changed_through, has_or_had_condition_of_access, has_or_had_heritage_type, is_or_was_part_of_series, is_or_was_retrieved_at, maximum_of_maximum to capture additional metadata and relationships.
2026-01-30 00:29:31 +01:00

142 lines
4.2 KiB
YAML

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.