Financials
Financials structure
type Financials {
period: String!
docperiod: String!
doctype: FinancialReportType!
isrevenueapprox: Boolean!
inc: [FinancialItem!]
bst: [FinancialItem!]
cfl: [FinancialItem!]
}
Fields
period
● String!
Financial year
docperiod
● String!
Period of the report (e.g. report with docperiod FY2021 contains periods FY2021 and FY2020)
doctype
● FinancialReportType!
File type for the report
isrevenueapprox
● Boolean!
Has Scribe approximated the revenues
inc
● [FinancialItem!]
Income statement
bst
● [FinancialItem!]
Balance sheet
cfl
● [FinancialItem!]
Cash flow
Example
{
"period": "FY2022",
"docperiod": "FY2021",
"isrevenueapprox": true,
"inc": [
{
"term": "Revenues",
"tag": "increv",
"val": 100000,
"notes": 4
}
],
"bst": [
{
"term": "Revenues",
"tag": "increv",
"val": 100000,
"notes": 4
}
],
"cfl": [
{
"term": "Revenues",
"tag": "increv",
"val": 100000,
"notes": 4
}
]
}
Member Of
Company
object ● CompanySearchResult
object