Last active
September 6, 2016 15:40
-
-
Save bollwyvl/e7f8136bd2ea5674dd00 to your computer and use it in GitHub Desktop.
JSON-LD Context for IPython
This file contains 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://ipython.org/nbformat/v4/", | |
"nb4": "http://ipython.org/nbformat/v4/", | |
"xsd": "http://www.w3.org/2001/XMLSchema#", | |
"foaf": "http://xmlns.com/foaf/0.1/", | |
"language": {"@type": "@id"}, | |
"codemirror_mode": {"@type": "@id"}, | |
"cell_type": {"@id": "@type"}, | |
"output_type": {"@id": "@type"}, | |
"cells": {"@container": "@list"}, | |
"source": {"@container": "@list"}, | |
"outputs": {"@container": "@list"}, | |
"text": {"@container": "@list"}, | |
"traceback": {"@container": "@list"}, | |
"tags": {"@container": "@set"}, | |
"text/html": {"@container": "@list"}, | |
"image/png": {"@container": "@list"}, | |
"text/plain": {"@container": "@list"}, | |
"application/javascript": {"@container": "@list"}, | |
"collapsed": {"@type": "xsd:boolean"}, | |
"execution_count": {"@type": "xsd:int"}, | |
"nbformat_minor": {"@type": "xsd:int"}, | |
"nbformat": {"@type": "xsd:int"}, | |
"signature": {"@type": "foaf:sha1"} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment