Last active
August 29, 2015 14:14
-
-
Save jmatsushita/406c2d9e31a7e4394af7 to your computer and use it in GitHub Desktop.
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": { | |
"name": "https://openintegrity.org/ns", | |
"entry": "https://openintegrity.org/ns/entry", | |
"platform": "https://openintegrity.org/ns/platform", | |
"score": "https://openintegrity.org/ns/score", | |
"policy": { | |
"@id":"https://openintegrity.org/ns/policy", | |
"@type": "https://openintegrity.org/ns/score/value" | |
}, | |
"security": { | |
"@id":"https://openintegrity.org/ns/security", | |
"@type": "https://openintegrity.org/ns/score/value" | |
}, | |
"privacy": { | |
"@id":"https://openintegrity.org/ns/privacy", | |
"@type": "https://openintegrity.org/ns/score/value" | |
}, | |
"evidences": { | |
"@id":"https://openintegrity.org/ns/evidences", | |
"@type": "https://openintegrity.org/ns/evidences" | |
}, | |
"evidence": { | |
"@id": "https://openintegrity.org/ns/evidence", | |
"@type": "https://openintegrity.org/ns/evidence" | |
}, | |
"hasStatus": { | |
"@id": "https://openintegrity.org/ns/status", | |
"@type": "https://openintegrity.org/ns/status/value" | |
}, | |
"hasClaim": { | |
"@id": "https://openintegrity.org/ns/claim", | |
"@type": "https://openintegrity.org/ns/claim/value" | |
}, | |
"submitted": { | |
"@id": "https://openintegrity.org/ns/submitted", | |
"@type": "xsd:datetime" | |
}, | |
"link": "https://openintegrity.org/ns/evidence/link", | |
"notes": "https://openintegrity.org/ns/evidence/notes", | |
"user": { | |
"@id": "https://openintegrity.org/ns/user", | |
"@type": "http://schema.org/Person" | |
} | |
}, | |
"entry": { | |
"@type": "platform", | |
"@id": "https://openintegrity.org/entry/openintegrity", | |
"name": "Open Integrity Index" | |
}, | |
"score": { | |
"policy": "none", | |
"security": "some", | |
"privacy": "none" | |
}, | |
"evidences": [ | |
{ | |
"@type": "evidence", | |
"@id": "https://openintegrity.org/entry/openintegrity#evidence/1", | |
"hasStatus": "supports", | |
"hasClaim": "https://openintegrity.org/criteria/policy/publicly_verifiable/open_source_license", | |
"submitted": "2014-04-30T08:26:06.127Z", | |
"link": "http://example.org/evidence", | |
"notes": "Blah blah", | |
"user": { | |
"@type": "http://schema.org/Person", | |
"http://schema.org/jobTitle": "Professor", | |
"http://schema.org/name": "Jane Doe", | |
"http://schema.org/telephone": "(425) 123-4567", | |
"http://schema.org/url": { | |
"@id": "http://www.janedoe.com" | |
} | |
} | |
}, | |
{ | |
"@type": "evidence", | |
"@id": "https://openintegrity.org/entry/openintegrity#evidence/2", | |
"hasStatus": "oii:negates", | |
"hasClaim": "oii:DET", | |
"submitted": "2014-04-30T08:26:06.127Z", | |
"link": "http://example.org/anotherevidence", | |
"notes": "Blah blah bleh", | |
"user": { | |
"@type": "http://schema.org/Person", | |
"http://schema.org/jobTitle": "Professor", | |
"http://schema.org/name": "Jane Doe", | |
"http://schema.org/telephone": "(425) 123-4567", | |
"http://schema.org/url": { | |
"@id": "http://www.janedoe.com" | |
} | |
} | |
} | |
] | |
} |
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": { | |
"name": "https://openintegrity.org/ns/name", | |
"criteria": "https://openintegrity.org/ns/criteria", | |
"subcriteria": { | |
"@id": "https://openintegrity.org/subcriteria", | |
"@type": "https://openintegrity.org/ns/subcriteria" | |
}, | |
"claim": "https://openintegrity.org/ns/claim" | |
}, | |
"@type": "criteria", | |
"@id": "https://openintegrity.org/criteria", | |
"name": "Open Integrity Index Criteria", | |
"subcriteria": [ | |
{ | |
"@id": "https://openintegrity.org/criteria/policy", | |
"@type": "subcriteria", | |
"name": "Policy", | |
"subcriteria": [ | |
{ | |
"@type": "subcriteria", | |
"@id": "https://openintegrity.org/criteria/policy/publicly_verifiable", | |
"name": "Publicly Verifiable", | |
"subcriteria": [ | |
{ | |
"@type": "claim", | |
"@id": "https://openintegrity.org/claim/open_source_license", | |
"name": "Open Source License" | |
}, | |
{ | |
"@type": "claim", | |
"@id": "https://openintegrity.org/claim/deterministic_build_process", | |
"name": "Deterministic Build Process" | |
} | |
] | |
}, | |
{ | |
"@type": "subcriteria", | |
"@id": "https://openintegrity.org/criteria/policy/transparent_development", | |
"name": "Transparent Development", | |
"subcriteria": [ | |
{ | |
"@type": "claim", | |
"@id": "https://openintegrity.org/claim/public_code_repository", | |
"name": "Public Code Repository" | |
}, | |
{ | |
"@type": "claim", | |
"@id": "https://openintegrity.org/claim/code_on_request", | |
"name": "Code available on Request" | |
} | |
] | |
} | |
] | |
}, | |
{ | |
"@id": "https://openintegrity.org/criteria/security", | |
"@type": "oii:subcriteria", | |
"name": "Security" | |
}, | |
{ | |
"@id": "https://openintegrity.org/criteria/privacy", | |
"@type": "oii:subcriteria", | |
"name": "Privacy" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment