/ingest
, whereas Community Edition collectors drop the JSON data to disk which then has to be uploaded manually to BloodHound via Administration → File Ingest, or to the API endpoint /file-upload
.
Users of BloodHound Enterprise can also manually upload JSON data collected from Community Edition collectors.
Users of both BHE and BHCE may also create their own JSON files and upload them to BloodHound.
Basic JSON Format
The JSON format contains two main objects**:** -data -An array of collected objects. One JSON file contains only one type of object, for example computers.- meta
- An object containing meta-information about the collection and the
data
array. - methods is a bitmask of the collection method used. This is used for the BloodHound ingestor to know what data to expect. Possible values can be found in models.go as
CollectionMethods
. - type describes the type of objects in the data array. One JSON file can only contain one object type. Possible values can be found in models.go as
DataType
. - count is an integer representing the number of objects in the
data
object array. - version is an integer representing the version of the JSON format.