@prefix adel: <https://ontology.inferal.com/modules/advertising-delivery-state/> .
@prefix ex: <https://example.com/advertising-delivery-state/query/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .

# Two entities the advertiser switched off: one live and restartable, one
# archived. A single status field reports them identically.

ex:pausedLive a adel:DeliveryState ; rdfs:label "pausedLive" ;
    adel:stateOf ex:ad1 ; adel:intendedDelivery adel:intendToHold ;
    adel:observedServing adel:notServing ; adel:lifecycleStanding adel:liveEntity .

ex:pausedArchived a adel:DeliveryState ; rdfs:label "pausedArchived" ;
    adel:stateOf ex:ad2 ; adel:intendedDelivery adel:intendToHold ;
    adel:observedServing adel:notServing ; adel:lifecycleStanding adel:archivedEntity .
