Listing of my favourite movies

I’m trying to make a list of my favorite movies. I’m using the standard user panel.
I went in the public folder, then i added a Container , and then i’ll add a source that contains the list of my favourite movies ? :thinking:
How can i refer
https://www.wikidata.org/wiki/Q18699754,
https://www.wikidata.org/wiki/Q106316,
https://www.wikidata.org/wiki/Q462;
?
Could someone help me up, please? :slightly_smiling_face:

if you look at the source there are linked data sources with all the data in different formats
turtle
<link rel="alternate" href="https://www.wikidata.org/wiki/Special:EntityData/Q18699754.ttl" type="text/turtle">
rdf xml
<link rel="alternate" href="https://www.wikidata.org/wiki/Special:EntityData/Q18699754.rdf" type="application/rdf+xml">
jsonld
<link rel="alternate" href="https://www.wikidata.org/wiki/Special:EntityData/Q18699754.jsonld" type="application/ld+json">
tha tcould give you a start

@facondini
In your container, create an file my_movies.ttl, use :this as subject, then a predicate & an object…
Something like this

@prefix : <#>.
:this <https://www.w3.org/ns/activitystreams#link> <https://www.wikidata.org/wiki/Q18699754>,
  <https://www.wikidata.org/wiki/Q106316>.

https://spoggy-test.solid.community/public/my_movies.ttl

Thank you @michaud, @Smag0

Your suggestions are very useful to me.
I also found this very interesting example of a collection of Obelisks (but I pretend they are movies)
https://cleopatra.solid.community/public/collections/
Now I’ll try to mix all this information.

I have another question. As a beginner developer reading the solid model I expected to find a single shared standard structure used by all possible social apps.
Instead I noticed that the different apps that create social networks (darcy, DVO, …) each create their own container in the “Public” container.
Is it correct that each social app creates its own container or is work being done to define a common structure?

Yes, I think there is a lot of work going into that in the data interoperability panel

They are working on a specification for ShapeTrees

https://shapetrees.github.io/specification/primer

https://shapetrees.github.io/specification/spec

2 Likes

A standard could be using ActivityPub with outbox & inbox https://github.com/scenaristeur/agora/

I have another question. As a beginner developer reading the solid model I expected to find a single shared standard structure used by all possible social apps.

You hit the nail on the head. This is a problem that I hope to be working on in my free time soon.

3 Likes