Module: RDF::JSON::Extensions::Statement

Defined in:
lib/rdf/json/extensions.rb

Overview

RDF/JSON extensions for RDF::Statement.

Instance Method Summary collapse

Instance Method Details

#to_rdf_jsonHash

Returns the RDF/JSON representation of this statement.

Returns:

  • (Hash)


92
93
94
# File 'lib/rdf/json/extensions.rb', line 92

def to_rdf_json
  {subject.to_s => {predicate.to_s => [object.to_rdf_json]}}
end