Collecting delightful FSDL linked data

I bumped into the awesome-rdf codeberg repository of Dominik George and interestingly it gathers curated list information as Turtle linked data:

@prefix dc: <http://purl.org/dc/terms/> .
@prefix doap: <http://usefulinc.com/ns/doap#> .
@prefix spdx: <http://spdx.org/licenses/> .

<#pydantic-rdf> a doap:Project ;
  dc:title "pydantic-rdf" ;
  dc:abstract "A Python library that bridges Pydantic V2 models and RDF graphs" ;
  doap:homepage <https://omegaice.github.io/pydantic-rdf/> ;
  doap:repository [ a doap:GitRepository ; doap:browse <https://github.com/Omegaice/pydantic-rdf> ] ;
  doap:programming-language "Python" ;
  spdx:licenseDeclared spdx:MIT .

Where linked data in combination with ActivityPub is a horror show, the example above is where LD shines. Imagine curated lists to be generated from a rich knowledge graph where you can drill into discovering aspects of the FSDL of project entries that are relevant to you.

1 Like