This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"http://codeforamerica.org/api/projects/*": { | |
"$": { | |
"@context": { "@vocab": "http://schema.org/" }, | |
"@type": "Code", | |
"@id": {"f:valueof": "api_url"}, | |
"@transform": { | |
"url": { "f:valueof": "code_url" }, | |
"forksCount": [ | |
{ "f:valueof": "github_details" }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@prefix : <http://ns.whocontrolsit.com/#> . | |
@prefix owl: <http://www.w3.org/2002/07/owl#> . | |
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . | |
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | |
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | |
<http://ns.whocontrolsit.com> a owl:Ontology; | |
rdfs:comment "A vocabulary for representing beneficial ownership"@en . | |
:Entity a owl:Class; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"@context": { | |
"@vocab": "http://schema.org/", | |
"mm": "http://ns.metamaps.cc/#", | |
"mmc": "http://metamaps.cc/metacodes/", | |
"permission": { "@type": "@id", "@id": "mm:permission"}, | |
"featured": "mm:featured", | |
"arranged": "mm:arranged" | |
}, | |
"@id": "http://metamaps.cc/maps/1207", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"@context": { | |
"@vocab": "http://schema.org/", | |
"mm": "http://ns.metamaps.cc/#", | |
"mmc": "http://metamaps.cc/metacodes/", | |
"permission": { | |
"@type": "@id", | |
"@id": "mm:permission" | |
}, | |
"featured": "mm:featured", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"@context": { | |
"@vocab": "http://schema.org/", | |
"cco": "http://purl.org/ontology/cco/core#", | |
"id":"@id", | |
"type": "@type", | |
"interest": "cco:interest" | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div vocab="http://schema.org/"> | |
<div about="https://wwelves.org/perpetual-tripper" typeof="Person"> | |
<span property="name">elf Pavlik</span> | |
<ul> | |
<li> | |
<a rel="me" property="sameAs" href="https://twitter.com/elfpavlik">Twitter</a>. | |
</li> | |
</ul> | |
</div> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"@context": "https://w3id.org/credentials/v1", | |
"id": "https://example.com/identities/bob", | |
"type": ["Identity", "Person"], | |
"name": "Bob Bobman", | |
"birthdate": "1985-12-14", | |
"email": "[email protected]", | |
"emailSha512": "ph9dC0z3uy3pfHe2QADhuoFc6Zm9N0wIDmwH0lSs06ZXdsgvueIWK3ZXyZXawxGtkfayU+tFVZDc42J1+w+3FQ==", | |
"achievement": ["https://bigunivertsity.edu/degrees/BA"], | |
"credential": [{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"@id": "https://graph.wwelves.org/6cc66661-9e7a-4ffa-b24d-7443d5bb1716", | |
"@type": ["verb:Read", "as:IntendedActivity"], | |
"rdfs:comment": "read about XMLNS", | |
"as:actor": { | |
"@id": "https://wwelves.org/perpetual-tripper", | |
"@type": ["Elf", "foaf:Person"], | |
"name": "elf Pavlik", | |
"foaf:account": "mailto:[email protected]" | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"@context": "https://w3id.org/kosmos/v1", | |
"@graph": [ | |
{ | |
"@id": "irc://irc.freenode.net/#kosmos", | |
"@type": "ChatChannel", | |
"name": "Kosmos dev chat", | |
"title": "code now Open Source!", | |
"parent_of": [ | |
"https://kosmos.org/irc/freenode/kosmos/2015/06/01", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var Promise = require('promise'); | |
var concat = require('concat-stream'); | |
module.exports = function(fdb) { | |
this.read = function(key){ | |
return new Promise(function(resolve, reject){ | |
var headsCS = concat(function(hashes) { | |
var readCS = concat(function(buffer){ | |
resolve(JSON.parse(buffer.toString())); |