{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Article", "title": "Article", "type": "object", "properties": { "type": { "type": "string" }, "id": { "type": "string" }, "title": { "type": "string" }, "description": { "type": "string" }, "body": { "type": "string" }, "author_id": { "type": "integer" }, "state": { "type": "string" }, "created_at": { "type": "integer" }, "updated_at": { "type": "integer" } } }