...
List Of Value (LOV) service is used for storing commonly used data set that can be shared among multiple line of business. To onboard LoV and use its function functions properly, the cases described below might fit your situation and can be references with.
LoV Service Access
Note: Write Access to ListOfValue are only limited to certain identified individuals and groups. any incoming request should be send to Vadim Lawrence (Unlicensed) to process, until further notice.
For the current available endpoints you can consult the OpenAPI Specification in the following table:
Environments | Endpoint | OpenAPI Specification |
NCD / Development |
| https://ncdsafsecsurapp-lov-service.azurewebsites.net/swagger/index.html |
NCT / Test |
| https://nctsafsecsurapp-lov-service.azurewebsites.net/swagger/index.html |
NCA / Acceptance | ||
PCP / Production |
| https://pcpsafsecsurapp-lov-service.azurewebsites.net/swagger/index.html?urls.primaryName=v2 |
Line Of Business Application init setup in LoV
In order for an application to be recognized, please provide the following example entry to MOLE team that information will be inserted into LOV after.
Caution - The following characters are restricted and cannot be used in the Id property: '/', '\\', '?', '#'. for more details: https://docs.microsoft.com/en-us/dotnet/api/microsoft.azure.documents.resource.id?view=azure-dotnet
Code Block |
---|
{
"id": "next avaiable ID Number",
"listOfValueType": "LineOfBusiness",
"valueTextEnglish": "Application Name - EN",
"valueTextFrench": "Application Name - FR",
"order": 0,
"customValue1": "AN", // Short form of Application name
"customValue2": "",
"parentList": null, // If have use it, otherwise, null
"isTypeActive": true, // Always true
"isValueActive": true, // Active: True; InActive: False
"searchCriteria": "",
"ownerShips": [
{
"businessName": "", // Business name
"businessOwner": "", // Business Owner
"businessContactEmail": "", // PO email
"businessContactPhone": "" // PO phone
}
],
"customProperties": [ // Free json style custom properties
{
"CustomValue1": ""
},
{
"CustomValue2": ""
}
]
} |
Line Of Business Lookup Data
...