- markup (76)
- xml (11)
- xslt (23)
- pipelines (8)
- atom (9)
- overlapping markup (6)
- schema (11)
- creole (5)
- dtll (1)
- xforms (1)
- xpath (1)
- xquery (2)
- coding (2)
- datagovuk (1)
- genealogy (4)
- hardware (1)
- linked data (16)
- modelling (1)
- named graphs (1)
- opendata (1)
- provenance (1)
- psi (3)
- skos (1)
- sparql (4)
- Talis (7)
- unicode (1)
- uri (4)
- versioning (1)
- visualisation (6)
- web (78)
- google (4)
- html5 (5)
- jQuery (2)
- rdf (46)
- ontologies (2)
- rdfa (8)
- rdfQuery (5)
- rest (6)
- wikis (1)
- work (3)
- legislation (2)
- xmlsummerschool09 (2)
- life (28)
- children (5)
- equality (6)
- gtd (1)
- environment (4)
- gadgets (5)
- software (3)
- xlinq (2)
- conferences (11)
- ukgc09 (1)
- xtech (9)
- xtech2008 (3)
- blog (8)
- drupal (3)
Re: Your Website is Your API: Quick Wins for Government Data
Thanks for the questions.
The problem with URNs (meaning universal resource names as opposed to the unique reference numbers used for schools as described in the post) is that they aren’t resolvable. You can’t plug a URN into a browser to find out more about whatever resource is named by the URN.
http://www.companieshouse.co.uk/id/company/00445790really is (I assert!) an identifier for the company, and should be used to mean the company as opposed to particular information about the company. But when you request it, you should get redirected to some information about the company (the document URI), and that is a particular view.If I make up a set of other identifier URIs for companies (as we’ve done at
http://www.gazettes-online.co.uk/id/proxy/company/{companyNumber}) then I can assert separately that my identifier URIs mean the same thing as the better or more official identifier URIs provided by companies house.All the URIs should be hackable. Continuing the example of what Companies House might do, the identifier URI
http://www.companieshouse.co.uk/id/company/00445790might redirect (via303 See Other) tohttp://www.companieshouse.co.uk/company/00445790(note that the/idpart of the path is now gone). The response to this depends on the client doing the requesting:http://www.companieshouse.co.uk/company/00445790.htm.http://www.companieshouse.co.uk/company/00445790.feed.http://www.companieshouse.co.uk/company/00445790.rdf.The representations themselves should have links to other representations. The HTML page in particular should contain links in the
<head>that crawlers can pick up:and may also contain explicit links in the content of the page so that humans can use them.
The point is that each of these representations is actually a different representation of the same set of information. The document URI is the URI that identifies the information; the representation URIs are URIs that identify different formats for that same information.
Hope that makes sense?