FuelTypeDTO 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-fuel-type-dto-schema.json", "title": "FuelTypeDTO", "description": "FuelTypeDTO schema from Master Data Management OpenAPI Specification", "type": "object", "properties": { "fuelTypeCode": { "type": "string", "example": "string" }, "fuelTypeDescription": { "type": "string", "example": "string" }, "fuelGroupCode": { "type": "string", "example": "string" }, "fuelGroupDescription": { "type": "string", "example": "string" } }, "required": [ "fuelTypeCode", "fuelTypeDescription", "fuelGroupCode", "fuelGroupDescription" ] }