{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "ShippingTermRequest", "type": "object", "properties": { "name": { "type": "string", "minLength": 1, "maxLength": 100 }, "description": { "type": "string", "nullable": true }, "active": { "type": "boolean" } }, "required": [ "name" ] }