Title: Bill Of Material Ontology
Description: Ontology for bills of material.
Creator: @drcgjung
Contributor: @obalandi
Date: 2023-09-08
Version: 0.11.0
Imports: file:common_ontology.ttl , file:core_ontology.ttl
Link to ontology: https://w3id.org/catenax/ontology/bill-of-material
classDiagram
class BillOfMaterial~bill-of-material~{
quantityMeasure float
quantityUnit string
validityPeriodEnd date
validityPeriodStart date
}
class BusinessPartner~common~{
}
class ConceptualObject~core~{
}
class PhysicalObject~core~{
}
BillOfMaterial --> BusinessPartner : assembler
BillOfMaterial --> PhysicalObject : assembly
BillOfMaterial --> ConceptualObject : assemblyConcept
BillOfMaterial --> PhysicalObject : component
BillOfMaterial --> ConceptualObject : concept
PhysicalObject --> BillOfMaterial : hasBom
BillOfMaterial --> BusinessPartner : supplier
BillOfMaterial --|> ConceptualObject
Name | Description | Datatype properties | Object properties | Subclass of |
---|---|---|---|---|
BillOfMaterial | The Bill Of Material relates qualitatively and quantitatively Assembly Parts to their Components. | quantity , quantityMeasure , quantityUnit , validityPeriod , validityPeriodEnd , validityPeriodStart | assembler , assembly , assemblyConcept , component , concept , supplier | ConceptualObject |
Name | Description | Domain | Range | Subproperty of |
---|---|---|---|---|
quantity | Describes the quantity of the BOM. | BillOfMaterial | ||
quantityMeasure | The measure of quantity that a component contributes to an assymbly in a bill of material . | BillOfMaterial | xsd:float | quantity |
quantityUnit | The unit of quantity that a component contributes to an assymbly in a bill of material . | BillOfMaterial | xsd:string | quantity |
validityPeriod | Describes the validity period. | BillOfMaterial | ||
validityPeriodEnd | The end of validity. | BillOfMaterial | xsd:date | validityPeriod |
validityPeriodStart | The start of validity. | BillOfMaterial | xsd:date | validityPeriod |
Name | Descriptions | Domain | Range | Subproperty of |
---|---|---|---|---|
assembler | The assembler of the assembly. | BillOfMaterial | BusinessPartner | |
assembly | Refers the assembly of a bill of material. | BillOfMaterial | PhysicalObject | |
assemblyConcept | Refers the assembly concept of a bill of material. | BillOfMaterial | ConceptualObject | |
component | Lists the components of a bill of material. | BillOfMaterial | PhysicalObject | |
concept | Lists the concepts of a bill of material. | BillOfMaterial | ConceptualObject | |
hasBom | Refers the bill of material of an assembly. | PhysicalObject | BillOfMaterial | |
supplier | The supplier of the component(s). | BillOfMaterial | BusinessPartner |