{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "Estimate", "type": "object", "description": "A single consensus estimate data point aggregating analyst projections for a security, metric, and fiscal period.", "properties": { "requestId": { "type": "string", "description": "Identifier that was used for the request." }, "fsymId": { "type": "['string', 'null']", "description": "FactSet Regional Security Identifier." }, "metric": { "type": "['string', 'null']", "description": "The estimate metric identifier." }, "periodicity": { "type": "['string', 'null']", "description": "Periodicity of the fiscal period." }, "fiscalPeriod": { "type": "['integer', 'null']", "description": "Fiscal period indicator." }, "fiscalYear": { "type": "['integer', 'null']", "description": "Fiscal year in YYYY format." }, "fiscalEndDate": { "type": "['string', 'null']", "description": "The date the fiscal period ends." }, "currency": { "type": "['string', 'null']", "description": "ISO 4217 currency code." }, "estimateCount": { "type": "['integer', 'null']", "description": "Number of analyst estimates included in the consensus." }, "mean": { "type": "['number', 'null']", "description": "Mean (average) of analyst estimates." }, "median": { "type": "['number', 'null']", "description": "Median of analyst estimates." }, "high": { "type": "['number', 'null']", "description": "Highest analyst estimate." }, "low": { "type": "['number', 'null']", "description": "Lowest analyst estimate." }, "standardDeviation": { "type": "['number', 'null']", "description": "Standard deviation of analyst estimates." } } }