Giter Site home page Giter Site logo

json-eval's Introduction

JSON EVAL

JSON EVAL is simple json evaluator that may be simplify business rule.

Operator

Operator supported

No. Operator Precedence
1 < 1 (left to right)
2 <= 1 (left to right)
3 > 1 (left to right)
4 >= 1 (left to right)
5 != 2 (left to right)
6. == 2 (left to right)
6 && 3 (left to right)
7 || 4 (left to right)
8 ()

Evaluate

json-eval can evaluate json value with logical expression.

We have below json:

{
    "glossary": {
        "title": "example glossary",
        "GlossDiv": {
            "total": 1000
            "title": "S",
            "GlossList": {
                "GlossEntry": {
                    "ID": "SGML",
                    "SortAs": "SGML",
                    "GlossTerm": "Standard Generalized Markup Language",
                    "Acronym": "SGML",
                    "Abbrev": "ISO 8879:1986",
                    "GlossDef": {
                        "para": "A meta-markup language, used to create markup languages such as DocBook.",
                        "GlossSeeAlso": [
                            "GML",
                            "XML"
                        ]
                    },
                    "GlossSee": "markup"
                }
            }
        }
    }
}

expression:

glossary.title == "example glossary" && glossary.total > 100

Array of Index

json eval also has capability to extract array value from json. for example,

glossary.GlossDiv.GlossList.GlossEntry.GlossDef.GlossSeeAlso[0]

Result:

"GML"

Example

Code snippets

jsonStr := `
    {
        "glossary": {
            "title": "example",
            "GlossDiv": {
                "total": 1000
            }
        }
    }    
`
expression := `glossary.title == "example" && (glossary.GlossDiv.total > 100)`
jsonEval := jsoneval.NewJsonEvaluator()
result, err := jsonEval.EvaluateJson(expression, jsonStr)
if err != nil {
    fmt.Println(err)
} else {
    fmt.Println(result)
}

Result:

true 

json-eval's People

Contributors

karno123 avatar

Stargazers

 avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.