I need to validate the following: Json data: { tag: 'picture', picture: 'some string '}
Json schema: { tag: {'type': 'string'}, ??????? // The second key should be the data value of the 'tag'
Edit: I wish to accomplish this with ajv schema validator
Thank you!!