diff --git a/orgmode-parse.cabal b/orgmode-parse.cabal
--- a/orgmode-parse.cabal
+++ b/orgmode-parse.cabal
@@ -1,5 +1,5 @@
 Name:                   orgmode-parse
-Version:                0.1.0.1
+Version:                0.1.0.2
 Author:                 Parnell Springmeyer <parnell@digitalmentat.com>
 Maintainer:             Parnell Springmeyer <parnell@digitalmentat.com>
 License:                BSD3
diff --git a/src/Data/OrgMode/Parse/Types.hs b/src/Data/OrgMode/Parse/Types.hs
--- a/src/Data/OrgMode/Parse/Types.hs
+++ b/src/Data/OrgMode/Parse/Types.hs
@@ -32,6 +32,8 @@
 , Repeater (..)
 , DelayType (..)
 , Delay (..)
+, LevelDepth (..)
+, TitleMeta (..)
 , YearMonthDay(..)
 , YearMonthDay'(..)
 ) where
@@ -55,6 +57,12 @@
 
 instance A.ToJSON Document where
 instance A.FromJSON Document where
+
+newtype LevelDepth = LevelDepth Int
+  deriving (Eq, Show, Num)
+
+data TitleMeta = TitleMeta Text (Maybe Stats) (Maybe [Tag])
+  deriving (Eq, Show)
 
 data Heading = Heading
     { level       :: Level              -- ^ Org headline nesting level (1 is at the top)
