Sha256: 1f650531ef440369111c6ffc69c80294a910433141ee1ed21b428bcc2258d57e

Contents?: true

Size: 1.75 KB

Versions: 3

Compression:

Stored size: 1.75 KB

Contents

module WhosGotDirt
  module Requests
    # Requests for entities.
    #
    # Many APIs support the parameters below. For API-specific parameters, visit
    # the API's request class.
    #
    # You may filter `dissolution_date` the same as `founding_date`.
    #
    # @example Find entities by name (fuzzy match).
    #   "name~=": "ACME Inc."
    #
    # @example Find entities by classification.
    #   "classification": "Private Limited Company"
    #
    # @example Find entities with one of many classifications.
    #   "classification|=": "Private Limited Company"
    #
    # @example Find entities with a creation date greater than or equal to a given value.
    #   "created_at>=": "2010-01-01"
    #
    # @example Find organizations by founding date.
    #   "founding_date": "2010-01-01"
    #
    # @example Find organizations with a founding date greater than or equal to a given value.
    #   "founding_date>=": "2010-01-03"
    #
    # @example Find organizations with a founding date greater than a given value.
    #   "founding_date>": "2010-01-02"
    #
    # @example Find organizations with a founding date less than or equal to a given value.
    #   "founding_date<=": "2010-01-04"
    #
    # @example Find organizations with a founding date less than a given value.
    #   "founding_date<": "2010-01-05"
    #
    # @example Find entities by identifier.
    #   "identifiers": [{
    #     "identifier": "911653725",
    #     "scheme": "IRS Employer Identification Number"
    #   }]
    #
    # @example Find entities by address (fuzzy match).
    #   "contact_details": [{
    #     "type": "address",
    #     "value~=": "52 London"
    #   }]
    #
    # @example Limit the number of results.
    #   "limit": 5
    module Entity
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
whos_got_dirt-0.0.4 lib/whos_got_dirt/requests/entity.rb
whos_got_dirt-0.0.3 lib/whos_got_dirt/requests/entity.rb
whos_got_dirt-0.0.2 lib/whos_got_dirt/requests/entity.rb