Factset · Schema
sharesOutstandingResponseObject
FinancialFinancial DataInvestment AnalyticsMarket DataPortfolio AnalyticsResearch
Properties
| Name | Type | Description |
|---|---|---|
| fsymId | string | Security-level FactSet Permanent Identifier associated with the identifier. |
| date | string | Date of the record in YYYY-MM-DD format. |
| documentId | string | Unique Identifier for each document or filing which contains the outstanding shares position. |
| requestId | string | FactSet Security Permanent Identifier that was used for the request. |
| reportDate | string | Reporting date of the position. |
| publicationDate | string | Exact date that results have been communicated to the market. |
| fiscalYear | integer | The company's fiscal year corresponding to the report. |
| reportingPeriodDescription | string | Textual description of the reporting period. |
| reportingPeriod | integer | Code representing the unique reporting period. Options are as follows: - 1 - 1st Quarter - 2 - 2nd Quarter - 3 - 3rd Quarter - 4 - 4th Quarter - 6 - Mid-Year |
| description | string | Different stock types based on the rights and benefits from ownership. |
| adrDescription | string | Different stock types based on the rights and benefits from ownership for the ADR. |
| adrRatio | number | Number of common or ordinary shares that are equivalent to one American Depositary Receipt (ADR). |
| adrFsymId | string | Unique FactSet generated identifier assigned to a security, representing the ADR security. |
| totalOutstanding | number | Number of shares outstanding as of `date`. |
| adrTotalOutstanding | number | Number of shares outstanding for the ADR as of `date`. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "sharesOutstandingResponseObject",
"type": "object",
"properties": {
"fsymId": {
"type": "string",
"description": "Security-level FactSet Permanent Identifier associated with the identifier."
},
"date": {
"type": "string",
"description": "Date of the record in YYYY-MM-DD format."
},
"documentId": {
"type": "string",
"description": "Unique Identifier for each document or filing which contains the outstanding shares position."
},
"requestId": {
"type": "string",
"description": "FactSet Security Permanent Identifier that was used for the request."
},
"reportDate": {
"type": "string",
"description": "Reporting date of the position."
},
"publicationDate": {
"type": "string",
"description": "Exact date that results have been communicated to the market."
},
"fiscalYear": {
"type": "integer",
"description": "The company's fiscal year corresponding to the report."
},
"reportingPeriodDescription": {
"type": "string",
"description": "Textual description of the reporting period."
},
"reportingPeriod": {
"type": "integer",
"description": "Code representing the unique reporting period. Options are as follows:\n- 1 - 1st Quarter\n- 2 - 2nd Quarter\n- 3 - 3rd Quarter\n- 4 - 4th Quarter\n- 6 - Mid-Year\n"
},
"description": {
"type": "string",
"description": "Different stock types based on the rights and benefits from ownership."
},
"adrDescription": {
"type": "string",
"description": "Different stock types based on the rights and benefits from ownership for the ADR."
},
"adrRatio": {
"type": "number",
"description": "Number of common or ordinary shares that are equivalent to one American Depositary Receipt (ADR)."
},
"adrFsymId": {
"type": "string",
"description": "Unique FactSet generated identifier assigned to a security, representing the ADR security."
},
"totalOutstanding": {
"type": "number",
"description": "Number of shares outstanding as of `date`."
},
"adrTotalOutstanding": {
"type": "number",
"description": "Number of shares outstanding for the ADR as of `date`."
}
}
}