Support types with const generics (#239)

Co-authored-by: Spencer Sharkey <spsharkey@tesla.com>
This commit is contained in:
Graham Esau 2023-08-27 20:50:20 +01:00 committed by GitHub
parent 0303f0334e
commit 37478d764e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 129 additions and 21 deletions

View file

@ -0,0 +1,14 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "const-generics-z-42",
"type": "object",
"required": [
"foo"
],
"properties": {
"foo": {
"type": "integer",
"format": "int32"
}
}
}