Questions tagged [json-schema]
The json-schema tag has no summary.
8 questions
0
votes
3
answers
248
views
Is JSON Schema-based runtime validation more practical than static type hints in real-world Python applications?
Question Body
I'm currently developing a Python coding standard for use in enterprise-level internal systems. Our typical use cases include:
API input/output validation
Reading from databases, ...
-1
votes
3
answers
186
views
Content Negotiation: Is a meta representation of a resource, like a JSON Schema, an appropriate REST representation?
This MDN article here summarises quite well the technique of Content Negotiation on a REST API.
In essence, if we have a GET /student/:id endpoint, we might want to see different representations of ...
-1
votes
1
answer
84
views
Which is better for my use case? A hybrid customer data model or a document store customer data model?
I am trying to get some preliminary insight into the pros and cons of using either a hybrid model (jsonb document-relational) or an all jsonb document store model for customer data in PostgreSQL. Both ...
2
votes
1
answer
66
views
Content Types of JSON in particular schema
My application stores two different types of json data in s3.
For example: Schema-Foo and Schema-Bar.
Up to now I used the content-type application/json for both.
I would like to make a distinction ...