Factset · Schema

RelevanceScoreRange

Represents a valid range for user relevancy score for signal events. The upper bound of the range is represented by the attribute **gt** or **gte**. The lower bound of the range is presented by **lt** or **lte** The range can contain either of the bounds or both. e.g. { "gt": 0.4, "lt": 0.8 }

FinancialFinancial DataInvestment AnalyticsMarket DataPortfolio AnalyticsResearch

Properties

Name Type Description
gt number
gte number
lt number
lte number
View JSON Schema on GitHub

JSON Schema

factset-signals-relevance-score-range-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "RelevanceScoreRange",
  "type": "object",
  "description": "Represents a valid range for user relevancy score for signal events. The upper bound of the range is represented by the attribute **gt** or **gte**. The lower bound of the range is presented by **lt** or **lte** The range can contain either of the bounds or both. e.g. { \"gt\": 0.4, \"lt\": 0.8 }\n",
  "properties": {
    "gt": {
      "type": "number"
    },
    "gte": {
      "type": "number"
    },
    "lt": {
      "type": "number"
    },
    "lte": {
      "type": "number"
    }
  }
}