Class: JSON::LD::Format

Inherits:
RDF::Format show all
Defined in:
vendor/bundler/ruby/3.3.0/bundler/gems/json-ld-fcd3aedd310a/lib/json/ld/format.rb

Overview

JSON-LD format specification.

Examples:

Obtaining an JSON-LD format class

RDF::Format.for(:jsonld)           #=> JSON::LD::Format
RDF::Format.for("etc/foaf.jsonld")
RDF::Format.for(:file_name         => "etc/foaf.jsonld")
RDF::Format.for(file_extension: "jsonld")
RDF::Format.for(:content_type   => "application/ld+json")

Obtaining serialization format MIME types

RDF::Format.content_types      #=> {"application/ld+json" => [JSON::LD::Format],
                                    "application/x-ld+json" => [JSON::LD::Format]}

Obtaining serialization format file extension mappings

RDF::Format.file_extensions    #=> {:jsonld => [JSON::LD::Format] }

See Also:

Constant Summary collapse

LD_FORMATS =

Specify how to execute CLI commands for each supported format. Derived formats (e.g., YAML-LD) define their own entrypoints.

{
  jsonld: {
    expand: lambda { |input, **options|
      JSON::LD::API.expand(input,
        serializer: JSON::LD::API.method(:serializer),
                           **options)
    },
    compact: lambda { |input, **options|
      JSON::LD::API.compact(input,
        options[:context],
        serializer: JSON::LD::API.method(:serializer),
                            **options)
    },
    flatten: lambda { |input, **options|
      JSON::LD::API.flatten(input,
        options[:context],
        serializer: JSON::LD::API.method(:serializer),
                            **options)
    },
    frame: lambda { |input, **options|
      JSON::LD::API.frame(input,
        options[:frame],
        serializer: JSON::LD::API.method(:serializer),
                            **options)
    }
  }
}

Class Method Summary collapse

Methods inherited from RDF::Format

accept_type, accept_types, content_encoding, content_type, content_types, each, file_extension, file_extensions, for, reader, reader_symbols, reader_types, require, symbols, uri, uris, writer, writer_symbols, writer_types

Class Method Details

.cli_commandsHash{Symbol => Hash}

Hash of CLI commands appropriate for this format:

Returns:



124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
# File 'vendor/bundler/ruby/3.3.0/bundler/gems/json-ld-fcd3aedd310a/lib/json/ld/format.rb', line 124

def self.cli_commands
  {
    expand: {
      description: "Expand JSON-LD or parsed RDF",
      parse: false,
      help: "expand [--context <context-file>] files ...",
      filter: { output_format: LD_FORMATS.keys },  # Only shows output format set
      lambda: lambda do |files, **options|
        options = options.merge(expandContext: options.delete(:context)) if options.key?(:context)
        cli_exec(:expand, files, **options)
      end,
      option_use: { context: :removed }
    },
    compact: {
      description: "Compact JSON-LD or parsed RDF",
      parse: false,
      filter: { output_format: LD_FORMATS.keys },  # Only shows output format set
      help: "compact --context <context-file> files ...",
      lambda: lambda do |files, **options|
        raise ArgumentError, "Compacting requires a context" unless options[:context]

        cli_exec(:compact, files, **options)
      end,
      options: [
        RDF::CLI::Option.new(
          symbol: :context,
          datatype: RDF::URI,
          control: :url2,
          use: :required,
          on: ["--context CONTEXT"],
          description: "Context to use when compacting."
        ) { |arg| RDF::URI(arg).absolute? ? RDF::URI(arg) : StringIO.new(File.read(arg)) }
      ]
    },
    flatten: {
      description: "Flatten JSON-LD or parsed RDF",
      parse: false,
      help: "flatten [--context <context-file>] files ...",
      filter: { output_format: LD_FORMATS.keys },  # Only shows output format set
      lambda: lambda do |files, **options|
        cli_exec(:compact, files, **options)
      end,
      options: [
        RDF::CLI::Option.new(
          symbol: :context,
          datatype: RDF::URI,
          control: :url2,
          use: :required,
          on: ["--context CONTEXT"],
          description: "Context to use when compacting."
        ) { |arg| RDF::URI(arg) },
        RDF::CLI::Option.new(
          symbol: :createAnnotations,
          datatype: TrueClass,
          default: false,
          control: :checkbox,
          on: ["--[no-]create-annotations"],
          description: "Unfold embedded nodes which can be represented using `@annotation`."
        )
      ]
    },
    frame: {
      description: "Frame JSON-LD or parsed RDF",
      parse: false,
      help: "frame --frame <frame-file>  files ...",
      filter: { output_format: LD_FORMATS.keys },  # Only shows output format set
      lambda: lambda do |files, **options|
        raise ArgumentError, "Framing requires a frame" unless options[:frame]

        cli_exec(:compact, files, **options)
      end,
      option_use: { context: :removed },
      options: [
        RDF::CLI::Option.new(
          symbol: :frame,
          datatype: RDF::URI,
          control: :url2,
          use: :required,
          on: ["--frame FRAME"],
          description: "Frame to use when serializing."
        ) { |arg| RDF::URI(arg).absolute? ? RDF::URI(arg) : StringIO.new(File.read(arg)) }
      ]
    }
  }
end

.detect(sample) ⇒ Boolean

Sample detection to see if it matches JSON-LD

Use a text sample to detect the format of an input file. Sub-classes implement a matcher sufficient to detect probably format matches, including disambiguating between other similar formats.

Parameters:

  • sample (String)

    Beginning several bytes (~ 1K) of input.

Returns:

  • (Boolean)


43
44
45
46
47
# File 'vendor/bundler/ruby/3.3.0/bundler/gems/json-ld-fcd3aedd310a/lib/json/ld/format.rb', line 43

def self.detect(sample)
  !!sample.match(/\{\s*"@(id|context|type)"/m) &&
    # Exclude CSVW metadata
    !sample.include?("http://www.w3.org/ns/csvw")
end

.nameObject

Override normal format name



218
219
220
# File 'vendor/bundler/ruby/3.3.0/bundler/gems/json-ld-fcd3aedd310a/lib/json/ld/format.rb', line 218

def self.name
  "JSON-LD"
end

.to_symObject

Override normal symbol generation



212
213
214
# File 'vendor/bundler/ruby/3.3.0/bundler/gems/json-ld-fcd3aedd310a/lib/json/ld/format.rb', line 212

def self.to_sym
  :jsonld
end