A user submission of a project to AlternativeProto
Record Key
tid
Timestamp-based ID
Properties
alternativeTo
array
of
string
Optional
Services this project is an alternative to
authType
string
Required
Authentication method used by the project
Known values:
oauth, app-password, nonecreatedAt
string
datetime
Required
Timestamp when the submission was created
description
string
Required
Description of the project
maxLength: 5000 bytesicon
blob
Optional
Project icon image blob
maxSize: 1.0 MBisOpenSource
boolean
Optional
Whether the project is open source
name
string
Required
The project name
maxLength: 200 bytesrepositoryUrl
string
uri
Optional
Source code repository URL
tags
array
of
string
Optional
Tags for categorization
url
string
uri
Required
The project URL
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"description",
"url",
"authType",
"createdAt"
],
"properties": {
"url": {
"type": "string",
"format": "uri",
"description": "The project URL"
},
"icon": {
"type": "blob",
"accept": [
"image/png",
"image/jpeg",
"image/webp",
"image/svg+xml",
"image/x-icon",
"image/vnd.microsoft.icon"
],
"maxSize": 1000000,
"description": "Project icon image blob"
},
"name": {
"type": "string",
"maxLength": 200,
"description": "The project name"
},
"tags": {
"type": "array",
"items": {
"type": "string",
"maxLength": 50
},
"description": "Tags for categorization"
},
"authType": {
"type": "string",
"description": "Authentication method used by the project",
"knownValues": [
"oauth",
"app-password",
"none"
]
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Timestamp when the submission was created"
},
"description": {
"type": "string",
"maxLength": 5000,
"description": "Description of the project"
},
"isOpenSource": {
"type": "boolean",
"description": "Whether the project is open source"
},
"alternativeTo": {
"type": "array",
"items": {
"type": "string",
"maxLength": 100
},
"description": "Services this project is an alternative to"
},
"repositoryUrl": {
"type": "string",
"format": "uri",
"description": "Source code repository URL"
}
}
},
"description": "A user submission of a project to AlternativeProto"
}