Skip to content

Instantly share code, notes, and snippets.

@karthikrg
Last active March 2, 2016 20:17
Show Gist options
  • Save karthikrg/bb5f660263ae7b36d470 to your computer and use it in GitHub Desktop.
Save karthikrg/bb5f660263ae7b36d470 to your computer and use it in GitHub Desktop.
Sample pegasus record
{
"type" : "record",
"name" : "MemberProfile",
"namespace" : "com.linkedin.pegasus",
"doc" : "Represents a member profile",
"fields" : [
{ "name" : "firstName", "type" : "String" },
{ "name" : "lastName", "type" : "String", "optional" : "true" },
{ "name" : "companyName", "type" : "String", "optional" : "true" },
{ "name" : "age", "type" : "int", "optional" : "true" } ]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment