{ "$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-data-set-dto-schema.json", "title": "DataSetDTO", "description": "DataSetDTO schema from Master Data Management OpenAPI Specification", "type": "object", "properties": { "dataSetCode": { "type": "string", "example": "string" }, "groupCode": { "type": "string", "example": "string" }, "displayName": { "type": "string", "example": "EPA Facility" }, "noResultsMessage": { "type": "string", "example": "string" }, "tables": { "type": "array", "items": { "$ref": "#/components/schemas/DataTableDTO" }, "example": [ "string" ] } }, "required": [ "dataSetCode", "groupCode", "displayName", "noResultsMessage", "tables" ] }