-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create JSON-LD context for BOT #85
Comments
Does this work for you ?
|
@maximelefrancois86 {
"@context": {
"bot": "https://w3id.org/bot#",
"schema": "http://schema.org/",
"Site" : "bot:Site",
"Place" : "schema:Place",
"Building" : "bot:Building",
"name": {
"@id": "schema:name",
"@container": "@language"
},
"address": "schema:address"
},
"@graph": [
{
"@id": "http://dtu.com/locations/LyngbyCampus",
"@type": ["Place", "Site"],
"name": {
"da": "DTU Lyngby Campus",
"en": "DTU Lyngby Campus"
},
"address": "Anker Engelunds Vej 1, 2800 Kongens Lyngby",
"hasBuilding": "http://dtu.com/locations/LyngbyCampus/Building118"
},
{
"@id": "http://dtu.com/locations/LyngbyCampus/Building118",
"@type": "Building",
"name": {
"da": "Bygning 118",
"en": "Building 118"
}
}
]
} |
Or for those who have their own internal keys that they wish to map to bot: {
"@context": {
"@vocab": "https://w3id.org/bot#",
"site_building": {
"@id": "hasBuilding",
"@type": "@id"
}
},
"@id": "http://dtu.com/locations/LyngbyCampus",
"@type": "Site",
"site_building": [
"http://dtu.com/locations/LyngbyCampus/Building117",
"http://dtu.com/locations/LyngbyCampus/Building118"
]
} |
Do you know a way to contact katja? she volunteered to participate to the discussion |
Actually we can do both ways. We can expose a "standard" jsonld context that people can reuse using its url, and in an informal section we can explain that anyone can create it's own jsonld context to try to map his keys. |
Great your pushing this forward! @maximelefrancois86 I understood Katja can support on BOT docs. |
@opyh: Potentially this could be interesting for you!? How would you need BOT linked to JSON for you Work? |
Adding a ref to the application of JSON-LD with:
both prepared by @devonsparks |
Is the above the "official" bot @context? If so, I'd like to update my notes on bot frames to reflect these @reverse terms. |
Hey Devon! It's been a while. Hope you are doing well. I think it makes sense to publish an official context in this repo and perhaps also some SHACL shapes. |
From the discussion in #82 and inputs received at LDAC 2020, it should be valuable to design a JSON LD context for BOT.
The text was updated successfully, but these errors were encountered: