changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "blocks": {
+ "description": "The blocks in the order they run.",
+ "items": {
+ "properties": {
+ "block_type": {
+ "description": "Internal classification; never mention it to the user.",
+ "enum": [
+ "standup",
+ "discussion",
+ "decision",
+ "q_and_a",
+ "break",
+ "opening",
+ "closing",
+ "other",
+ null
+ ],
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "description": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "duration_seconds": {
+ "type": [
+ "integer",
+ "null"
+ ]
+ },
+ "id": {
+ "description": "Stable 8-letter id: what update_block, remove_block, reorder_blocks and after_block_id take.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "title": {
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "id",
+ "title",
+ "duration_seconds",
+ "block_type",
+ "description"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "expires_at": {
+ "description": "ISO 8601. null when the agenda is saved to an account and does not expire.",
+ "format": "date-time",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "share_url": {
+ "description": "The read-only agenda with the live timer; safe to give to attendees.",
+ "format": "uri",
+ "type": "string"
+ },
+ "title": {
+ "type": "string"
+ },
+ "total_seconds": {
+ "description": "Sum of every block's duration_seconds.",
+ "type": "integer"
+ }
+ },
+ "required": [
+ "title",
+ "total_seconds",
+ "expires_at",
+ "share_url",
+ "blocks"
+ ],
+ "type": "object"
+}