JSON-LD elements for data tracking
| Name | Type | Description | Notes |
|---|---|---|---|
| context | JsonLdContext | [optional] | |
| id | str | URI of the resource | [optional] |
| type | str | One of the NiMADS data types | [optional] |
from neurostore_sdk.models.json_ld import JsonLd
# TODO update the JSON string below
json = "{}"
# create an instance of JsonLd from a JSON string
json_ld_instance = JsonLd.from_json(json)
# print the JSON string representation of the object
print(JsonLd.to_json())
# convert the object into a dict
json_ld_dict = json_ld_instance.to_dict()
# create an instance of JsonLd from a dict
json_ld_from_dict = JsonLd.from_dict(json_ld_dict)