Documentation Index Fetch the complete documentation index at: https://docs.compozy.ai/llms.txt
Use this file to discover all available pages before exploring further.
Configuration Structure
The author configuration supports both individual authors and organizations:
Basic Author
Full Author
Organization
author :
name : John Doe
email : john@example.com
API Reference
Name of the author or organization maintaining the workflow.
Contact email address for the author or organization.
Website or profile URL where users can find more information about the author.
Name of the organization associated with the workflow or author.
List of additional contributors to the workflow. Each contributor can have their own name, email, url, and organization fields.
https://compozy.dev/schemas/authors.json
{
"type" : "object" ,
"properties" : {
"author" : {
"type" : "object" ,
"required" : [ "name" ],
"properties" : {
"name" : {
"type" : "string" ,
"description" : "Name of the author or organization"
},
"email" : {
"type" : "string" ,
"format" : "email" ,
"description" : "Contact email address"
},
"url" : {
"type" : "string" ,
"format" : "uri" ,
"description" : "Website or profile URL"
},
"organization" : {
"type" : "string" ,
"description" : "Associated organization name"
},
"contributors" : {
"type" : "array" ,
"items" : {
"type" : "object" ,
"required" : [ "name" ],
"properties" : {
"name" : {
"type" : "string" ,
"description" : "Contributor's name"
},
"email" : {
"type" : "string" ,
"format" : "email" ,
"description" : "Contributor's email"
},
"url" : {
"type" : "string" ,
"format" : "uri" ,
"description" : "Contributor's website or profile"
},
"organization" : {
"type" : "string" ,
"description" : "Contributor's organization"
}
}
}
}
}
}
}
}
See all 56 lines