The Wayback Machine - https://web.archive.org/web/20220329021552/https://github.com/topics/jsonschema
Skip to content
#

jsonschema

Here are 195 public repositories matching this topic...

s-knibbs
s-knibbs commented Jun 30, 2019

It seems that the typing module doesn't flatten nested literal type definitions, so the following does not currently work:

SuccessStatus = Literal[200, 201, 204]
ClientError = Literal[404, 401, 403, 409, 400]
ServerError = Literal[500, 504, 503]

@dataclass
class HttpResponse(JsonSchemaMixin):
    status: Literal[SuccessStatus, ClientError, ServerError]
    ...
enhancement good first issue
nirik
nirik commented Apr 12, 2019

Right now the default/docs version of the public consumer just prints out all of each message to stdout. This is nice, but it would be nice if there was something like fedmsg --terse where it just prints out a small subset to give you an idea of the message. This way you can see a lot more info, and can actually run it to watch what all is going on in fedora.

~ fedmsg-tail-3 --terse
[2019-04-1

enhancement good first issue

Improve this page

Add a description, image, and links to the jsonschema topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the jsonschema topic, visit your repo's landing page and select "manage topics."

Learn more