MDMS - V2
Adding data to MDMS-V2
Overview
Functionalities
Steps
Steps to create schema and data
"SchemaDefinition": {
"tenantId": "pb",
"code": "TradeLicense.TradeSubType",
"description": "Trade sub-type which is a child of Trade type",
"definition": {
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"name": {
"type": "string",
"pattern": "^[A-Za-z]+$"
},
"code": {
"type": "string"
},
"tradeTypeCode": {
"type": "string"
}
},
"required": [
"name",
"code",
"tradeTypeCode"
],
"x-unique": [
"name"
],
"x-ref-schema": [
{
"fieldPath": "tradeTypeCode",
"schemaCode": "TradeLicense.TradeType"
}
]
},
"isActive": true
}Add data to new MDMS
Last updated
Was this helpful?