AccountTypeDTO

AccountTypeDTO schema from Master Data Management OpenAPI Specification

GovernmentEnvironmentalOpen DataAir QualityWater QualityHazardous WasteComplianceEmissions

Properties

Name Type Description
accountTypeCode string
accountTypeDescription string
accountTypeGroupCode string
accountTypeGroupDescription string
View JSON Schema on GitHub

JSON Schema

cam-master-data-account-type-dto-schema.json Raw ↑
{
  "$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-account-type-dto-schema.json",
  "title": "AccountTypeDTO",
  "description": "AccountTypeDTO schema from Master Data Management OpenAPI Specification",
  "type": "object",
  "properties": {
    "accountTypeCode": {
      "type": "string",
      "example": "string"
    },
    "accountTypeDescription": {
      "type": "string",
      "example": "string"
    },
    "accountTypeGroupCode": {
      "type": "string",
      "example": "string"
    },
    "accountTypeGroupDescription": {
      "type": "string",
      "example": "string"
    }
  },
  "required": [
    "accountTypeCode",
    "accountTypeDescription",
    "accountTypeGroupCode",
    "accountTypeGroupDescription"
  ]
}