-
Does the generated classes only hold config values with fixed keys? authors: {
alice {
email: 0
country: venice
}
bob {
email: "bob@hotmail.com"
country: rio
}
tim {
email: "tim@yahoo.com"
country: czech
}
} which is based on the following json schema: authors {
type: object
additionalProperties {
type: object
additionalProperties: false
properties {
email {
type: string
}
country {
type: string
}
}
}
} where the author names alice, bob, tim are unknown but the value is an object of known structure. |
Beta Was this translation helpful? Give feedback.
Answered by
carueda
May 4, 2023
Replies: 1 comment
-
Unfortunately, this is not implemented. Maybe a future version will include this as part of general schema-related adjustments. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
carueda
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Unfortunately, this is not implemented. Maybe a future version will include this as part of general schema-related adjustments.