UnitTypeDTO schema from Master Data Management OpenAPI Specification
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/epa/refs/heads/main/json-schema/cam-master-data-unit-type-dto-schema.json", "title": "UnitTypeDTO", "description": "UnitTypeDTO schema from Master Data Management OpenAPI Specification", "type": "object", "properties": { "unitTypeCode": { "type": "string", "example": "string" }, "unitTypeDescription": { "type": "string", "example": "string" }, "unitTypeGroupCode": { "type": "string", "example": "string" }, "unitTypeGroupDescription": { "type": "string", "example": "string" }, "sortOrder": { "type": "string", "example": "string" } }, "required": [ "unitTypeCode", "unitTypeDescription", "unitTypeGroupCode", "unitTypeGroupDescription", "sortOrder" ] }