Hi,
I'm getting following error when I "Parse JSON".
{
"errors": [
{
"message": "Invalid type. Expected String but got Null.",
"lineNumber": 0,
"linePosition": 0,
"path": "[15]['\"Betalarens kontonr.\"']",
"schemaId": "#/items/properties/\"Betalarens kontonr.\"",
"errorType": "type",
"childErrors": []
},
Here is my schema
{
"type": "array",
"items": {
"type": "object",
"properties": {
"\"Leveransref.: \"": {
"type": "string"
},
"\"Leveransdatum: \"": {
"type": "string"
},
"\"Buntbelopp: \"": {
"type": "string"
},
"\"Mottagarens kontonr: \"": {
"type": "string"
},
"\"Summa ej avstämt\"": {
"type": "string"
},
"\"Valuta\"": {
"type": "string"
},
"\"Datum. \"": {
"type": "string"
},
"\"Klient: \"": {
"type": "string"
},
"\"Filnamn: \"": {
"type": "string"
},
"\"Referens\"": {
"type": "string"
},
"\"Betalarens kontonr.\"": {
"type": "string"
},
"\"Summa från betalare\"": {
"type": "string"
},
"\"Fritext1\"": {
"type": "string"
},
"\"Fritext2\"": {
"type": "string"
},
"\"Total IN transaktionsl�pnummer\"": {
"type": "string"
},
"\"Mottagande bankgironummer\"": {
"type": "string"
},
"\"Organisationsnummer\"": {
"type": "string"
},
"": {}
},
"required": [
"\"Leveransref.: \"",
"\"Leveransdatum: \"",
"\"Buntbelopp: \"",
"\"Mottagarens kontonr: \"",
"\"Summa ej avstämt\"",
"\"Valuta\"",
"\"Datum. \"",
"\"Klient: \"",
"\"Filnamn: \"",
"\"Referens\"",
"\"Betalarens kontonr.\"",
"\"Summa från betalare\"",
"\"Fritext1\"",
"\"Fritext2\"",
"\"Total IN transaktionsl�pnummer\"",
"\"Mottagande bankgironummer\"",
"\"Organisationsnummer\"",
""
]
}
}
I have tried to edit the schema according to below picture, but I have not managed get it right.

Please help me edit the attached schema so that it includes "null".
Thanks!