Master Data Management Service (MDMS) and Configuration updates

Configuration Details

Service name
Feature
Changes (v0.2)
Changes (Consolidated)

Plan Service

Plan Service Persister

Devops

resource-generator values

plan-service values

census-sevice values

For MDMS-V2 changes, refer to the files below for MDMS schema and data that needs to be added for Microplanning-v0.2 or add through below postman collection:

Postman Collection

1) Add below schemas:

1.1) Add hcm-microplanning.MixedStrategyOperationLogic schema:

{
                "type": "object",
                "title": "Generated schema for Root",
                "$schema": "http://json-schema.org/draft-07/schema#",
                "required": [
                    "isFixedPost",
                    "DistributionProcess",
                    "RegistrationProcess",
                    "CategoriesNotAllowed"
                ],
                "x-unique": [
                    "isFixedPost",
                    "DistributionProcess",
                    "RegistrationProcess"
                ],
                "properties": {
                    "isFixedPost": {
                        "type": "boolean"
                    },
                    "DistributionProcess": {
                        "type": "string"
                    },
                    "RegistrationProcess": {
                        "type": "string"
                    },
                    "CategoriesNotAllowed": {
                        "type": "array",
                        "items": {
                            "type": "string"
                        }
                    }
                }
            }

1.1) Add hcm-microplanning.MicroplanCampaignTypes schema:

 {
        "tenantId": "mz",
        "code": "hcm-microplanning.MicroplanCampaignTypes",
        "description": "Campaign types enabled for microplan",
        "definition": {
            "type": "object",
            "title": "Microplan Campaign Types Schema",
            "$schema": "http://json-schema.org/draft-09/schema#",
            "required": [
                "code",
                "name"
            ],
            "x-unique": [
                "code"
            ],
            "properties": {
                "name": {
                    "type": "string"
                },
                "code": {
                    "type": "string"
                }
            }
        },
        "isActive": true
    }
2) Add data for the below mentioned MDMS modules:

Localisation

Changes are being tracked in the given Excel sheet:

Last updated

Was this helpful?