This is a vocabulary for messages that access and manipulate properties. It can be used as a dynamic control interface for plugins, or anything else with a property-based model.

The key underlying concept here is to control things by manipulating arbitrary properties, rather than by calling application-specific methods. This allows implementations to understand what messages do (at least in a mechanical sense), which makes things like caching, proxying, or undo relatively straightforward to implement. Note, however, that this is only conceptual: there is no requirement to implement a general property store. Typically, a plugin will understand a fixed set of properties that represent its parameters or other internal state, and ignore everything else.

This protocol is syntax-agnostic, and homoiconic in the sense that the messages use the same format as the data they manipulate. In particular, messages can be serialised as a binary Object for realtime plugin control, or as Turtle for saving to a file, sending over a network, printing for debugging purposes, and so on.

This specification only defines a semantic protocol, there is no corresponding API. It can be used with the Atom extension to control plugins which support message-based parameters as defined by the Parameters extension.

For example, if a plugin defines a eg:volume parameter, it can be controlled by the host by sending a Set message to the plugin instance:

[
    a patch:Set ;
    patch:property eg:volume ;
    patch:value 11.0 ;
]

Similarly, the host could get the current value for this parameter by sending a Get message:

[
    a patch:Get ;
    patch:property eg:volume ;
]

The plugin would then respond with the same Set message as above. In this case, the plugin instance is implicitly the subject, but a specific subject can also be given for deeper control.

Index

ClassesPropertiesInstances

Classes

Ack

Class
LabelAck
Subclass ofResponse

An acknowledgement that a request was successful.

Copy

Class
LabelCopy
Subclass ofRequest

A request to copy the subject to the destination.

After this, the destination has the same description as the subject, and the subject is unchanged.

It is an error if the subject does not exist, or if the destination already exists.

Multiple subjects may be given if the destination is a container, but the semantics of this case are application-defined.

Restriction on subject
owl:minCardinality 1
Restriction on destination
owl:cardinality 1

Delete

Class
LabelDelete
Subclass ofRequest

Request that the subject or subjects be deleted.

Error

Class
LabelError
Subclass ofResponse

A response indicating an error processing a request.

Get

Class
LabelGet
Subclass ofRequest

A request for a description of the subject.

If a property is given, then the receiver should respond with a Set message that gives only that property.

Otherwise, it should respond with a concise bounded description in a Put message, that is, a description that recursively includes any blank node values.

If a subject is given, then the response should have the same subject. If no subject is given, then the receiver is implicitly the subject.

If a request node or a sequenceNumber is given, then the response should be a Response and have the same property. If neither is given, then the receiver can respond with a simple Put message. For example:

[]
    a patch:Get ;
    patch:subject eg:something .

Could result in:

[]
    a patch:Put ;
    patch:subject eg:something ;
    patch:body [
        eg:name "Something" ;
        eg:ratio 1.6180339887 ;
    ] .

Insert

Class
LabelInsert
Subclass ofRequest

A request to insert a body into the subject.

If the subject does not exist, it is created. If the subject does already exist, it is added to.

This request only adds properties, it never removes them. The user must take care that multiple values are not set for properties which should only have one.

Restriction on subject
owl:cardinality 1

Message

Class
LabelPatch Message
Superclass ofRequest
Response
In domain ofbody
context
destination
property
sequenceNumber
subject

A patch message.

This is an abstract base class for all patch messages. Concrete messages are either a Request or a Response.

Move

Class
LabelMove
Subclass ofRequest

A request to move the subject to the destination.

After this, the destination has the description that the subject had, and the subject no longer exists.

It is an error if the subject does not exist, or if the destination already exists.

Restriction on subject
owl:cardinality 1
Restriction on destination
owl:cardinality 1

Patch

Class
LabelPatch
Subclass ofRequest
In domain ofadd
remove

A request to add and/or remove properties of the subject.

This method always has at least one subject, and exactly one add and remove property. The value of add and remove are nodes which have the properties to add or remove from the subject(s), respectively. The special value wildcard may be used as the value of a remove property to remove all properties with the given predicate. For example:

[]
    a patch:Patch ;
    patch:subject <something> ;
    patch:add [
        eg:name "New name" ;
        eg:age 42 ;
    ] ;
    patch:remove [
        eg:name "Old name" ;
        eg:age patch:wildcard ;  # Remove all old eg:age properties
    ] .
