@prefix oslc: . @prefix oslc_auto: . @prefix rdf: . @prefix dcterms: . @prefix http: . @prefix http-methods: . @base . a oslc:Action, oslc_auto:TearDownAction ; dcterms:description "Tear down execution environment #2314" ; dcterms:title "STOP 2314" ; # Alternative: Naked POST oslc:binding [ a http:Request ; http:mthd http-methods:POST ; http:requestURI ; http:httpVersion "1.1" ; http:body rdf:nil ; oslc:finalStatusLocation http:StatusCode ; ] ; # Alternative: Automation Request oslc:binding [ a http:Request ; http:mthd http-methods:POST ; http:requestURI ; http:httpVersion "1.1" ; http:body [ a oslc_auto:AutomationRequest ; dcterms:title "STOP 2314" ; oslc_auto:executesAutomationPlan ; # Server can hide resource ID/URI within (opaque to client) URI ]; oslc:finalStatusLocation oslc_auto:AutomationResult ; ] ; .