Trade tag JSON shape

Share this page URL with an AI assistant to generate importable JSON for EndureTrade trade tags. Import from the web app using a JSON file or pasted text.

Canonical URL: https://www.enduretrade.com/docs/tags/import

Field reference

FieldTypeRequiredNotes
idstring (uuid)NoIf provided and matches an existing tag, updates that row; otherwise ignored on create
labelstringYesMin length 1; must be unique per user on create
descriptionstringNoOptional notes
subTagsstring[]NoNested labels; defaults to []. When set, we will have <label>:<subTag> pairs for each subTag.

Example JSON

Payload may be a single object or an array of objects. All items are validated before any import writes.

[
  {
    "label": "Setup quality",
    "description": "How clean the setup was",
    "subTags": [
      "A+",
      "B",
      "C"
    ]
  },
  {
    "label": "Session",
    "subTags": [
      "London",
      "New York"
    ]
  }
]

Import rules

When id matches an existing record you own, that record is updated. When id is missing or does not match, a new record is created and any foreign id is ignored. Read-only fields such as userId and timestamps are ignored if present in export files.