- Updated WorldCatIdentifier.yaml to remove unnecessary description and ensure consistent formatting. - Enhanced WorldHeritageSite.yaml by breaking long description into multiple lines for better readability and removed unused attributes. - Simplified WritingSystem.yaml by removing redundant attributes and ensuring consistent formatting. - Cleaned up XPathScore.yaml by removing unnecessary attributes and ensuring consistent formatting. - Improved YoutubeChannel.yaml by breaking long description into multiple lines for better readability. - Enhanced YoutubeEnrichment.yaml by breaking long description into multiple lines for better readability. - Updated YoutubeVideo.yaml to break long description into multiple lines and removed legacy field name. - Refined has_or_had_affiliation.yaml by removing unnecessary comments and ensuring clarity. - Cleaned up is_or_was_retrieved_at.yaml by removing unnecessary comments and ensuring clarity. - Added rules for generic slots and avoiding rough edits in schema files to maintain structural integrity. - Introduced changes_or_changed_through.yaml to define a new slot for linking entities to change events.
127 lines
3.5 KiB
YAML
127 lines
3.5 KiB
YAML
id: https://nde.nl/ontology/hc/class/CommissionRate
|
|
name: commission_rate_class
|
|
title: Commission Rate Class
|
|
|
|
prefixes:
|
|
linkml: https://w3id.org/linkml/
|
|
hc: https://nde.nl/ontology/hc/
|
|
schema: http://schema.org/
|
|
|
|
imports:
|
|
- linkml:types
|
|
- ../metadata
|
|
- ../slots/has_or_had_percentage
|
|
- ./Percentage
|
|
default_prefix: hc
|
|
|
|
classes:
|
|
CommissionRate:
|
|
class_uri: hc:CommissionRate
|
|
description: |
|
|
Structured representation of a commission rate.
|
|
|
|
**PURPOSE**:
|
|
|
|
Models commission percentages with context (market type,
|
|
rate type) replacing simple string representation.
|
|
|
|
**DESIGN RATIONALE**:
|
|
|
|
Created per slot_fixes.yaml migration from `commission_rate` string
|
|
to structured representation with Percentage class.
|
|
|
|
**ART MARKET STANDARDS**:
|
|
|
|
- **Primary market**: 40-50% standard (gallery takes half)
|
|
- **Secondary market**: 10-20% (resale commission)
|
|
- **Auction**: 10-25% buyer's premium + seller's commission
|
|
|
|
**EXAMPLE**:
|
|
|
|
```yaml
|
|
takes_or_took_comission:
|
|
rate_type: "primary_market"
|
|
has_or_had_percentage:
|
|
percentage_value: 50
|
|
percentage_display: "50%"
|
|
```
|
|
|
|
close_mappings:
|
|
- schema:PriceSpecification
|
|
|
|
slots:
|
|
- has_or_had_percentage
|
|
|
|
attributes:
|
|
rate_type:
|
|
description: |
|
|
Type of commission rate.
|
|
range: string
|
|
required: false
|
|
examples:
|
|
- value: "primary_market"
|
|
description: Commission on first sale
|
|
- value: "secondary_market"
|
|
description: Commission on resale
|
|
- value: "auction_buyers_premium"
|
|
description: Auction house buyer's premium
|
|
- value: "auction_sellers_commission"
|
|
description: Auction house seller's commission
|
|
|
|
rate_description:
|
|
description: |
|
|
Human-readable description of the commission structure.
|
|
range: string
|
|
required: false
|
|
examples:
|
|
- value: "Standard 50/50 split between gallery and artist"
|
|
description: Primary market explanation
|
|
- value: "Sliding scale based on sale price"
|
|
description: Variable commission description
|
|
|
|
effective_date:
|
|
description: |
|
|
When this commission rate became effective.
|
|
range: date
|
|
required: false
|
|
|
|
applies_to:
|
|
description: |
|
|
What this commission rate applies to.
|
|
range: string
|
|
required: false
|
|
examples:
|
|
- value: "All represented artists"
|
|
description: Gallery-wide rate
|
|
- value: "Works over €10,000"
|
|
description: Price-based rate
|
|
|
|
slot_usage:
|
|
has_or_had_percentage:
|
|
range: Percentage
|
|
inlined: true
|
|
required: true
|
|
examples:
|
|
- value:
|
|
examples:
|
|
- value:
|
|
has_or_had_percentage:
|
|
- value:
|
|
has_or_had_percentage:
|
|
- value:
|
|
has_or_had_percentage:
|
|
comments:
|
|
- Created 2026-01-22 from commission_rate migration (Rule 53)
|
|
- Provides structured commission representation
|
|
- Supports art market commission conventions
|
|
|
|
see_also:
|
|
- https://schema.org/PriceSpecification
|
|
|
|
annotations:
|
|
custodian_types: '["G", "C"]'
|
|
custodian_types_rationale: >-
|
|
Primarily for galleries (G) and commercial organizations (C).
|
|
specificity_score: "0.80"
|
|
specificity_rationale: >-
|
|
Specific to commercial sales commission context.
|