Git Product home page Git Product logo

Comments (2)

madhurikoduru avatar madhurikoduru commented on August 31, 2024 1

Thanks a lot. Yes that helps

from gabs.

mihaitodor avatar mihaitodor commented on August 31, 2024

Hi @madhurikoduru! The way you described your issue makes it really, really hard for me to understand what you're trying to achieve...

Here's what I managed to put together:

package main

import (
	"log"

	"github.com/Jeffail/gabs/v2"
)

const data = `{
	"ActionId": "PU",
	"ActionName": "InsertACRDecision",
	"BCAssetId": "54bc8609-6830-46bf-b452-2cefe7436d1b",
	"BCAssetType": "ChangeRequest",
	"ProjectBCAssetId": "64d3387a-daaa-4ade-ab0a-da99a9dfd5f0",
	"AttributesToUpdate": {
		"CRSubmissionTime": "2021-03-15T12:13:22+06:00",
		"CRDecisions": [
			{
				"CRDecisionTime": "2022-02-11T11:11:08+06:00",
				"CRDecisionNum": "1",
				"CRDecisionStatus": "approve"
			}
		]
	}
}`

func main() {
	AAObj, err := gabs.ParseJSON([]byte(data))
	if err != nil {
		log.Fatalf("Failed to parse data: %s", err)
	}

	decisions := AAObj.Path("AttributesToUpdate.CRDecisions")
	decisionElements := decisions.Children()
	if len(decisionElements) == 0 {
		log.Fatal("No CRDecisions found")
	}

	for idx, decision := range decisionElements {
		if !decision.ExistsP("CRDecisionTime") {
			log.Printf("CRDecisionTime doesn't exist for decision ID %d", idx)
		}
	}
}

It handles multiple child objects in the CRDecisions array. Also, if that array is empty or if the CRDecisions key is missing entirely, you should see the "No CRDecisions found" message.

Hope that helps.

from gabs.

Related Issues (20)

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.