État de l'activité « web sémantique » au W3C

SemWeb.Pro 2024-11-21

Pierre-Antoine Champin

https://champin.net/2024/semwebpro/

Pierre-Antoine Champin

W3C

Bilan de l'année écoulée

Écosystème Data and Knowledge

Linked Web Storage WG

Linked Web Storage WG

A user interacts with an application provider, which includes application logic, authentication, access control and storage
Application web actuelle
Graphismes: Coco Material

Linked Web Storage WG

A user interacts with an application provider, which includes application logic, access control and storage. The user and the application provider also interact with one or several identity providers, which provide(s) authentication. But the choice of the identity provider
Application web actuelle (identité fédérée)
Graphismes: Coco Material

Linked Web Storage WG

A user interacts with a collection of application providers (providing application logic), identity providers (providing authentication), authorization agents (providing access control) and storage providers (providing storage). These components also interact with each other. The user controls the choice of each component.
Applications web avec LWS
Graphismes: Coco Material

RDF-star WG

Data Shapes WG

Charte soumise au vote.

Spatial Data on the Web WG

Groupe conjoint avec OGC, nouvelle charte soumise au vote.

Dataset Exchange WG

The PROV-JSONLD Serialization

Dataspaces CG

RDF Rust Common Crates CG

CRDT for RDF CG

Merci de votre attention

https://champin.net/2024/semwebpro/ Contrat Creative Commons

Annexe: RDF-star (1)

<< :Alice :name "Alice" >> a :Claim;
    :author :Bob.
<< :Alice :name "Alice" >> a :Rebuttal;
    :author :Charlie.
    

_:b1 rdf:reifies <<( :Alice :name "Alice" )>>;
    a :Claim; :author :Bob.
_:b2 rdf:reifies <<( :Alice :name "Alice" )>>;
    a :Rebuttal; :author :Charlie.
    

Annexe: RDF-star (2)

<< :Alice :name "Alice" ~ :c1 >> a :Claim;
    :author :Bob.
<< :Alice :name "Alice" ~ _:r1 >> a :Rebuttal;
    :author :Charlie; :responseTo :c1.
    

:c1 rdf:reifies <<( :Alice :name "Alice" )>>;
    a :Claim; :author :Bob.
_:r1 rdf:reifies <<( :Alice :name "Alice" )>>;
    a :Rebuttal; :author :Charlie; :reponseTo :c1.