redis / redis-om-python

Object mapping, and more, for Redis and Python
MIT License
1.07k stars 108 forks source link

pk appear in jsonschema #487

Open Mograbi opened 1 year ago

Mograbi commented 1 year ago

after creating an object of JsonModel I want to have the jsonschema for this model when running schema_json() I get a "pk" as part of the schema which shouldn't be

{
   "title":"Callback",
   "type":"object",
   "properties":{
      "pk":{
         "title":"Pk",
         "type":"string"
      },
      ....