# frozen_string_literal: true require_relative "../../../spec/swagger_helper" require_relative "spec_helper" RSpec.configure do |config| # Override swagger docs to generate only this file: config.openapi_specs = { 'dfc.yaml' => { openapi: '3.0.1', info: { title: 'OFN DFC API', version: 'v0.1.7' }, description: <<~HTML,
This API implements the Data Food Consortium (DFC) specifications. It serves and reads semantic data encoded in JSON-LD.
Unfortunately, this description does not appear in the Swagger UI. :-( HTML components: { securitySchemes: { oidc_token: { type: :http, scheme: :bearer, bearerFormat: "JWT", description: <<~HTML OpenID Connect token from a trusted platform:
HTML }, ofn_api_token: { type: :apiKey, in: :header, name: 'X-Api-Token', description: "API token of an authorized OFN user" }, ofn_session: { type: :apiKey, in: :cookie, name: '_ofn_session_id', description: <<~HTML Session cookie of a logged in user. It allows only read access due to CSRF protection. HTML }, } }, security: [ { oidc_token: [] }, { ofn_api_token: [] }, { ofn_session: [] }, ], paths: {}, servers: [ { url: "/" }, ] }, } end