BASE
PREFIX schema:
PREFIX gcs:
PREFIX dcterms:
CONSTRUCT {
?_subject
a schema:Person;
dcterms:title "Malcolm Sparks: founder profile";
dcterms:description ?publicBio;
schema:name ?name;
schema:jobTitle ?jobTitle;
schema:description ?publicBio;
schema:image ?image.
?image
schema:contentUrl "/media/people/malcolm-sparks/profile.jpg";
schema:description ?imageAltText.
}
WHERE {
BIND( AS ?publicProfileResource)
BIND(IRI(CONCAT(STR(?_subject), "#profile-image")) AS ?image)
BIND("Malcolm Sparks speaker profile image" AS ?imageAltText)
GRAPH {
?publicProfileResource a schema:Person;
schema:name ?name;
schema:jobTitle ?jobTitle;
schema:description ?publicBio.
}
}