All Downloads are FREE. Search and download functionalities are using the official Maven repository.

no.unit.nva.commons.json.ld.JsonLdInlineContext Maven / Gradle / Ivy

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