
| Array Index | Type | Description |
|---|---|---|
| 1-n | Any | Any type of value (boolean, integer, number, string, object, array or null). |
| Property Name | Type | Description |
|---|---|---|
| @graph | array, object | @graph |
| Additional Properties | Type | Description |
| Any Property | Any | All values are valid, no restrictions. |
"graph": {
"additionalProperties": true,
"properties": {
"@graph": {
"type": [
"array",
"object"
],
"description": "Used to express a graph.",
"additionalItems": {
"anyOf": [
{
"$ref": "#/definitions/common"
}
]
}
}
}
}