I am not able to map the schema.json file with my plist file. Ideally I'd like to have my plist file adhere to the schema.json file.
Below is what I have. I am not able to read the policy (I'm assuming its because the plist is incorrect).
What would be the correct plist hierarchy to map with the schema.json?
schema.json
{
"type": "object",
"properties": {
"tenant": {
"type": "string",
"description": "Tenant Name",
"title": "Tenant"
}
}
}
Mac plist:
<?xml version="1.0" encoding="UTF-8"?>
<plist version="1.0">
<dict>
<key>com.google.Chrome.extensions.ohlbcjfdhfghdfhgdfghla</key>
<dict>
<key>PPP</key>
<dict>
<key>state</key>
<string>always</string>
<key>value</key>
<dict>
<key>tenant</key>
<string>PRI</string>
</dict>
</dict>
</dict>
</dict>
</plist>
I am following this article:
Thanks