Help for my test mod

Hello everyone.
I want to create a little test mod to importe new objects for different job. The first is a large banner for the weaver to make. when I start the game everything is ok but when the weaver is created the game reporte me 2 errors (screenshot).

Even when I shut down the errors it is impossible to access the weaver crafting menu. I put the mode here:https://drive.google.com/file/d/0B3EolR9sskC8S3ozQ1FzamdPQlE/view?usp=sharing

please help me cause I’m not verry good in coding, thanks in advance.

ps sorry if it is dificult tout understand but I’m french and my english writing is not so good

Typo.

file jobs/weaver/recipes/wall_large_banner_recipe.json contains the following snippet:

  "produces": [
      {
         "item"/"marev_mode/decoration/wall_large_banner"
      }
  ]

Note that after "item" you have a /. You want a colon:

  "produces": [
      {
         "item":"marev_mode/decoration/wall_large_banner"
      }
  ]

I haven’t tested the mod, so I don’t know what other issues it may have (if any), but that’s what the error in the screenshot is telling you. I recommend running your JSON files through this JSON validator when these things happen, so you can quickly fix minor issues such as this.

thanks for your answer.

I used the JSON validator to correct my Json files, they are ok but when I start a game or a new game, I have this error:

but all my JSON files were ok.
I give you the new mod : marev_mod.zip - Google Drive

thanks for your help