Skip to content
Discussion options

You must be logged in to vote

Hi @hui-zhou-a, the format for the EDT locations is as follows (Json schema):

{
  "type": "object",
  "properties": {
    "dir": {
      "type": "string",
      "enum": ["input", "output"]
    },
    "name": {
      "type": "string"
    }
  },
  "required": ["dir", "name"],
  "additionalProperties": false
}

So in you case, for registering e.g. input "Thru_2x.Thru_2x.length" as parameter:

{
    "dir" : "input",
    "name" : "Thru_2x.Thru_2x.length"
} 

The location formats are dynamic and depend on the connector node type. That makes it difficult to document. The best way to find out the proper format for each node type is (do this once):

  • create the node in UI mode
  • register parameters/re…

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by rfahlberg
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants