{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/JournalCreate", "title": "JournalCreate", "type": "object", "required": [ "code", "displayName" ], "properties": { "code": { "type": "string", "maxLength": 10, "example": "example_value" }, "displayName": { "type": "string", "maxLength": 100, "example": "example_value" }, "templateDisplayName": { "type": "string", "maxLength": 100, "example": "example_value" } } }