no.unit.nva.commons.json.ld.JsonLdInlineContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of json Show documentation
Show all versions of json Show documentation
A commons library for the NVA project
The newest version!
package no.unit.nva.commons.json.ld;
import com.fasterxml.jackson.annotation.JsonValue;
import com.fasterxml.jackson.databind.JsonNode;
/**
* Record to allow representation of a JSON-LD inline context (see example).
*
*
* {
* "@vocab" : "https://example.org/vocab",
* "id" : "@id",
* "type" : "@type"
* }
*
* @param context The inline JSON-LD context object.
*/
public record JsonLdInlineContext(@JsonValue JsonNode context) implements JsonLdContext {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy