{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Country", "title": "Country", "required": [ "acronym", "name" ], "type": "object", "properties": { "acronym": { "type": "string" }, "name": { "type": "string" } }, "example": { "acronym": "BRA", "name": "Brazil" } }