From the information provided alone, this tree does not fall into any special category. I imagine that you're thinking along the lines of binary trees, but once you get nodes with a number of children other than 2 or 0, there's no special classification.
Depending on how exactly it's implemented and used, it may or may not be an ordered tree: ordered tree nodes store their children with an explicit intentional order rather than in an arbitrary order.
If it is an ordered tree (or at least is implemented as one), any given node can be expressed as a series of numbers indicating a sequence of node-to-child movements, starting at the base node. For example,
0, 0, 1
would represent the right child of the sole child of the left-most child of the base node. Storing references to nodes in this way can simplify a lot of things, and it's pretty easy to write a simple function to iterate through such a series and return the resulting node.