JsonLD
JSON-LD is a method of using JSON to express linked data.
Tags
Table of Contents
Constants
- AT_CONTEXT = '@context'
- Any JSON object may carry a key @context, which indicates a context that is active at the scope of that object, and within to nested objects.
- AT_ID = '@id'
- JSON-LD supports references to objects with a reserved key @id which can be used either as an object identifier or a reference to an object identifier. The value of @id must be a string.
- AT_TYPE = '@type'
- The type of the object.
Constants
AT_CONTEXT
Any JSON object may carry a key @context, which indicates a context that is active at the scope of that object, and within to nested objects.
public
mixed
AT_CONTEXT
= '@context'
Tags
AT_ID
JSON-LD supports references to objects with a reserved key @id which can be used either as an object identifier or a reference to an object identifier. The value of @id must be a string.
public
mixed
AT_ID
= '@id'
Tags
AT_TYPE
The type of the object.
public
mixed
AT_TYPE
= '@type'