Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add shipment, vehicle and related properties to logistic use-case #169

Merged
merged 12 commits into from
Jan 9, 2025
35 changes: 33 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,49 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

### Import

#### Class
- https://schema.org/OpeningHoursSpecification

#### DataProperty
- https://schema.org/opens
- https://schema.org/closes
- https://schema.org/dayOfWeek

#### DataTypes
- https://schema.org/DayOfWeek

### Added

#### Class
- Shipment, subClassOf DFC_BusinessOntology_Relation
- Vehicle, subClassOf What_Subject

#### Property
- hasVariant, domain: DefinedProduct, inverseOf: isVariantOf
- isVariantOf, domain: DefinedProduct, inverseOf : hasVariant
- isOpenDuring, domain : PhysicalPlace, range : OpeningHoursSpecification
- isAvailableDuring, domain : Vehicle, range : OpeningHoursSpecification
- basedAt, domain : Vehicle, range : PhysicalPlace
- transportedBy, domain : Stock, inverseOf : transports
- transports, domain : Shipment, inverseOf : transportedBy
- startsAt, domain : Shipment, range : PhysicalPlace
- endsAt, domain : Shipment, range : PhysicalPlace
- ships, domain : Vehicle, inverseOf : isShippedIn
- isShippedIn, domain : Shipment, inverseOf : ships

### Deleted

#### Property
- quantity

### Changed
- Domain : hasQuantity, (DefinedProduct | Ingredient | OrderLine) -> (ConsumptionFlow | DefinedProduct | Ingredient | LocalizedProduct | OrderLine | PhysicalProduct | ProductionFlow | SaleSession | ShippingOption | Stock | Transaction)
- Domain : hasQuantity, (DefinedProduct | Ingredient | OrderLine) -> (ConsumptionFlow | DefinedProduct | Ingredient | LocalizedProduct | OrderLine | PhysicalProduct | ProductionFlow | SaleSession | ShippingOption | Stock | Transaction | Vehicle)
- Domain : beginDate, (AsPlannedLocalTransformation | AsRealizedTransformation | SaleSession | Shipping option) -> (AsPlannedLocalTransformation | AsRealizedTransformation | SaleSession | Shipment | Shipping option)
- Domain : endDate, (AsPlannedLocalTransformation | AsRealizedTransformation | SaleSession | Shipping option) -> (AsPlannedLocalTransformation | AsRealizedTransformation | SaleSession | Shipment | Shipping option)


## [1.14.0] - 2024-11-13
### Added
Expand Down Expand Up @@ -373,7 +403,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Brand as a Facet.

[unreleased]: https://github.com/datafoodconsortium/ontology/compare/v1.14.0...master
[unreleased]: https://github.com/datafoodconsortium/ontology/compare/v1.15.0...master
[1.15.0]: https://github.com/datafoodconsortium/ontology/compare/v1.14.0...1.15.0
[1.14.0]: https://github.com/datafoodconsortium/ontology/compare/v1.13.0...1.14.0
[1.13.0]: https://github.com/datafoodconsortium/ontology/compare/v1.12.1...1.13.0
[1.12.1]: https://github.com/datafoodconsortium/ontology/compare/v1.12.0...v1.12.1
Expand Down
Loading