@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#> .

# One entity switched off on purpose, one switched on and blocked.

ex:someHold a adel:ServingHold ;
    adel:holdKind adel:allowanceExhaustedHold ; adel:originatingResource ex:campaign1 .

ex:wantedButBlocked a adel:DeliveryState ; rdfs:label "wantedButBlocked" ;
    adel:stateOf ex:ad1 ; adel:intendedDelivery adel:intendToRun ;
    adel:observedServing adel:notServing ; adel:lifecycleStanding adel:liveEntity ;
    adel:heldBy ex:someHold .

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