submit_content_creation
Submit content creation activity drafts to report details like title, description, date, type, metrics, and URL, ensuring accurate activity tracking for Google Developer Experts.
Instructions
Submit a content creation activity draft
Input Schema
Name | Required | Description | Default |
---|---|---|---|
activityDate | Yes | Date published (YYYY-MM-DD format) | |
activityUrl | Yes | Link to Content | |
additionalInfo | No | Additional information (optional) | |
contentType | Yes | Content type | |
description | Yes | What was it about? | |
metrics | Yes | ||
private | No | Do you want to make this activity private? (optional) | |
tags | No | Tags (optional) | |
title | Yes | What was the title? |
Input Schema (JSON Schema)
{
"properties": {
"activityDate": {
"description": "Date published (YYYY-MM-DD format)",
"pattern": "^\\d{4}-\\d{2}-\\d{2}$",
"type": "string"
},
"activityUrl": {
"description": "Link to Content",
"maxLength": 500,
"pattern": "^https?://.*",
"type": "string"
},
"additionalInfo": {
"description": "Additional information (optional)",
"maxLength": 2000,
"type": "string"
},
"contentType": {
"description": "Content type",
"enum": [
"Articles",
"Books",
"Console Projects",
"Demos",
"Newsletters",
"Podcasts",
"Reusable GCP presentations",
"Videos"
],
"type": "string"
},
"description": {
"description": "What was it about?",
"maxLength": 2000,
"type": "string"
},
"metrics": {
"properties": {
"readers": {
"description": "How many people read your content?",
"minimum": 1,
"type": "integer"
}
},
"required": [
"readers"
],
"type": "object"
},
"private": {
"description": "Do you want to make this activity private? (optional)",
"type": "boolean"
},
"tags": {
"description": "Tags (optional)",
"items": {
"type": "string"
},
"minItems": 0,
"type": "array"
},
"title": {
"description": "What was the title?",
"maxLength": 200,
"minLength": 3,
"type": "string"
}
},
"required": [
"title",
"description",
"activityDate",
"contentType",
"metrics",
"activityUrl"
],
"type": "object"
}