You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# If, after the algorithm outlined above is run, the resulting element is an JSON object with just a @graph property, element is set to the value of @graph's value.
# Otherwise, if result contains the key @set or @list:
92
92
# The result must contain at most one other key and that key must be @index. Otherwise, an invalid set or list object error has been detected and processing is aborted.
93
93
raiseJsonLdError::InvalidSetOrListObject,
94
94
"@set or @list may only contain @index: #{output_object.keys.inspect}"unless
95
95
(output_object.keys - %w(@set@list@index)).empty?
96
96
97
97
# If result contains the key @set, then set result to the key's associated value.
0 commit comments