-
Hello, I have a question regarding the Is this a bug? NOTE: about the python client, we haven't used it yet, so we can't validate that it works perfectly. However, we can transfer ownership of the repository if and when you wish (it was created with this in mind). |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
This particular quirk has been around for a while, it basically comes down to API fields that are declared as Would this diff fix the generation? diff --git a/schema.yml b/schema.yml
index daf3a9eba..26edc61bd 100644
--- a/schema.yml
+++ b/schema.yml
@@ -30498,6 +30498,7 @@ components:
parent_name:
type: string
readOnly: true
+ nullable: true
users:
type: array
items: |
Beta Was this translation helpful? Give feedback.
This particular quirk has been around for a while, it basically comes down to API fields that are declared as
read_only=True
that are not required, as they are still marked as required in the schema.Would this diff fix the generation?