@prefix : <https://ontology.inferal.com/modules/commercial-intelligence/> .
@prefix cpv: <http://data.europa.eu/cpv/cpv/> .
@prefix ex: <https://example.com/commercial-intelligence/> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

ex:acme-robotics
    a prov:Entity ;
    rdfs:label "Acme Robotics" ;
    :primaryActivity ex:warehouse-automation ;
    :hasBusinessActivity ex:warehouse-automation ;
    :servesCustomerSegment ex:enterprise-logistics-operators ;
    :sellsOffering ex:acme-autonomy-platform .

ex:acme-autonomy-platform
    a :Product ;
    rdfs:label "Acme Autonomy Platform" ;
    :offeringDescription "Autonomous warehouse robotics platform for pallet movement, inventory movement, and yard-to-warehouse material handling." ;
    :offeringCategory :RoboticsOffering, :AIEnabledOffering, :PlatformOffering ;
    :offeringClassification
        ex:acme-autonomy-platform-robotics-classification,
        ex:acme-autonomy-platform-cpv-classification ;
    :targetCustomerSegment ex:enterprise-logistics-operators ;
    :useCase ex:pallet-movement-automation ;
    :revenueModel ex:robotics-as-a-service ;
    :source ex:acme-product-page .

ex:acme-autonomy-platform-robotics-classification
    a :OfferingClassification ;
    :classifiedOffering ex:acme-autonomy-platform ;
    :classifiedAs :RoboticsOffering ;
    :classificationScheme :ProductServiceCategoryScheme ;
    :classificationCode "RoboticsOffering" ;
    :classificationRationale "The product page describes an autonomous warehouse robotics platform and robot fleet operations." ;
    :source ex:acme-product-page .

ex:acme-autonomy-platform-cpv-classification
    a :OfferingClassification ;
    :classifiedOffering ex:acme-autonomy-platform ;
    :classifiedAs cpv:42997300 ;
    :classificationScheme <http://data.europa.eu/cpv/cpv> ;
    :classificationCode "42997300" ;
    :classificationRationale "The source describes industrial robots for warehouse automation." ;
    :source ex:acme-product-page .

ex:warehouse-automation
    a :BusinessActivity ;
    rdfs:label "warehouse automation" .

ex:enterprise-logistics-operators
    a :CustomerSegment ;
    rdfs:label "enterprise logistics operators" .

ex:pallet-movement-automation
    a :UseCase ;
    rdfs:label "pallet movement automation" .

ex:robotics-as-a-service
    a :RevenueModel ;
    rdfs:label "robotics-as-a-service subscription" .

ex:acme-product-page
    a prov:Entity ;
    rdfs:label "Acme Robotics product page" .

ex:acme-product-page-retrieval
    a prov:Activity ;
    prov:used ex:acme-product-page ;
    prov:endedAtTime "2026-07-02T00:00:00Z"^^xsd:dateTime .

ex:acme-customer-case-study
    a prov:Entity ;
    rdfs:label "Acme Robotics Northwind Logistics case study" ;
    prov:generatedAtTime "2025-03-15T00:00:00Z"^^xsd:dateTime .

ex:acme-customer-case-study-retrieval
    a prov:Activity ;
    prov:used ex:acme-customer-case-study ;
    prov:endedAtTime "2026-07-02T00:00:00Z"^^xsd:dateTime .

ex:northwind-logistics
    a prov:Entity ;
    rdfs:label "Northwind Logistics" .

ex:northwind-acme-customer-relationship
    a :CustomerRelationship ;
    :seller ex:acme-robotics ;
    :customer ex:northwind-logistics ;
    :purchasedOffering ex:acme-autonomy-platform ;
    :useCase ex:pallet-movement-automation ;
    :validFrom "2025-03-15"^^xsd:date ;
    :source ex:acme-customer-case-study .
