diff --git a/dhscanner-ast.cabal b/dhscanner-ast.cabal
--- a/dhscanner-ast.cabal
+++ b/dhscanner-ast.cabal
@@ -22,7 +22,7 @@
     and models both of them as plain sequential code blocks. Every file has exactly one ast that represents it.
     Non Haskell parogrammers note: The ast is /immutable/ (like everything else in Haskell ...)
 
-version:            1.1.3
+version:            1.1.4
 license:            GPL-3.0-only
 license-file:       LICENSE
 author:             OrenGitHub
diff --git a/src/Ast.hs b/src/Ast.hs
--- a/src/Ast.hs
+++ b/src/Ast.hs
@@ -326,8 +326,8 @@
 -- * Simple source import
 --
 -- @
--- # stmtImportSource is "json" 
--- # stmtImportFromSource is Nothing 
+-- # stmtImportSource is (ImportSource (ImportThirdPartyContent "json")) <--- because json is /not/ an existing dir in the repo
+-- # stmtImportSpecific is Nothing 
 -- # stmtImportAlias is Nothing
 -- import json
 -- @
@@ -335,8 +335,8 @@
 -- * Specifying a specific name from source
 --
 -- @
--- # stmtImportSource is "urllib.parse"
--- # stmtImportFromSource is Just "urljoin"
+-- # stmtImportSource is (ImportSource (ImportThirdPartyContent "urllib.parse")) <--- because urllib/parse is /not/ an existing dir in the repo
+-- # stmtImportSpecific is Just (ImportSpecific "urljoin")
 -- # stmtImportAlias is Nothing
 -- from urllib.parse import urljoin
 -- @
@@ -344,9 +344,9 @@
 -- * Specifying an alias for a source import
 --
 -- @
--- # stmtImportSource is "networkx"
+-- # stmtImportSource is (ImportSource (ImportThirdPartyContent "networkx")) <--- because networkx is /not/ an existing dir in the repo
 -- # stmtImportFromSource is Nothing
--- # stmtImportAlias is Just "nx"
+-- # stmtImportAlias is Just (ImportAlias "nx")
 -- import networkx as nx
 -- @
 --
@@ -354,8 +354,8 @@
    = StmtImportContent
      {
          stmtImportSource :: ImportSource,
-         stmtImportFromSource :: Maybe String,
-         stmtImportAlias :: Maybe String,
+         stmtImportSpecific :: Maybe ImportSpecific,
+         stmtImportAlias :: Maybe ImportAlias,
          stmtImportLocation :: Location
      }
      deriving ( Show, Eq, Ord, Generic, ToJSON, FromJSON )
@@ -368,7 +368,16 @@
 -- | Filename or directory
 newtype ImportLocalContent = ImportLocalContent FilePath deriving ( Show, Eq, Ord, Generic, ToJSON, FromJSON )
 
+-- |
+-- Names that do not exist as directories in the repo
+-- are classified by default as being "third party"
 newtype ImportThirdPartyContent = ImportThirdPartyContent String deriving ( Show, Eq, Ord, Generic, ToJSON, FromJSON )
+
+-- | See `StmtImportContent`
+newtype ImportSpecific = ImportSpecific String deriving ( Show, Eq, Ord, Generic, ToJSON, FromJSON )
+
+-- | See `StmtImportContent`
+newtype ImportAlias = ImportAlias String deriving ( Show, Eq, Ord, Generic, ToJSON, FromJSON )
 
 data StmtContinueContent
    = StmtContinueContent
