changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "projects": {
+ "anyOf": [
+ {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "archivedAt": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Project archival time (ISO 8601); null if the project is not archived"
+ },
+ "code": {
+ "description": "Project code (e.g., BDI)",
+ "type": "string"
+ },
+ "createdAt": {
+ "description": "Project creation time (ISO 8601)",
+ "type": "string"
+ },
+ "id": {
+ "description": "Unique identifier of the project",
+ "type": "string"
+ },
+ "links": {
+ "anyOf": [
+ {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "text": {
+ "description": "Title of the link",
+ "type": "string"
+ },
+ "url": {
+ "description": "URL of the link",
+ "format": "uri",
+ "type": "string"
+ }
+ },
+ "required": [
+ "text",
+ "url"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Project links"
+ },
+ "overviewDescription": {
+ "description": "Project overview description (HTML)",
+ "type": "string"
+ },
+ "overviewTitle": {
+ "description": "Project overview title",
+ "type": "string"
+ },
+ "title": {
+ "description": "Project title",
+ "type": "string"
+ },
+ "updatedAt": {
+ "description": "Project last-update time (ISO 8601)",
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "code",
+ "title",
+ "overviewTitle",
+ "overviewDescription",
+ "links",
+ "createdAt",
+ "updatedAt",
+ "archivedAt"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "List of projects"
+ }
+ },
+ "required": [
+ "projects"
+ ],
+ "type": "object"
+}