Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Welcome to Software Development on Codidact!

Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.

Is there a name for a data format like `key[type]=value`?

+7
−0

I'm working on an integration with a proprietary (black box) system.

There is some TCP communication that occurs between two microservices. I've managed to sniff the traffic and it's being sent in following data format

ID[I]=123, USER[S]=JOHN DOE, PASS[S]=0000, 

My understanding is that each line is an object, with each child separated by a comma and structured like key[type]=value

Types (assumed - but very confident)

  • I = Integer
  • S = String

Assuming this, the JSON equivalent of the above example would be

{
  "ID": 123,
  "USER": "JOHN DOE",
  "PASS": "0000"
}

My question is if this is similar to any known standard? I'd like to look into this more (rather than making more assumptions).

It's worth noting that it's very possible that this is completely a proprietary data format unique to the system I'm working with. I figured that if it's following any sort of standard I could read up on it more. I also changed the actual keys/values so as not to give out anything secret, the data format is the same.

History
Why does this post require moderator attention?
You might want to add some details to your flag.
Why should this post be closed?

1 comment thread

Do you mean, you saw the **literal ASCII text chars/bytes** "_ID[I]=123, USER[S]=8080, PASS[S]=0000,_... (2 comments)

0 answers

Sign up to answer this question »