diff --git a/.gitignore b/.gitignore
index aaaf1de5..aeafccd3 100755
--- a/.gitignore
+++ b/.gitignore
@@ -5,4 +5,6 @@ target/
.svn/
*.iml
.idea
-*~
\ No newline at end of file
+*~
+pom.xml.versionsBackup
+dependency-reduced-pom.xml
diff --git a/.travis.yml b/.travis.yml
index c5395428..a311838b 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,8 +1,15 @@
language: java
jdk:
- - openjdk7
- - oraclejdk7
+ - openjdk8
+ - openjdk11
notifications:
- email:
- - ansell.peter@gmail.com
- - tristan.king@gmail.com
+ email: false
+after_success:
+ - mvn clean test jacoco:report coveralls:report
+arch:
+ - amd64
+ - ppc64le
+
+cache:
+ directories:
+ - $HOME/.m2
diff --git a/LICENCE b/LICENCE
index e03ca9bb..2b584c5e 100644
--- a/LICENCE
+++ b/LICENCE
@@ -1,4 +1,5 @@
Copyright (c) 2012, Deutsche Forschungszentrum für Künstliche Intelligenz GmbH
+Copyright (c) 2012-2017, JSONLD-Java contributors
All rights reserved.
Redistribution and use in source and binary forms, with or without
@@ -21,4 +22,4 @@ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
-SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
\ No newline at end of file
+SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
diff --git a/README.md b/README.md
index bbbf8bd3..f1102e69 100644
--- a/README.md
+++ b/README.md
@@ -1,9 +1,11 @@
-Note: this is the documentation for the current unstable development branch. [For the stable release documentation see here](https://github.com/jsonld-java/jsonld-java/blob/b8dc62201bb192875ed92e0156e26c94bc38ba82/README.md).
+**JSONLD-Java is looking for a maintainer**
JSONLD-JAVA
===========
-This is a Java implementation of the JSON-LD specification (http://json-ld.org/).
+This is a Java implementation of the [JSON-LD 1.0 specification](https://www.w3.org/TR/2014/REC-json-ld-20140116/) and the [JSON-LD-API 1.0 specification](https://www.w3.org/TR/2014/REC-json-ld-api-20140116/).
+
+[](https://travis-ci.org/jsonld-java/jsonld-java) [](https://coveralls.io/r/jsonld-java/jsonld-java?branch=master)
USAGE
=====
@@ -14,76 +16,668 @@ From Maven
com.github.jsonld-java
jsonld-java
- 0.2
+ 0.13.5
Code example
------------
- // Open a valid json(-ld) input file
- InputStream inputStream = new FileInputStream("input.json");
- // Read the file into an Object (The type of this object will be a List, Map, String, Boolean,
- // Number or null depending on the root object in the file).
- Object jsonObject = JSONUtils.fromInputStream(inputStream);
- // Call whichever JSONLD function you want! (e.g. compact)
- Object compact = JsonLdProcessor.compact(jsonObject);
- // Print out the result (or don't, it's your call!)
- System.out.println(JSONUtils.toString(normalized));
+```java
+// Open a valid json(-ld) input file
+InputStream inputStream = new FileInputStream("input.json");
+// Read the file into an Object (The type of this object will be a List, Map, String, Boolean,
+// Number or null depending on the root object in the file).
+Object jsonObject = JsonUtils.fromInputStream(inputStream);
+// Create a context JSON map containing prefixes and definitions
+Map context = new HashMap();
+// Customise context...
+// Create an instance of JsonLdOptions with the standard JSON-LD options
+JsonLdOptions options = new JsonLdOptions();
+// Customise options...
+// Call whichever JSONLD function you want! (e.g. compact)
+Object compact = JsonLdProcessor.compact(jsonObject, context, options);
+// Print out the result (or don't, it's your call!)
+System.out.println(JsonUtils.toPrettyString(compact));
+```
Processor options
-----------------
-The Options specified by the [JSON-LD API Specification](http://json-ld.org/spec/latest/json-ld-api/#jsonldoptions) are accessible via the `com.github.jsonldjava.core.JsonLdOptions` class, and each `JsonLdProcessor.*` function has an optional input to take an instance of this class.
-
-RDF implementation specific code
---------------------------------
-
-All code specific to various RDF implementations (e.g. jena, sesame, etc) are stored in the [integration modules](./integration). Readmes for how to use these modules should be present in their respective folders.
+The Options specified by the [JSON-LD API Specification](https://json-ld.org/spec/latest/json-ld-api/#the-jsonldoptions-type) are accessible via the `com.github.jsonldjava.core.JsonLdOptions` class, and each `JsonLdProcessor.*` function has an optional input to take an instance of this class.
+
+Controlling network traffic
+---------------------------
+
+Parsing JSON-LD will normally follow any external `@context` declarations.
+Loading these contexts from the network may in some cases not be desirable, or
+might require additional proxy configuration or authentication.
+
+JSONLD-Java uses the [Apache HTTPComponents Client](https://hc.apache.org/httpcomponents-client-ga/index.html) for these network connections,
+based on the [SystemDefaultHttpClient](http://hc.apache.org/httpcomponents-client-ga/httpclient/apidocs/org/apache/http/impl/client/SystemDefaultHttpClient.html) which reads
+standard Java properties like `http.proxyHost`.
+
+The default HTTP Client is wrapped with a
+[CachingHttpClient](https://hc.apache.org/httpcomponents-client-ga/httpclient-cache/apidocs/org/apache/http/impl/client/cache/CachingHttpClient.html) to provide a
+small memory-based cache (1000 objects, max 128 kB each) of regularly accessed contexts.
+
+### Loading contexts from classpath
+
+Your application might be parsing JSONLD documents which always use the same
+external `@context` IRIs. Although the default HTTP cache (see above) will
+avoid repeated downloading of the same contexts, your application would still
+initially be vulnerable to network connectivity.
+
+To bypass this issue, and even facilitate parsing of such documents in an
+offline state, it is possible to provide a 'warmed' cache populated
+from the classpath, e.g. loaded from a JAR.
+
+In your application, simply add a resource `jarcache.json` to the root of your
+classpath together with the JSON-LD contexts to embed. (Note that you might
+have to recursively embed any nested contexts).
+
+The syntax of `jarcache.json` is best explained by example:
+```javascript
+[
+ {
+ "Content-Location": "http://www.example.com/context",
+ "X-Classpath": "contexts/example.jsonld",
+ "Content-Type": "application/ld+json"
+ },
+ {
+ "Content-Location": "http://data.example.net/other",
+ "X-Classpath": "contexts/other.jsonld",
+ "Content-Type": "application/ld+json"
+ }
+]
+```
+(See also [core/src/test/resources/jarcache.json](core/src/test/resources/jarcache.json)).
+
+This will mean that any JSON-LD document trying to import the `@context`
+`http://www.example.com/context` will instead be given
+`contexts/example.jsonld` loaded as a classpath resource.
+
+The `X-Classpath` location is an IRI reference resolved relative to the
+location of the `jarcache.json` - so if you have multiple JARs with a
+`jarcache.json` each, then the `X-Classpath` will be resolved within the
+corresponding JAR (minimizing any conflicts).
+
+Additional HTTP headers (such as `Content-Type` above) can be included,
+although these are generally ignored by JSONLD-Java.
+
+Unless overridden in `jarcache.json`, this `Cache-Control` header is
+automatically injected together with the current `Date`, meaning that the
+resource loaded from the JAR will effectively never expire (the real HTTP
+server will never be consulted by the Apache HTTP client):
+
+```
+Date: Wed, 19 Mar 2014 13:25:08 GMT
+Cache-Control: max-age=2147483647
+```
+
+The mechanism for loading `jarcache.json` relies on
+[Thread.currentThread().getContextClassLoader()](http://docs.oracle.com/javase/7/docs/api/java/lang/Thread.html#getContextClassLoader%28%29)
+to locate resources from the classpath - if you are running on a command line,
+within a framework (e.g. OSGi) or Servlet container (e.g. Tomcat) this should
+normally be set correctly. If not, try:
+
+```java
+ClassLoader oldContextCL = Thread.currentThread().getContextClassLoader();
+try {
+ Thread.currentThread().setContextClassLoader(getClass().getClassLoader());
+ JsonLdProcessor.expand(input); // or any other JsonLd operation
+} finally {
+ // Restore, in case the current thread was doing something else
+ // with the context classloader before calling our method
+ Thread.currentThread().setContextClassLoader(oldContextCL);
+}
+```
+
+To disable all remote document fetching, when using the default DocumentLoader, set the
+following Java System Property to "true" using:
+
+```java
+System.setProperty("com.github.jsonldjava.disallowRemoteContextLoading", "true");
+```
+
+You can also use the constant provided in DocumentLoader for the same purpose:
+
+```java
+System.setProperty(DocumentLoader.DISALLOW_REMOTE_CONTEXT_LOADING, "true");
+```
+
+Note that if you override DocumentLoader you should also support this setting for consistency and security.
+
+### Loading contexts from a string
+
+Your application might be parsing JSONLD documents which reference external `@context` IRIs
+that are not available as file URIs on the classpath. In this case, the `jarcache.json`
+approach will not work. Instead you can inject the literal context file strings through
+the `JsonLdOptions` object, as follows:
+
+```java
+// Inject a context document into the options as a literal string
+DocumentLoader dl = new DocumentLoader();
+JsonLdOptions options = new JsonLdOptions();
+// ... the contents of "contexts/example.jsonld"
+String jsonContext = "{ \"@context\": { ... } }";
+dl.addInjectedDoc("http://www.example.com/context", jsonContext);
+options.setDocumentLoader(dl);
+
+InputStream inputStream = new FileInputStream("input.json");
+Object jsonObject = JsonUtils.fromInputStream(inputStream);
+Map context = new HashMap();
+Object compact = JsonLdProcessor.compact(jsonObject, context, options);
+System.out.println(JsonUtils.toPrettyString(compact));
+```
+
+### Customizing the Apache HttpClient
+
+To customize the HTTP behaviour (e.g. to disable the cache or provide
+[authentication
+credentials)](https://hc.apache.org/httpcomponents-client-ga/tutorial/html/authentication.html),
+you may want to create and configure your own `CloseableHttpClient` instance, which can
+be passed to a `DocumentLoader` instance using `setHttpClient()`. This document
+loader can then be inserted into `JsonLdOptions` using `setDocumentLoader()`
+and passed as an argument to `JsonLdProcessor` arguments.
+
+Example of inserting a credential provider (e.g. to load a `@context` protected
+by HTTP Basic Auth):
+
+```java
+Object input = JsonUtils.fromInputStream(..);
+DocumentLoader documentLoader = new DocumentLoader();
+
+CredentialsProvider credsProvider = new BasicCredentialsProvider();
+credsProvider.setCredentials(
+ new AuthScope("localhost", 443),
+ new UsernamePasswordCredentials("username", "password"));
+
+CacheConfig cacheConfig = CacheConfig.custom().setMaxCacheEntries(1000)
+ .setMaxObjectSize(1024 * 128).build();
+
+CloseableHttpClient httpClient = CachingHttpClientBuilder
+ .create()
+ // allow caching
+ .setCacheConfig(cacheConfig)
+ // Wrap the local JarCacheStorage around a BasicHttpCacheStorage
+ .setHttpCacheStorage(
+ new JarCacheStorage(null, cacheConfig, new BasicHttpCacheStorage(
+ cacheConfig)))....
+
+ // Add in the credentials provider
+ .setDefaultCredentialsProvider(credsProvider);
+ // When you are finished setting the properties, call build
+ .build();
+
+documentLoader.setHttpClient(httpClient);
+
+JsonLdOptions options = new JsonLdOptions();
+options.setDocumentLoader(documentLoader);
+// .. and any other options
+Object rdf = JsonLdProcessor.toRDF(input, options);
+```
PLAYGROUND
----------
-This is a simple application which provides command line access to JSON-LD functions
+The [jsonld-java-tools](https://github.com/jsonld-java/jsonld-java-tools) repository contains a simple application which provides command line access to JSON-LD functions
-### initial setup
+### Initial clone and setup
- chmod +x ./jsonldplayground
+```bash
+git clone git@github.com:jsonld-java/jsonld-java-tools.git
+chmod +x ./jsonldplayground
+```
-### usage
+### Usage
run the following to get usage details:
- ./jsonldplayground
+```bash
+./jsonldplayground --help
+```
For Developers
--------------
### Compiling & Packaging
-`jsonld-java` uses maven to compile. From the base `jsonld-java` module run `mvn install -DskipTests=true` to install the jar into your local maven repository.
-
+`jsonld-java` uses maven to compile. From the base `jsonld-java` module run `mvn clean install` to install the jar into your local maven repository.
### Running tests
- mvn test
+```bash
+mvn test
+```
or
- mvn test -pl core
+```bash
+mvn test -pl core
+```
to run only core package tests
+### Code style
+
+The JSONLD-Java project uses custom Eclipse formatting and cleanup style guides to ensure that Pull Requests are fairly simple to merge.
+
+These guides can be found in the /conf directory and can be installed in Eclipse using "Properties>Java Code Style>Formatter", followed by "Properties>Java Code Style>Clean Up" for each of the modules making up the JSONLD-Java project.
+
+If you don't use Eclipse, then don't worry, your pull requests can be cleaned up by a repository maintainer prior to merging, but it makes the initial check easier if the modified code uses the conventions.
+
+### Submitting Pull Requests
+
+Once you have made a change to fix a bug or add a new feature, you should commit and push the change to your fork.
+
+Then, you can open a pull request to merge your change into the master branch of the main repository.
+
+Implementation Reports for JSONLD-Java conformance with JSONLD-1.0
+==================================================================
-### Generating Implementation Report
+The Implementation Reports documenting the conformance of JSONLD-Java with JSONLD-1.0 are available at:
-Implementation Reports conforming to the [JSON-LD Implementation Report](http://json-ld.org/test-suite/reports/#instructions-for-submitting-implementation-reports) document can be generated using the following command:
+https://github.com/jsonld-java/jsonld-java/tree/master/core/reports
- mvn test -pl core -Dtest=JsonLdProcessorTest -Dreport.format=
+### Regenerating Implementation Report
+
+Implementation Reports conforming to the [JSON-LD Implementation Report](http://json-ld.org/test-suite/reports/#instructions-for-submitting-implementation-reports) document can be regenerated using the following command:
+
+```bash
+mvn test -pl core -Dtest=JsonLdProcessorTest -Dreport.format=
+```
Current possible values for `` include JSON-LD (`application/ld+json` or `jsonld`), NQuads (`text/plain`, `nquads`, `ntriples`, `nq` or `nt`) and Turtle (`text/turtle`, `turtle` or `ttl`). `*` can be used to generate reports in all available formats.
+Integration of JSONLD-Java with other Java packages
+===================================================
+
+This is the base package for JSONLD-Java. Integration with other Java packages are done in separate repositories.
+
+Existing integrations
+---------------------
+
+* [Eclipse RDF4J](https://github.com/eclipse/rdf4j)
+* [Apache Jena](https://github.com/apache/jena/)
+* [RDF2GO](https://github.com/jsonld-java/jsonld-java-rdf2go)
+* [Apache Clerezza](https://github.com/jsonld-java/jsonld-java-clerezza)
+
+Creating an integration module
+------------------------------
+
+### Create a repository for your module
+
+Create a GitHub repository for your module under your user account, or have a JSONLD-Java maintainer create one in the jsonld-java organisation.
+
+Create maven module
+-------------------
+
+### Create pom.xml for your module
+
+Here is the basic outline for what your module's pom.xml should look like
+
+```xml
+
+
+
+ com.github.jsonld-java
+ jsonld-java-parent
+ 0.13.5
+
+ 4.0.0
+ jsonld-java-{your module}
+ 0.13.5-SNAPSHOT
+ JSONLD Java :: {your module name}
+ JSON-LD Java integration module for {RDF Library your module integrates}
+ jar
+
+
+
+ {YOU}
+ {YOUR EMAIL ADDRESS}
+
+
+
+
+
+ ${project.groupId}
+ jsonld-java
+ ${project.version}
+ jar
+ compile
+
+
+ ${project.groupId}
+ jsonld-java
+ ${project.version}
+ test-jar
+ test
+
+
+ junit
+ junit
+ test
+
+
+ org.slf4j
+ slf4j-jdk14
+ test
+
+
+
+```
+
+Make sure you edit the following:
+ * `project/artifactId` : set this to `jsonld-java-{module id}`, where `{module id}` usually represents the RDF library you're integrating (e.g. `jsonld-java-jena`)
+ * `project/name` : set this to `JSONLD Java :: {Module Name}`, wher `{module name}` is usually the name of the RDF library you're integrating.
+ * `project/description`
+ * `project/developers/developer/...` : Give youself credit by filling in the developer field. At least put your `` in ([see here for all available options](http://maven.apache.org/pom.html#Developers)).
+ * `project/dependencies/...` : remember to add any dependencies your project needs
+
+### Import into your favorite editor
+
+For Example: Follow the first few steps in the section above to import the whole `jsonld-java` project or only your new module into eclipse.
+
+Create RDFParser Implementation
+-------------------------------
+
+The interface `com.github.jsonldjava.core.RDFParser` is used to parse RDF from the library into the JSONLD-Java internal RDF format. See the documentation in [`RDFParser.java`](../core/src/main/java/com/github/jsonldjava/core/RDFParser.java) for details on how to implement this interface.
+
+Create TripleCallback Implementation
+------------------------------------
+
+The interface `com.github.jsonldjava.core.JSONLDTripleCallback` is used to generate a representation of the JSON-LD input in the RDF library. See the documentation in [`JSONLDTripleCallback.java`](../core/src/main/java/com/github/jsonldjava/core/JSONLDTripleCallback.java) for details on how to implement this interface.
+
+Using your Implementations
+--------------------------
+
+### RDFParser
+
+A JSONLD RDF parser is a class that can parse your frameworks' RDF model
+and generate JSON-LD.
+
+There are two ways to use your `RDFParser` implementation.
+
+Register your parser with the `JSONLD` class and set `options.format` when you call `fromRDF`
+
+```java
+JSONLD.registerRDFParser("format/identifier", new YourRDFParser());
+Object jsonld = JSONLD.fromRDF(yourInput, new Options("") {{ format = "format/identifier" }});
+```
+
+or pass an instance of your `RDFParser` into the `fromRDF` function
+
+```java
+Object jsonld = JSONLD.fromRDF(yourInput, new YourRDFParser());
+```
+
+### JSONLDTripleCallback
+
+A JSONLD triple callback is a class that can populate your framework's
+RDF model from JSON-LD - being called for each triple (technically quad).
+
+Pass an instance of your `TripleCallback` to `JSONLD.toRDF`
+
+```java
+Object yourOutput = JSONLD.toRDF(jsonld, new YourTripleCallback());
+```
+
+Integrate with your framework
+-----------------------------
+Your framework might have its own system of readers and writers, where
+you should register JSON-LD as a supported format. Remember that here
+the "parse" direction is opposite of above, a 'reader' may be a class
+that can parse JSON-LD and populate an RDF Graph.
+
+Write Tests
+-----------
+
+It's helpful to have a test or two for your implementations to make sure they work and continue to work with future versions.
+
+Write README.md
+---------------
+
+Write a `README.md` file with instrutions on how to use your module.
+
+Submit your module
+------------------
+
+Once you've `commit`ted your code, and `push`ed it into your github fork you can issue a [Pull Request](https://help.github.com/articles/using-pull-requests) so that we can add a reference to your module in this README file.
+
+Alternatively, we can also host your repository in the jsonld-java organisation to give it more visibility.
+
CHANGELOG
=========
+### 2023-11-06
+* Release 0.13.6
+* Bump Jackson-databind version to latest for security update
+
+### 2023-11-03
+* Release 0.13.5
+* Bump Jackson and Guava versions to latest for security updates
+
+### 2021-12-13
+* Release 0.13.4
+* Switch test logging from log4j to logback (Patch by @ansell)
+* Improve Travis CI build Performance (Patch by @YunLemon)
+
+### 2021-03-06
+* Release 0.13.3
+* Fix @type when subject and object are the same (Reported by @barthanssens, Patch by @umbreak)
+* Ignore @base if remote context is not relative (Reported by @whikloj, Patch by @dr0i)
+* Fix throwing recursive context inclusion (Patch by @umbreak)
+
+### 2020-09-24
+* Release 0.13.2
+* Fix Guava dependency shading (Reported by @ggrasso)
+* Fix @context issues when using a remote context (Patch by @umbreak)
+* Deprecate Context.serialize (Patch by @umbreak)
+
+### 2020-09-09
+* Release 0.13.1
+* Fix java.net.URI resolution (Reported by @ebremer and @afs, Patch by @dr0i)
+* Shade Guava failureaccess module (Patch by @peacekeeper)
+* Don't minimize Guava class shading (Patch by @elahrvivaz)
+* Follow link headers to @context files (Patch by @dr0i and @fsteeg)
+
+### 2019-11-28
+* Release 0.13.0
+* Bump Jackson versions to latest for security updates (Patch by @afs)
+* Do not canonicalise XSD Decimal typed values (Patch by @jhg023)
+* Bump dependency and plugin versions
+
+### 2019-08-03
+* Release 0.12.5
+* Bump Jackson versions to latest for security updates (Patches by @afs)
+* IRI resolution fixes (Patch by @fsteeg)
+
+### 2019-04-20
+* Release 0.12.4
+* Bump Jackson version to 2.9.8
+* Add a regression test for a past framing bug
+* Throw error on empty key
+* Add regression tests for workarounds to Text/URL dual definitions
+* Persist JsonLdOptions through normalize/toRDF
+
+### 2018-11-24
+* Release 0.12.3
+* Fix NaN/Inf/-Inf raw value types on conversion to RDF
+* Added fix for wrong rdf:type to @type conversion (Path by @umbreak)
+* Open up Context.getTypeMapping and Context.getLanguageMapping for reuse
+
+### 2018-11-03
+* W3c json ld syntax 34 allow container set on aliased type (Patch by @dr0i)
+* Release 0.12.2
+
+### 2018-09-05
+* handle omit graph flag (Patch by @eroux)
+* Release 0.12.1
+* Make pruneBlankNodeIdentifiers false by default in 1.0 mode and always true in 1.1 mode (Patch by @eroux)
+* Fix issue with blank node identifier pruning when @id is aliased (Patch by @eroux)
+* Allow wildcard {} for @id in framing (Patch by @eroux)
+
+### 2018-07-07
+* Fix tests setup for schema.org with HttpURLConnection that break because of the inability of HttpURLConnection to redirect from HTTP to HTTPS
+
+### 2018-04-08
+* Release 0.12.0
+* Encapsulate RemoteDocument and make it immutable
+
+### 2018-04-03
+* Fix performance issue caused by not caching schema.org and others that use ``Cache-Control: private`` (Patch by @HansBrende)
+* Cache classpath scans for jarcache.json to fix a similar performance issue
+* Add internal shaded dependency on Google Guava to use maintained soft and weak reference maps rather than adhoc versions
+* Make JsonLdError a RuntimeException to improve its use in closures
+* Bump minor version to 0.12 to reflect the API incompatibility caused by JsonLdError and protected field change and hiding in JarCacheStorage
+
+### 2018-01-25
+* Fix resource leak in JsonUtils.fromURL on unsuccessful requests (Patch by @plaplaige)
+
+### 2017-11-15
+* Ignore UTF BOM (Patch by @christopher-johnson)
+
+### 2017-08-26
+* Release 0.11.1
+* Fix @embed:@always support (Patch by @dr0i)
+
+### 2017-08-24
+* Release 0.11.0
+
+### 2017-08-22
+* Add implicit "flag only" subframe to fix incomplete list recursion (Patch by @christopher-johnson)
+* Support pruneBlankNodeIdentifiers framing option in 1.1 mode (Patch by @fsteeg and @eroux)
+* Support new @embed values (Patch by @eroux)
+
+### 2017-07-11
+* Add injection of contexts directly into DocumentLoader (Patch by @ryankenney)
+* Fix N-Quads content type (Patch by @NicolasRouquette)
+* Add JsonUtils.fromJsonParser (Patch by @dschulten)
+
+### 2017-02-16
+* Make literals compare consistently (Patch by @stain)
+* Release 0.10.0
+
+### 2017-01-09
+* Propagate causes for JsonLdError instances where they were caused by other Exceptions
+* Remove schema.org hack as it appears to work again now...
+* Remove deprecated and unused APIs
+* Bump version to 0.10.0-SNAPSHOT per the removed/changed APIs
+
+### 2016-12-23
+* Release 0.9.0
+* Fixes schema.org support that is broken with Apache HTTP Client but works with java.net.URL
+
+### 2016-05-20
+* Fix reported NPE in JsonLdApi.removeDependents
+
+### 2016-05-18
+* Release 0.8.3
+* Fix @base in remote contexts corrupting the local context
+
+### 2016-04-23
+* Support @default inside of sets for framing
+
+### 2016-02-29
+* Fix ConcurrentModificationException in the implementation of the Framing API
+
+### 2016-02-17
+* Re-release version 0.8.2 with the refactoring work actually in it. 0.8.1 is identical in functionality to 0.8.0
+* Release version 0.8.1
+* Refactor JSONUtils and DocumentLoader to move most of the static logic into JSONUtils, and deprecate the DocumentLoader versions
+
+### 2016-02-10
+* Release version 0.8.0
+
+### 2015-11-19
+* Replace deprecated HTTPClient code with the new builder pattern
+* Chain JarCacheStorage to any other HttpCacheStorage to simplify the way local caching is performed
+* Bump version to 0.8.0-SNAPSHOT as some interface method parameters changed, particularly, DocumentLoader.setHttpClient changed to require CloseableHttpClient that was introduced in HttpClient-4.3
+
+### 2015-11-16
+* Bump dependencies to latest versions, particularly HTTPClient that is seeing more use on 4.5/4.4 than the 4.2 series that we have used so far
+* Performance improvements for serialisation to N-Quads by replacing string append and replace with StringBuilder
+* Support setting a system property, com.github.jsonldjava.disallowRemoteContextLoading, to "true" to disable remote context loading.
+
+### 2015-09-30
+* Release 0.7.0
+
+### 2015-09-27
+* Move Tools, Clerezza and RDF2GO modules out to separate repositories. The Tools repository had a circular build dependency with Sesame, while the other modules are best located and managed in separate repositories
+
+### 2015-08-25
+* Remove Sesame-2.7 module in favour of sesame-rio-jsonld for Sesame-2.8 and 4.0
+* Fix bug where parsing did not fail if content was present after the end of a full JSON top level element
+
+### 2015-03-12
+* Compact context arrays if they contain a single element during compaction
+* Bump to Sesame-2.7.15
+
+### 2015-03-01
+* Use jopt-simple for the playground cli to simplify the coding and improve error messages
+* Allow RDF parsing and writing using all of the available Sesame Rio parsers through the playground cli
+* Make the httpclient dependency OSGi compliant
+
+### 2014-12-31
+* Fix locale sensitive serialisation of XSD double/decimal typed literals to always be Locale.US
+* Bump to Sesame-2.7.14
+* Bump to Clerezza-0.14
+
+### 2014-11-14
+* Fix identification of integer, boolean, and decimal in RDF-JSONLD with useNativeTypes
+* Release 0.5.1
+
+### 2014-10-29
+* Add OSGi metadata to Jar files
+* Bump to Sesame-2.7.13
+
+### 2014-07-14
+* Release version 0.5.0
+* Fix Jackson parse exceptions being propagated through Sesame without wrapping as RDFParseExceptions
+
+### 2014-07-02
+* Fix use of Java-7 API so we are still Java-6 compatible
+* Ensure that Sesame RDFHandler endRDF and startRDF are called in SesameTripleCallback
+
+### 2014-06-30
+* Release version 0.4.2
+* Bump to Sesame-2.7.12
+* Remove Jena integration module, as it is now maintained by Jena team in their repository
+
+### 2014-04-22
+* Release version 0.4
+* Bump to Sesame-2.7.11
+* Bump to Jackson-2.3.3
+* Bump to Jena-2.11.1
+
+### 2014-03-26
+* Bump RDF2GO to version 5.0.0
+
+### 2014-03-24
+* Allow loading remote @context from bundled JAR cache
+* Support JSON array in @context with toRDF
+* Avoid exception on @context with default @language and unmapped key
+
+### 2014-02-24
+* Javadoc some core classes, JsonLdProcessor, JsonLdApi, and JsonUtils
+* Rename some core classes for consistency, particularly JSONUtils to JsonUtils and JsonLdTripleCallback
+* Fix for a Context constructor that wasn't taking base into account
+
+### 2014-02-20
+* Fix JsonLdApi mapping options in framing algorithm (Thanks Scott Blomquist @sblom)
+
+### 2014-02-06
+
+* Release version 0.3
+* Bump to Sesame-2.7.10
+* Fix Jena module to use new API
+
+### 2014-01-29
+
+* Updated to final Recommendation
+* Namespaces supported by Sesame integration module
+* Initial implementation of remote document loading
+* Bump to Jackson-2.3.1
### 2013-11-22
@@ -159,3 +753,4 @@ Considerations for 1.0 release / optimisations
* The `Context` class is a `Map` and many of the options are stored as values of the map. These could be made into variables, whice should speed things up a bit (the same with the termDefinitions variable inside the Context).
* some sort of document loader interface (with a mockup for testing) is required
+
diff --git a/core/pom.xml b/core/pom.xml
index c7804d4a..f14fb287 100755
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -1,15 +1,16 @@
-
-
+
+
jsonld-java-parent
com.github.jsonld-java
- 0.3-SNAPSHOT
+ 0.13.6
4.0.0
jsonld-java
JSONLD Java :: Core
Json-LD core implementation
- jar
+ bundle
@@ -20,17 +21,31 @@
com.fasterxml.jackson.core
jackson-databind
+
+ org.apache.httpcomponents
+ httpclient-osgi
+
+
+ org.apache.httpcomponents
+ httpcore-osgi
+
org.slf4j
slf4j-api
+
- org.apache.httpcomponents
- httpclient
+ org.slf4j
+ jcl-over-slf4j
- org.apache.httpcomponents
- httpclient-cache
+ commons-io
+ commons-io
+
+
+ com.google.guava
+ guava
junit
@@ -38,8 +53,8 @@
test
- org.slf4j
- slf4j-jdk14
+ ch.qos.logback
+ logback-classic
test
@@ -47,16 +62,85 @@
mockito-core
test
-
- org.openrdf.sesame
- sesame-rio-api
- test
-
-
- org.openrdf.sesame
- sesame-rio-nquads
- test
-
+
+
+
+
+ org.apache.maven.plugins
+ maven-shade-plugin
+
+
+
+ com.google.guava:guava
+ com.google.guava:failureaccess
+
+
+
+
+ com.google.common
+ com.github.jsonldjava.shaded.com.google.common
+
+
+ com.google.thirdparty
+ com.github.jsonldjava.shaded.com.google.thirdparty
+
+
+
+
+ com.google.guava:guava
+
+ META-INF/maven/**
+
+
+
+ com.google.guava:failureaccess
+
+ META-INF/maven/**
+
+
+
+
+
+
+ package
+
+ shade
+
+
+
+
+
+ org.codehaus.mojo
+ animal-sniffer-maven-plugin
+
+
+ org.apache.felix
+ maven-bundle-plugin
+ true
+
+
+
+ !com.google.common.*,
+ org.slf4j.*; version="[1.0.0,2)",
+ *
+
+
+
+
+
+
+
+ org.apache.maven.plugins
+ maven-jar-plugin
+
+
+ org.jacoco
+ jacoco-maven-plugin
+
+
+
diff --git a/core/reports/report.jsonld b/core/reports/report.jsonld
index 27dc52fe..53834302 100755
--- a/core/reports/report.jsonld
+++ b/core/reports/report.jsonld
@@ -20,10 +20,10 @@
"foaf:title" : "Implementor",
"foaf:homepage" : "http://tristan.github.com"
}, {
- "@id" : "http://github.com/jsonld-java/jsonld-java",
+ "@id" : "https://github.com/jsonld-java/jsonld-java",
"@type" : [ "doap:Project", "earl:TestSubject", "earl:Software" ],
"doap:name" : "JSONLD-Java",
- "doap:homepage" : "http://github.com/jsonld-java/jsonld-java",
+ "doap:homepage" : "https://github.com/jsonld-java/jsonld-java",
"doap:description" : {
"@value" : "An Implementation of the JSON-LD Specification for Java",
"@language" : "en"
@@ -50,9019 +50,10727 @@
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0001"
+ "@id" : "http://json-ld.org/test-suite/tests/fromRdf-manifest.jsonld#t0001"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:07+02:00",
+ "@value" : "2014-02-25T13:04:53+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
- }, {
- "@type" : "earl:Assertion",
- "earl:assertedBy" : {
- "@id" : "http://tristan.github.com/foaf#me"
- },
- "earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
- },
- "earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0002"
- },
- "earl:result" : {
- "@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
- "dc:date" : {
- "@value" : "2013-10-10T17:29:07+02:00",
- "@type" : "xsd:dateTime"
- }
- },
- "earl:mode" : "earl:automatic"
- }, {
- "@type" : "earl:Assertion",
- "earl:assertedBy" : {
- "@id" : "http://tristan.github.com/foaf#me"
- },
- "earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
- },
- "earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0003"
- },
- "earl:result" : {
- "@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
- "dc:date" : {
- "@value" : "2013-10-10T17:29:07+02:00",
- "@type" : "xsd:dateTime"
- }
- },
- "earl:mode" : "earl:automatic"
- }, {
- "@type" : "earl:Assertion",
- "earl:assertedBy" : {
- "@id" : "http://tristan.github.com/foaf#me"
- },
- "earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
- },
- "earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0004"
- },
- "earl:result" : {
- "@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
- "dc:date" : {
- "@value" : "2013-10-10T17:29:07+02:00",
- "@type" : "xsd:dateTime"
- }
- },
- "earl:mode" : "earl:automatic"
- }, {
- "@type" : "earl:Assertion",
- "earl:assertedBy" : {
- "@id" : "http://tristan.github.com/foaf#me"
- },
- "earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
- },
- "earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0005"
- },
- "earl:result" : {
- "@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
- "dc:date" : {
- "@value" : "2013-10-10T17:29:07+02:00",
- "@type" : "xsd:dateTime"
- }
- },
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0006"
+ "@id" : "http://json-ld.org/test-suite/tests/fromRdf-manifest.jsonld#t0002"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:07+02:00",
+ "@value" : "2014-02-25T13:04:53+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0007"
+ "@id" : "http://json-ld.org/test-suite/tests/fromRdf-manifest.jsonld#t0003"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:07+02:00",
+ "@value" : "2014-02-25T13:04:53+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0008"
+ "@id" : "http://json-ld.org/test-suite/tests/fromRdf-manifest.jsonld#t0004"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:07+02:00",
+ "@value" : "2014-02-25T13:04:53+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0009"
+ "@id" : "http://json-ld.org/test-suite/tests/fromRdf-manifest.jsonld#t0005"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:07+02:00",
+ "@value" : "2014-02-25T13:04:53+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0010"
+ "@id" : "http://json-ld.org/test-suite/tests/fromRdf-manifest.jsonld#t0006"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:07+02:00",
+ "@value" : "2014-02-25T13:04:53+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0011"
+ "@id" : "http://json-ld.org/test-suite/tests/fromRdf-manifest.jsonld#t0007"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:07+02:00",
+ "@value" : "2014-02-25T13:04:53+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0012"
+ "@id" : "http://json-ld.org/test-suite/tests/fromRdf-manifest.jsonld#t0008"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:07+02:00",
+ "@value" : "2014-02-25T13:04:53+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0013"
+ "@id" : "http://json-ld.org/test-suite/tests/fromRdf-manifest.jsonld#t0009"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:07+02:00",
+ "@value" : "2014-02-25T13:04:53+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0014"
+ "@id" : "http://json-ld.org/test-suite/tests/fromRdf-manifest.jsonld#t0010"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:07+02:00",
+ "@value" : "2014-02-25T13:04:53+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0015"
+ "@id" : "http://json-ld.org/test-suite/tests/fromRdf-manifest.jsonld#t0011"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:07+02:00",
+ "@value" : "2014-02-25T13:04:53+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0016"
+ "@id" : "http://json-ld.org/test-suite/tests/fromRdf-manifest.jsonld#t0012"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:07+02:00",
+ "@value" : "2014-02-25T13:04:53+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0017"
+ "@id" : "http://json-ld.org/test-suite/tests/fromRdf-manifest.jsonld#t0013"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:07+02:00",
+ "@value" : "2014-02-25T13:04:53+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0018"
+ "@id" : "http://json-ld.org/test-suite/tests/fromRdf-manifest.jsonld#t0014"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:07+02:00",
+ "@value" : "2014-02-25T13:04:53+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0019"
+ "@id" : "http://json-ld.org/test-suite/tests/fromRdf-manifest.jsonld#t0015"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:53+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0020"
+ "@id" : "http://json-ld.org/test-suite/tests/fromRdf-manifest.jsonld#t0016"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:53+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0021"
+ "@id" : "http://json-ld.org/test-suite/tests/fromRdf-manifest.jsonld#t0017"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:53+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0022"
+ "@id" : "http://json-ld.org/test-suite/tests/fromRdf-manifest.jsonld#t0018"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:53+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0023"
+ "@id" : "http://json-ld.org/test-suite/tests/fromRdf-manifest.jsonld#t0019"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:53+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0024"
+ "@id" : "http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0001"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:53+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0025"
+ "@id" : "http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0002"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:53+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0026"
+ "@id" : "http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0003"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:53+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0027"
+ "@id" : "http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0004"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:53+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0028"
+ "@id" : "http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0005"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:53+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0029"
+ "@id" : "http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0006"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:53+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0030"
+ "@id" : "http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0007"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:53+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0031"
+ "@id" : "http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0008"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:53+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0032"
+ "@id" : "http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0009"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:53+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0033"
+ "@id" : "http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0010"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:53+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0034"
+ "@id" : "http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0011"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:53+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0035"
+ "@id" : "http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0012"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:53+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0036"
+ "@id" : "http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0013"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:53+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0037"
+ "@id" : "http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0014"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:53+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0038"
+ "@id" : "http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0015"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:53+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0039"
+ "@id" : "http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0016"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:53+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0040"
+ "@id" : "http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0017"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:53+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0041"
+ "@id" : "http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0018"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:53+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0042"
+ "@id" : "http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0019"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:53+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0043"
+ "@id" : "http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0020"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:53+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0044"
+ "@id" : "http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0021"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:53+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0045"
+ "@id" : "http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0022"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:53+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0046"
+ "@id" : "http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0023"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:53+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0047"
+ "@id" : "http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0024"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:53+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0048"
+ "@id" : "http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0025"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:53+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0049"
+ "@id" : "http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0026"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:53+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0050"
+ "@id" : "http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0027"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:53+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0051"
+ "@id" : "http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0028"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:53+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0052"
+ "@id" : "http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0029"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:53+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0053"
+ "@id" : "http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0030"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:53+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0054"
+ "@id" : "http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0031"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:53+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0055"
+ "@id" : "http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0032"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:53+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0056"
+ "@id" : "http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0033"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:53+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0057"
+ "@id" : "http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0034"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:53+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0058"
+ "@id" : "http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0035"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:53+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0059"
+ "@id" : "http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0036"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:53+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0060"
+ "@id" : "http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0037"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:53+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0061"
+ "@id" : "http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0038"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:53+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0062"
+ "@id" : "http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0039"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:53+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0063"
+ "@id" : "http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0040"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:53+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0064"
+ "@id" : "http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0041"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:53+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0065"
+ "@id" : "http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0042"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:53+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0066"
+ "@id" : "http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0043"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:53+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0067"
+ "@id" : "http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0044"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0068"
+ "@id" : "http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0045"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0069"
+ "@id" : "http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0046"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Compaction-manifest.jsonld#t0070"
+ "@id" : "http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0047"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Error handling-manifest.jsonld#t0001"
+ "@id" : "http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0048"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Error handling-manifest.jsonld#t0002"
+ "@id" : "http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0049"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Error handling-manifest.jsonld#t0003"
+ "@id" : "http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0050"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Error handling-manifest.jsonld#t0004"
+ "@id" : "http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0051"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Error handling-manifest.jsonld#t0005"
+ "@id" : "http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0052"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Error handling-manifest.jsonld#t0006"
+ "@id" : "http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0053"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Error handling-manifest.jsonld#t0007"
+ "@id" : "http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0054"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Error handling-manifest.jsonld#t0008"
+ "@id" : "http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0055"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Error handling-manifest.jsonld#t0009"
+ "@id" : "http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0056"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Error handling-manifest.jsonld#t0010"
+ "@id" : "http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0057"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Error handling-manifest.jsonld#t0011"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0001"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Error handling-manifest.jsonld#t0012"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0002"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Error handling-manifest.jsonld#t0013"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0003"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Error handling-manifest.jsonld#t0014"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0004"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Error handling-manifest.jsonld#t0015"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0005"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Error handling-manifest.jsonld#t0016"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0006"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Error handling-manifest.jsonld#t0017"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0007"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Error handling-manifest.jsonld#t0018"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0008"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Error handling-manifest.jsonld#t0019"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0009"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Error handling-manifest.jsonld#t0020"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0010"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Error handling-manifest.jsonld#t0021"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0011"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Error handling-manifest.jsonld#t0022"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0012"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Error handling-manifest.jsonld#t0023"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0013"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Error handling-manifest.jsonld#t0024"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0014"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Error handling-manifest.jsonld#t0025"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0015"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Error handling-manifest.jsonld#t0026"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0016"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Error handling-manifest.jsonld#t0027"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0017"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Error handling-manifest.jsonld#t0028"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0018"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Error handling-manifest.jsonld#t0029"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0019"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Error handling-manifest.jsonld#t0030"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0020"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Error handling-manifest.jsonld#t0031"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0021"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Error handling-manifest.jsonld#t0032"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0022"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Error handling-manifest.jsonld#t0033"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0023"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Error handling-manifest.jsonld#t0034"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0024"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Error handling-manifest.jsonld#t0035"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0025"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Error handling-manifest.jsonld#t0036"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0026"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Error handling-manifest.jsonld#t0037"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0027"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Error handling-manifest.jsonld#t0038"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0028"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Error handling-manifest.jsonld#t0039"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0029"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Error handling-manifest.jsonld#t0040"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0030"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Error handling-manifest.jsonld#t0041"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0031"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Error handling-manifest.jsonld#t0042"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0032"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Error handling-manifest.jsonld#t0043"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0033"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0001"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0034"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0002"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0035"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0003"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0036"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0004"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0037"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0005"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0038"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0006"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0039"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0007"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0040"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0008"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0041"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0009"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0042"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0010"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0043"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0011"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0044"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0012"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0045"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0013"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0046"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0014"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0047"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0015"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0048"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0016"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0049"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0017"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0050"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0018"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0051"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0019"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0052"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0020"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0053"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0021"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0054"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0022"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0055"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0023"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0056"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0024"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0057"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0025"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0058"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0026"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0059"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0027"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0060"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0028"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0061"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0029"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0062"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0030"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0063"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0031"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0064"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0032"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0065"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0033"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0066"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0034"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0067"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0035"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0068"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0036"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0069"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0037"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0070"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0038"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0071"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0039"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0072"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0040"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0073"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0041"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0074"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0042"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0075"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0043"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0076"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0044"
+ "@id" : "http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0077"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0045"
+ "@id" : "http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0001"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0046"
+ "@id" : "http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0002"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0047"
+ "@id" : "http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0003"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0048"
+ "@id" : "http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0004"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0049"
+ "@id" : "http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0005"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0050"
+ "@id" : "http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0006"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0051"
+ "@id" : "http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0007"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0052"
+ "@id" : "http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0008"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0053"
+ "@id" : "http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0009"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0054"
+ "@id" : "http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0010"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0055"
+ "@id" : "http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0011"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0056"
+ "@id" : "http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0012"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0057"
+ "@id" : "http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0013"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0058"
+ "@id" : "http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0014"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0059"
+ "@id" : "http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0015"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0060"
+ "@id" : "http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0016"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0061"
+ "@id" : "http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0017"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0062"
+ "@id" : "http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0018"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0063"
+ "@id" : "http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0019"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0064"
+ "@id" : "http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0020"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0065"
+ "@id" : "http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0021"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0066"
+ "@id" : "http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0022"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0067"
+ "@id" : "http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0023"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0068"
+ "@id" : "http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0024"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0069"
+ "@id" : "http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0025"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0070"
+ "@id" : "http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0026"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0071"
+ "@id" : "http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0027"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0072"
+ "@id" : "http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0028"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0073"
+ "@id" : "http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0029"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0074"
+ "@id" : "http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0030"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0075"
+ "@id" : "http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0031"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0076"
+ "@id" : "http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0032"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Expansion-manifest.jsonld#t0077"
+ "@id" : "http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0033"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Flattening-manifest.jsonld#t0001"
+ "@id" : "http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0034"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Flattening-manifest.jsonld#t0002"
+ "@id" : "http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0035"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Flattening-manifest.jsonld#t0003"
+ "@id" : "http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0036"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Flattening-manifest.jsonld#t0004"
+ "@id" : "http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0037"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Flattening-manifest.jsonld#t0005"
+ "@id" : "http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0038"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Flattening-manifest.jsonld#t0006"
+ "@id" : "http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0039"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Flattening-manifest.jsonld#t0007"
+ "@id" : "http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0040"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Flattening-manifest.jsonld#t0008"
+ "@id" : "http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0041"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Flattening-manifest.jsonld#t0009"
+ "@id" : "http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0042"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Flattening-manifest.jsonld#t0010"
+ "@id" : "http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0043"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Flattening-manifest.jsonld#t0011"
+ "@id" : "http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0044"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Flattening-manifest.jsonld#t0012"
+ "@id" : "http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0045"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Flattening-manifest.jsonld#t0013"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0001"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Flattening-manifest.jsonld#t0014"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0002"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Flattening-manifest.jsonld#t0015"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0003"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Flattening-manifest.jsonld#t0016"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0004"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:54+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Flattening-manifest.jsonld#t0017"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0005"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Flattening-manifest.jsonld#t0018"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0006"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Flattening-manifest.jsonld#t0019"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0007"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Flattening-manifest.jsonld#t0020"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0008"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Flattening-manifest.jsonld#t0021"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0009"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Flattening-manifest.jsonld#t0022"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0010"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Flattening-manifest.jsonld#t0023"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0011"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Flattening-manifest.jsonld#t0024"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0012"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Flattening-manifest.jsonld#t0025"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0013"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Flattening-manifest.jsonld#t0026"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0014"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Flattening-manifest.jsonld#t0027"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0015"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Flattening-manifest.jsonld#t0028"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0016"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Flattening-manifest.jsonld#t0029"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0017"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Flattening-manifest.jsonld#t0030"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0018"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Flattening-manifest.jsonld#t0031"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0019"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Flattening-manifest.jsonld#t0032"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0020"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Flattening-manifest.jsonld#t0033"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0022"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Flattening-manifest.jsonld#t0034"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0023"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Flattening-manifest.jsonld#t0035"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0024"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Flattening-manifest.jsonld#t0036"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0025"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Flattening-manifest.jsonld#t0037"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0026"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Flattening-manifest.jsonld#t0038"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0027"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Flattening-manifest.jsonld#t0039"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0028"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Flattening-manifest.jsonld#t0040"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0029"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Flattening-manifest.jsonld#t0041"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0030"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Flattening-manifest.jsonld#t0042"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0031"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Flattening-manifest.jsonld#t0043"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0032"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:08+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Flattening-manifest.jsonld#t0044"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0033"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Framing-manifest.jsonld#t0001"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0034"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Framing-manifest.jsonld#t0002"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0035"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Framing-manifest.jsonld#t0003"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0036"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Framing-manifest.jsonld#t0004"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0041"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Framing-manifest.jsonld#t0005"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0042"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Framing-manifest.jsonld#t0006"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0043"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Framing-manifest.jsonld#t0007"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0044"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Framing-manifest.jsonld#t0008"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0045"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Framing-manifest.jsonld#t0009"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0046"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Framing-manifest.jsonld#t0010"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0047"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Framing-manifest.jsonld#t0011"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0048"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Framing-manifest.jsonld#t0012"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0049"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Framing-manifest.jsonld#t0013"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0050"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Framing-manifest.jsonld#t0014"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0051"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Framing-manifest.jsonld#t0015"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0052"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Framing-manifest.jsonld#t0016"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0053"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Framing-manifest.jsonld#t0017"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0054"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Framing-manifest.jsonld#t0018"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0055"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Framing-manifest.jsonld#t0019"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0056"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Framing-manifest.jsonld#t0020"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0057"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Framing-manifest.jsonld#t0021"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0058"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Deserialize RDF to JSON-LD-manifest.jsonld#t0001"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0059"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Deserialize RDF to JSON-LD-manifest.jsonld#t0002"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0060"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Deserialize RDF to JSON-LD-manifest.jsonld#t0003"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0061"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Deserialize RDF to JSON-LD-manifest.jsonld#t0004"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0062"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Deserialize RDF to JSON-LD-manifest.jsonld#t0005"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0063"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Deserialize RDF to JSON-LD-manifest.jsonld#t0006"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0064"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Deserialize RDF to JSON-LD-manifest.jsonld#t0007"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0065"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Deserialize RDF to JSON-LD-manifest.jsonld#t0008"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0066"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Deserialize RDF to JSON-LD-manifest.jsonld#t0009"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0067"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Deserialize RDF to JSON-LD-manifest.jsonld#t0010"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0068"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Deserialize RDF to JSON-LD-manifest.jsonld#t0011"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0069"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Deserialize RDF to JSON-LD-manifest.jsonld#t0012"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0070"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Deserialize RDF to JSON-LD-manifest.jsonld#t0013"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0071"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Deserialize RDF to JSON-LD-manifest.jsonld#t0014"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0072"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Deserialize RDF to JSON-LD-manifest.jsonld#t0015"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0073"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Deserialize RDF to JSON-LD-manifest.jsonld#t0016"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0074"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Deserialize RDF to JSON-LD-manifest.jsonld#t0017"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0075"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Deserialize RDF to JSON-LD-manifest.jsonld#t0018"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0076"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Normalization-manifest.jsonld#t0001"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0077"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Normalization-manifest.jsonld#t0002"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0078"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Normalization-manifest.jsonld#t0003"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0079"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Normalization-manifest.jsonld#t0004"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0080"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Normalization-manifest.jsonld#t0005"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0081"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Normalization-manifest.jsonld#t0006"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0082"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Normalization-manifest.jsonld#t0007"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0083"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Normalization-manifest.jsonld#t0008"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0084"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Normalization-manifest.jsonld#t0009"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0085"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Normalization-manifest.jsonld#t0010"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0086"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Normalization-manifest.jsonld#t0011"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0087"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Normalization-manifest.jsonld#t0012"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0088"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Normalization-manifest.jsonld#t0013"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0089"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Normalization-manifest.jsonld#t0014"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0090"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Normalization-manifest.jsonld#t0015"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0091"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Normalization-manifest.jsonld#t0016"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0092"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Normalization-manifest.jsonld#t0017"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0093"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Normalization-manifest.jsonld#t0018"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0094"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Normalization-manifest.jsonld#t0019"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0095"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Normalization-manifest.jsonld#t0020"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0096"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Normalization-manifest.jsonld#t0021"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0097"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Normalization-manifest.jsonld#t0022"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0098"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Normalization-manifest.jsonld#t0023"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0099"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Normalization-manifest.jsonld#t0024"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0100"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Normalization-manifest.jsonld#t0025"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0101"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Normalization-manifest.jsonld#t0026"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0102"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Normalization-manifest.jsonld#t0027"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0103"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Normalization-manifest.jsonld#t0028"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0104"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Normalization-manifest.jsonld#t0029"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0105"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Normalization-manifest.jsonld#t0030"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0106"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Normalization-manifest.jsonld#t0031"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0107"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Normalization-manifest.jsonld#t0032"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0108"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Normalization-manifest.jsonld#t0033"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0109"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Normalization-manifest.jsonld#t0034"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0110"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Normalization-manifest.jsonld#t0035"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0111"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Normalization-manifest.jsonld#t0036"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0112"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Normalization-manifest.jsonld#t0037"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0113"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Normalization-manifest.jsonld#t0038"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0114"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Normalization-manifest.jsonld#t0039"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0115"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Normalization-manifest.jsonld#t0040"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0116"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Normalization-manifest.jsonld#t0041"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0117"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Normalization-manifest.jsonld#t0042"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0118"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Normalization-manifest.jsonld#t0043"
+ "@id" : "http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0119"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Normalization-manifest.jsonld#t0044"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0001"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:09+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Normalization-manifest.jsonld#t0045"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0002"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Normalization-manifest.jsonld#t0046"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0003"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Normalization-manifest.jsonld#t0047"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0004"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Normalization-manifest.jsonld#t0048"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0005"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Normalization-manifest.jsonld#t0049"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0006"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Normalization-manifest.jsonld#t0050"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0007"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Normalization-manifest.jsonld#t0051"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0008"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Normalization-manifest.jsonld#t0052"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0009"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Normalization-manifest.jsonld#t0053"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0010"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Normalization-manifest.jsonld#t0054"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0011"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Normalization-manifest.jsonld#t0055"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0012"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Normalization-manifest.jsonld#t0056"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0013"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Normalization-manifest.jsonld#t0057"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0014"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Remote document-manifest.jsonld#t0001"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0015"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Remote document-manifest.jsonld#t0002"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0016"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:failed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Remote document-manifest.jsonld#t0003"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0017"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:failed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Remote document-manifest.jsonld#t0004"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0018"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:failed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Remote document-manifest.jsonld#t0009"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0019"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Remote document-manifest.jsonld#t0010"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0020"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:failed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Remote document-manifest.jsonld#t0011"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0021"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:failed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Remote document-manifest.jsonld#t0012"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0022"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:failed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0001"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0023"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0002"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0024"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0003"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0025"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0004"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0026"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0005"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0027"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0006"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0028"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0007"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0029"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0008"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0030"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0009"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0031"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0010"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0032"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0011"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0033"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0012"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0034"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0013"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0035"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0014"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0036"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0015"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0037"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0016"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0038"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0017"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0039"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0018"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0040"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0019"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0041"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0020"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0042"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0022"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0043"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0023"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0044"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0024"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0045"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0025"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0046"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0026"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0047"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0027"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0048"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0028"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0049"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0029"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0050"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0030"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0051"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0031"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0052"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0032"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0053"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0033"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0054"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0034"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0055"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0035"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0056"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0036"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0057"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0041"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0058"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0042"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0059"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0043"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0060"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0044"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0061"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0045"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0062"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0046"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0063"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0047"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0064"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0048"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0065"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0049"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0066"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0050"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0067"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0051"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0068"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0052"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0069"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0053"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0070"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0054"
+ "@id" : "http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0071"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0055"
+ "@id" : "http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0001"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0056"
+ "@id" : "http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0002"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0057"
+ "@id" : "http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0003"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0058"
+ "@id" : "http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0004"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0059"
+ "@id" : "http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0005"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0060"
+ "@id" : "http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0006"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0061"
+ "@id" : "http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0007"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0062"
+ "@id" : "http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0008"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0063"
+ "@id" : "http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0009"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0064"
+ "@id" : "http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0010"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0065"
+ "@id" : "http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0011"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0066"
+ "@id" : "http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0012"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0067"
+ "@id" : "http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0013"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0068"
+ "@id" : "http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0014"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0069"
+ "@id" : "http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0015"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0070"
+ "@id" : "http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0016"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0071"
+ "@id" : "http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0017"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0072"
+ "@id" : "http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0018"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0073"
+ "@id" : "http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0019"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0074"
+ "@id" : "http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0020"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0075"
+ "@id" : "http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0021"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0076"
+ "@id" : "http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0022"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0077"
+ "@id" : "http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0023"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0078"
+ "@id" : "http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0024"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0079"
+ "@id" : "http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0025"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0080"
+ "@id" : "http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0026"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0081"
+ "@id" : "http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0027"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0082"
+ "@id" : "http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0028"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0083"
+ "@id" : "http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0029"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0084"
+ "@id" : "http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0030"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0085"
+ "@id" : "http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0031"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0086"
+ "@id" : "http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0032"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0087"
+ "@id" : "http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0033"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0088"
+ "@id" : "http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0034"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0089"
+ "@id" : "http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0035"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0090"
+ "@id" : "http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0036"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0091"
+ "@id" : "http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0037"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0092"
+ "@id" : "http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0038"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:55+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0093"
+ "@id" : "http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0039"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:56+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0094"
+ "@id" : "http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0040"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:56+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0095"
+ "@id" : "http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0041"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:56+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0096"
+ "@id" : "http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0042"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:56+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0097"
+ "@id" : "http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0043"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:56+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0098"
+ "@id" : "http://json-ld.org/test-suite/tests/frame-manifest.jsonld#t0001"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:56+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0099"
+ "@id" : "http://json-ld.org/test-suite/tests/frame-manifest.jsonld#t0002"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:56+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0100"
+ "@id" : "http://json-ld.org/test-suite/tests/frame-manifest.jsonld#t0003"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:56+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0101"
+ "@id" : "http://json-ld.org/test-suite/tests/frame-manifest.jsonld#t0004"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:56+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0102"
+ "@id" : "http://json-ld.org/test-suite/tests/frame-manifest.jsonld#t0005"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:56+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0103"
+ "@id" : "http://json-ld.org/test-suite/tests/frame-manifest.jsonld#t0006"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:56+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0104"
+ "@id" : "http://json-ld.org/test-suite/tests/frame-manifest.jsonld#t0007"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:56+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0105"
+ "@id" : "http://json-ld.org/test-suite/tests/frame-manifest.jsonld#t0008"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:56+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0106"
+ "@id" : "http://json-ld.org/test-suite/tests/frame-manifest.jsonld#t0009"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:56+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0107"
+ "@id" : "http://json-ld.org/test-suite/tests/frame-manifest.jsonld#t0010"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:56+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0108"
+ "@id" : "http://json-ld.org/test-suite/tests/frame-manifest.jsonld#t0011"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:56+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0109"
+ "@id" : "http://json-ld.org/test-suite/tests/frame-manifest.jsonld#t0012"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:56+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0110"
+ "@id" : "http://json-ld.org/test-suite/tests/frame-manifest.jsonld#t0013"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:56+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0111"
+ "@id" : "http://json-ld.org/test-suite/tests/frame-manifest.jsonld#t0014"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:56+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0112"
+ "@id" : "http://json-ld.org/test-suite/tests/frame-manifest.jsonld#t0015"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:56+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0113"
+ "@id" : "http://json-ld.org/test-suite/tests/frame-manifest.jsonld#t0016"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:56+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0114"
+ "@id" : "http://json-ld.org/test-suite/tests/frame-manifest.jsonld#t0017"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:56+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0115"
+ "@id" : "http://json-ld.org/test-suite/tests/frame-manifest.jsonld#t0018"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:56+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0116"
+ "@id" : "http://json-ld.org/test-suite/tests/frame-manifest.jsonld#t0019"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:56+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0117"
+ "@id" : "http://json-ld.org/test-suite/tests/frame-manifest.jsonld#t0020"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:56+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
}, {
"@type" : "earl:Assertion",
"earl:assertedBy" : {
"@id" : "http://tristan.github.com/foaf#me"
},
"earl:subject" : {
- "@id" : "http://github.com/jsonld-java/jsonld-java"
+ "@id" : "https://github.com/jsonld-java/jsonld-java"
},
"earl:test" : {
- "@id" : "http://json-ld.org/test-suite/tests/Serialization to RDF-manifest.jsonld#t0118"
+ "@id" : "http://json-ld.org/test-suite/tests/frame-manifest.jsonld#t0021"
},
"earl:result" : {
"@type" : "earl:TestResult",
- "earl:outcome" : "earl:passed",
+ "earl:outcome" : {
+ "@id" : "earl:passed"
+ },
"dc:date" : {
- "@value" : "2013-10-10T17:29:10+02:00",
+ "@value" : "2014-02-25T13:04:56+11:00",
"@type" : "xsd:dateTime"
}
},
- "earl:mode" : "earl:automatic"
+ "earl:mode" : {
+ "@id" : "earl:automatic"
+ }
} ]
}
\ No newline at end of file
diff --git a/core/reports/report.nq b/core/reports/report.nq
index 174ab101..1c74dc0a 100755
--- a/core/reports/report.nq
+++ b/core/reports/report.nq
@@ -1,15 +1,3 @@
- .
- "2013-05-16"^^ .
- "An Implementation of the JSON-LD Specification for Java"@en .
- .
- .
- .
- "JSONLD-Java" .
- "Java" .
- "JSONLD-Java" .
- .
- .
- .
.
.
.
@@ -17,4062 +5,4038 @@
"Implementor" .
"Peter Ansell" .
"Contributor" .
+ .
+ "2013-05-16"^^ .
+ "An Implementation of the JSON-LD Specification for Java"@en .
+ .
+ .
+ .
+ "JSONLD-Java" .
+ "Java" .
+ "JSONLD-Java" .
+ .
+ .
+ .
_:b0 .
_:b0 .
-_:b0 "earl:automatic" .
+_:b0 .
_:b0 _:b1 .
-_:b0 .
-_:b0 .
-_:b1 "2013-10-10T17:29:07+02:00"^^ .
+_:b0 .
+_:b0 .
+_:b1 "2014-02-25T13:04:53+11:00"^^ .
_:b1 .
-_:b1 "earl:passed" .
+_:b1 .
_:b10 .
_:b10 .
-_:b10 "earl:automatic" .
+_:b10 .
_:b10 _:b11 .
-_:b10 .
-_:b10 .
+_:b10 .
+_:b10 .
_:b100 .
_:b100 .
-_:b100 "earl:automatic" .
+_:b100 .
_:b100 _:b101 .
-_:b100 .
-_:b100 .
-_:b101 "2013-10-10T17:29:08+02:00"^^ .
+_:b100 .
+_:b100 .
+_:b101 "2014-02-25T13:04:53+11:00"^^ .
_:b101 .
-_:b101 "earl:passed" .
+_:b101 .
_:b102 .
_:b102 .
-_:b102 "earl:automatic" .
+_:b102 .
_:b102 _:b103 .
-_:b102 .
-_:b102 .
-_:b103 "2013-10-10T17:29:08+02:00"^^ .
+_:b102 .
+_:b102 .
+_:b103 "2014-02-25T13:04:53+11:00"^^ .
_:b103 .
-_:b103 "earl:passed" .
+_:b103 .
_:b104 .
_:b104 .
-_:b104 "earl:automatic" .
+_:b104 .
_:b104 _:b105 .
-_:b104 .
-_:b104 .
-_:b105 "2013-10-10T17:29:08+02:00"^^ .
+_:b104 .
+_:b104 .
+_:b105 "2014-02-25T13:04:53+11:00"^^ .
_:b105 .
-_:b105 "earl:passed" .
+_:b105 .
_:b106 .
_:b106 .
-_:b106 "earl:automatic" .
+_:b106 .
_:b106 _:b107 .
-_:b106 .
-_:b106 .
-_:b107 "2013-10-10T17:29:08+02:00"^^ .
+_:b106 .
+_:b106 .
+_:b107 "2014-02-25T13:04:53+11:00"^^ .
_:b107 .
-_:b107 "earl:passed" .
+_:b107 .
_:b108 .
_:b108 .
-_:b108 "earl:automatic" .
+_:b108 .
_:b108 _:b109 .
-_:b108 .
-_:b108 .
-_:b109 "2013-10-10T17:29:08+02:00"^^ .
+_:b108 .
+_:b108 .
+_:b109 "2014-02-25T13:04:53+11:00"^^ .
_:b109 .
-_:b109 "earl:passed" .
-_:b11 "2013-10-10T17:29:07+02:00"^^ .
+_:b109 .
+_:b11 "2014-02-25T13:04:53+11:00"^^ .
_:b11