Hey all! Not sure if this the best place to ask, b...
# plugins-general
s
Hey all! Not sure if this the best place to ask, but I’m trying to specify a JSON schema for an API endpoint where one of the objects has an auto-incrementing key, like so:
Copy code
{
  "data": {
    "2": {
      "id": 2,
      "type": "HIDDEN",
      "question": "Question1",
      "section_id": 1,
      "shown": true
    },
    "3": {
      "id": 3,
      "type": "HIDDEN",
      "question": "Email Address",
      "section_id": 1,
      "shown": true
    },
    ....
}
I’ve tried a few options for my
schema.json
file for this tap, but no luck. Any clues?