Problems with the schema map from the manifest file.

User332204
Kilo Guru

It seems like the schema map from the manifest file is not found. I have created the manifest file in dev and trying to upload it to teams but I get a message from teams that they can't read the file, I took a look at the json file and it seems like there is something wrong with the schema map SN provides:

find_real_file.png

Going into to link itself shows that there is clearly something wrong, the XML is empty:

find_real_file.png

I tested the "Validate app" that teams has and the file also fails there. Has anyone else encountered this? 

 

 

1 ACCEPTED SOLUTION

Hello,

I solved this issue by removing the localization part of the JSON file

View solution in original post

4 REPLIES 4

KYOSO
Tera Contributor

I'm having the same problem.

Can you show me 「ServiceNow for Microsoft Teams Manifests」?

Hello,

I solved this issue by removing the localization part of the JSON file

Fu
ServiceNow Employee
ServiceNow Employee

Removing the localization in the JSON file is the correct workaround.

 

@KYOSO 

  1. Open the manifest.json.
  2. Scroll down to find "locatizationInfo" and remove the entire section. For example:
       "localizationInfo": {
            "defaultLanguageTag": "en",
            "additionalLanguages": [
                {
                    "languageTag": "es",
                    "file": "es.json"
                }
            ]
        }​
  3. When you rezip the files, make sure to select all the files individually then zip. Do not zip the parent folder or Microsoft will throw a parsing error when uploading to Teams.

niparson
Tera Contributor

Thank you, point 3 about zipping the files individually was the issue for me! 🙂