Skip to content

Instantly share code, notes, and snippets.

@jalotra
Last active February 21, 2025 09:28
Show Gist options
  • Save jalotra/104a7a60a6653b9c50c579c36522fc35 to your computer and use it in GitHub Desktop.
Save jalotra/104a7a60a6653b9c50c579c36522fc35 to your computer and use it in GitHub Desktop.
{
"id": "uuid4",
"description": "A representation of a account object post",
"active" : true,
"version" : "0.0.1"
"createadAt" : <timestamp>,
"updatedAt" : <timestamp>,
"coreObjectType" : "ACCOUNT"
"type": "object",
"required": ["title", "content", "author"],
"properties": {
"title": {
"type": "string"
},
"content": {
"type": "string"
},
"publishedDate": {
"type": "string",
"format": "date-time"
},
"tags": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment