Browse the extensions reference

libraryTaxonomy

returns LibraryTaxonomy

Get a taxonomy by id or (standard, version).

Arguments

NameTypeDescription
idIDThe taxonomy's id. Give this or the standard/version pair.
standardStringThe standard, used with version when no id is given.
versionStringThe version, used with standard when no id is given.
includeElementCountBooleanInclude the taxonomy's element count.

Returns LibraryTaxonomy

A library taxonomy (fac, us-gaap, rs-gaap, …).

FieldTypeDescription
idString!
nameString!
descriptionString
standardStringfac | us-gaap | rs-gaap | ifrs
versionString
namespaceUriString
taxonomyTypeString!chart_of_accounts | reporting | mapping | schedule
isSharedBoolean!
isActiveBoolean!
isLockedBoolean!
elementCountIntTotal elements in this taxonomy (computed on demand)

Example

query
{ libraryTaxonomy { id name description standard } }
curl
curl -X POST "https://api.robosystems.ai/extensions/$GRAPH_ID/graphql" \
  -H "X-API-Key: $ROBOSYSTEMS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query": "{ libraryTaxonomy { id name description standard } }"}'