Restriction on subject
owl:minCardinality 1
Restriction on add
owl:cardinality 1
Restriction on remove
owl:cardinality 1

Put

Class
LabelPut
Subclass ofRequest

A request to put the body as the subject.

If the subject does not already exist, it is created. If the subject does already exist, the body is considered an updated version of it, and the previous version is replaced.

[]
    a patch:Put ;
    patch:subject <something> ;
    patch:body [
        eg:name "New name" ;
        eg:age 42 ;
    ] .
Restriction on subject
owl:cardinality 1

Request

Class
LabelRequest
Subclass ofMessage
Superclass ofCopy
Delete
Get
Insert
Move
Patch
Put
Set
In domain ofaccept
In range ofrequest

A patch request message.

A request may have a subject property, which specifies the resource that the request applies to. The subject may be omitted in contexts where it is implicit, for example if the recipient is the subject.

Response

Class
LabelResponse
Subclass ofMessage
Superclass ofAck
Error
In domain ofrequest

A response to a Request.

Set

Class
LabelSet
Subclass ofRequest
In domain ofvalue

A compact request to set a property to a value.

This is equivalent to a Patch which removes all pre-existing values for the property before setting the new value. For example:

[]
    a patch:Set ;
    patch:subject <something> ;
    patch:property eg:name ;
    patch:value "New name" .

Which is equivalent to:

[]
    a patch:Patch ;
    patch:subject <something> ;
    patch:add [
        eg:name "New name" ;
    ] ;
    patch:remove [
        eg:name patch:wildcard ;
    ] .
Restriction on property
owl:cardinality 1
Restriction on value
owl:cardinality 1

Properties

accept

Property
Labelaccept
DomainRequest
Rangerdfs:Class
TypeObject Property

An accepted type for a response.

add

Property
Labeladd
DomainPatch
Rangerdfs:Resource
TypeObject Property

The properties to add to the subject.

body

Property
Labelbody
DomainMessage
TypeObject Property

The body of a message.

The details of this property's value depend on the type of message it is a part of.

context

Property
Labelcontext
DomainMessage
TypeObject Property

The context of properties in this message.

For example, a plugin may have a special context for ephemeral properties which are only relevant during the lifetime of the instance and should not be saved in state.

The specific uses for contexts are application specific. However, the context MUST be a URI, and can be interpreted as the ID of a data model where properties should be stored. Implementations MAY have special support for contexts, for example by storing in a quad store or serializing to a format that supports multiple RDF graphs such as TriG.

destination

Property
Labeldestination
DomainMessage
TypeObject Property

The destination to move the subject to.

property

Property
Labelproperty
DomainMessage
Rangerdf:Property
TypeObject Property

The property for a Set or Get message.

readable

Property
Labelreadable
Rangerdf:Property
TypeObject Property

A property that can be read with a Get message.

See the similar writable property for details.

remove

Property
Labelremove
DomainPatch
Rangerdfs:Resource
TypeObject Property

The properties to remove from the subject.

request

Property
Labelrequest
DomainResponse
RangeRequest
TypeObject Property

The request this is a response to.

This can be used if referring directly to the URI or blank node ID of the request is possible. Otherwise, use sequenceNumber.

sequenceNumber

Property
Labelsequence number
DomainMessage
Rangexsd:int
TypeDatatype Property

The sequence number of a request or response.

This property is used to associate replies with requests when it is not feasible to refer to request URIs with request. A Response with a given sequence number is the reply to the previously send Request with the same sequence number.

The special sequence number 0 means that no reply is desired.

subject

Property
Labelsubject
DomainMessage
TypeObject Property

The subject this message applies to.

value

Property
Labelvalue
DomainSet

The value of a property in a Set message.

writable

Property
Labelwritable
Rangerdf:Property
TypeObject Property

A property that can be set with a Set or Patch message.

This is used to list properties that can be changed, for example to allow user interfaces to present appropriate controls. For example:

@prefix eg:   <http://example.org/> .
@prefix rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .

eg:title
    a rdf:Property ;
    rdfs:label "title" ;
    rdfs:range xsd:string .

eg:plugin
    patch:writable eg:title .

Instances

wildcard

Instance
Labelwildcard
Typeowl:Thing

A wildcard that matches any resource.

This makes it possible to describe the removal of all values for a given property.