{ "$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-code-table-dto-schema.json", "title": "CodeTableDto", "description": "CodeTableDto schema from Master Data Management OpenAPI Specification", "type": "object", "properties": { "code": { "type": "string", "description": "Code", "example": "string" }, "name": { "type": "string", "description": "Display Name", "example": "EPA Facility" } }, "required": [ "code", "name" ] }