Platform Function schema definition disappears in Playground

I am doing +Add Function in the playground and pasting a large json schema which seems to be accepted but when I edit the function this is all that has been stored from my schema!


{
  "name": "my_function_name",
  "strict": false,
  "parameters": {
    "type": "object",
    "properties": {},
    "required": []
  }
}
1 Like

This happens to me when the schema is incorrect (and an error is thrown)
Issue resolved when the schema was fixed.

Probably would be nice to not reset/delete the schema though, and instead alert the user that the input is incorrect.