Re: Collection/Container design - AS, Hydra, LDP, SIOC, ...

On 11/09/2014 02:35 AM, Owen Shepherd wrote:
>> ☮ elf Pavlik ☮ <mailto:perpetual-tripper@wwelves.org>
>> 09 November 2014 01:23
>> 1. Not sure if you wanted to send it just to or simply missed cc list
>> 2. If you put collection directly as values of follows you will get some
>> undesired consequences in RDF!
>>
>> * https://github.com/HydraCG/Specifications/issues/33
>> * https://github.com/HydraCG/Specifications/issues/41
>
> This problem doesn't apply to AS because we don't use "AS:follows"
> properties or similar

i think i don't understand what you meant in sentence above!

if you go with

{
 "@id": "https://wwelves.org/perpetual-tripper",
 "@type": "as:Person",
 "follows": {
    "@id": "https://wwelves.org/perpetual-tripper/follows",
    "@type": "as:Collection",
    "memberTypes": "as:Actor",
    "totalItems": 23,
    "items": [
       "http://owenshepherd.net",
       "https://e14n.com/evan",
       ...
    ]
 }
}

it doesn't mean

@prefix ap: <http://www.w3.org/ns/activitypump#>.

<https://wwelevs.org/perpetual-tripper>
                  ap:follows <https://e14n.com/evan>;
                  ap:follows <http://owenshepherd.net> .

but instead

<https://wwelevs.org/perpetual-tripper>
            ap:follows <https://wwelves.org/perpetual-tripper/follows> .

which IMO doesn't make much of a sense!

what do you think about approach captured in hydra:Collection?
https://www.w3.org/community/hydra/wiki/Collection_Design

Received on Sunday, 9 November 2014 01:55:19 UTC