Skip to content

Instantly share code, notes, and snippets.

@maocorte
Created June 25, 2021 07:31
Show Gist options
  • Save maocorte/57581f519e333132861cc654e7945c80 to your computer and use it in GitHub Desktop.
Save maocorte/57581f519e333132861cc654e7945c80 to your computer and use it in GitHub Desktop.
{
"name": "SpaceStoreEntity",
"type": "record",
"namespace": "io.radicalbit.continuum.spaces.models",
"fields": [
{
"name": "uuid",
"type": {
"type": "string",
"logicalType": "uuid"
}
},
{
"name": "tenantUUID",
"type": {
"type": "string",
"logicalType": "uuid"
}
},
{
"name": "name",
"type": "string"
},
{
"name": "groups",
"type": {
"type": "array",
"items": {
"type": "string",
"logicalType": "uuid"
}
}
},
{
"name": "clientID",
"type": "string"
},
{
"name": "clientSecret",
"type": "string"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment