From 0563ef6b4d27c66216030a14a1f0c98ab6d1a2b7 Mon Sep 17 00:00:00 2001 From: Will Date: Thu, 25 Apr 2024 17:00:18 -0700 Subject: [PATCH] Update new_connector.md --- docs/new_connector.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/new_connector.md b/docs/new_connector.md index 827db14..57f172a 100644 --- a/docs/new_connector.md +++ b/docs/new_connector.md @@ -64,7 +64,7 @@ r = requests.request("POST", f"{NEMESIS_URL}/data", auth=basic, data=data, heade ## Other Structured Data -For other types of structured data, only a single message needs to be posted to the `http:///api/data` API route, e.g. Step 2 in the downloading processing example. The `metadata["data_type"]` field should be one of the types defined in the [ODR](odr/references/). The appropriate ODR document will also define the fields and structure needed for the datatype. +For other types of structured data, only a single message needs to be posted to the `http:///api/data` API route, e.g. Step 2 in the downloading processing example. The `metadata["data_type"]` field should be one of the types defined in the [ODR](https://github.com/SpecterOps/Nemesis/tree/main/docs/odr). The appropriate ODR document will also define the fields and structure needed for the datatype. Note that the "data" section of the message is an array of dictionaries, i.e., multiple instances of a datatype can be posted in a single message. For example, multiple process messages can exist in the single post.