Re: A predicate that indicates order

On 2014-02 -24, at 18:55, Melvin Carvalho <melvincarvalho@gmail.com> wrote:

> I'm looking for a predicate that will indicate the order in a sequence that a subject belongs to.
> 
> <transaction1> <hasNumber> 1.
> 
> <transaction2> <hasNumber> 2.
> 
> <transaction3> <hasNumber> 3.
> 
> I'm not sure I really want to be using rdf : Seq in this case
> 
> Anyone know of something like this, or should I just use "label" ?

I have used   http://www.w3.org/ns/ui#sequence    for exactly that purpose. 

These is no domain restriction for what it is used on.

e.g like in parts of a form:

ui:FormForm
    dc:title
       "Form for editing Forms";
    a    ui:Form, ui:Group;
    ui:part
        ui:FieldList,
           [ a ui:Heading; ui:contents "Edit Form"@en; ui:sequence 1 ],
            [ a    ui:SingleLineTextField;
            ui:property
               dc:title;
            ui:sequence
               2;
            ui:size
               60 ],
            [ a    ui:Comment;
            ui:contents
                """To add a field to the form, press the blue plus at the bottom,
        and then select what sort of field you want."""@en;
            ui:sequence
               3;
            ui:style
               "background-color: #ffe;" ].

Received on Wednesday, 26 February 2014 02:52:48 UTC