A project record containing project information and metadata
Properties
View raw schema
{
"type": "record",
"record": {
"type": "object",
"required": [
"url",
"name",
"images",
"imageUrl",
"createdAt",
"description"
],
"properties": {
"url": {
"type": "string",
"format": "uri",
"description": "The project's URL"
},
"name": {
"type": "string",
"description": "The name of the project"
},
"imageUrl": {
"type": "string",
"format": "uri",
"description": "Primary image URL for the project"
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "When the project was created"
},
"description": {
"type": "string",
"description": "Description of the project"
}
}
},
"description": "A project record containing project information and metadata"
}