removedInput schema / $defs
Removed value: -{
- "Item": {
- "additionalProperties": false,
- "properties": {
- "course_id": {
- "anyOf": [
- {
- "maxLength": 300,
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "title": "Course Id"
- },
- "course_title": {
- "anyOf": [
- {
- "maxLength": 500,
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "title": "Course Title"
- },
- "due_at": {
- "anyOf": [
- {
- "format": "date-time",
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "title": "Due At"
- },
- "due_date": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "title": "Due Date"
- },
- "ends_at": {
- "anyOf": [
- {
- "format": "date-time",
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "title": "Ends At"
- },
- "excerpt": {
- "maxLength": 3000,
- "minLength": 1,
- "title": "Excerpt",
- "type": "string"
- },
- "kind": {
- "enum": [
- "course",
- "resource",
- "assignment",
- "event",
- "announcement",
- "service"
- ],
- "title": "Kind",
- "type": "string"
- },
- "native_id": {
- "maxLength": 300,
- "minLength": 1,
- "title": "Native Id",
- "type": "string"
- },
- "service_id": {
- "anyOf": [
- {
- "maxLength": 100,
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "title": "Service Id"
- },
- "starts_at": {
- "anyOf": [
- {
- "format": "date-time",
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "title": "Starts At"
- },
- "status": {
- "default": "unknown",
- "enum": [
- "unknown",
- "available",
- "unavailable",
- "submitted",
- "graded",
- "cancelled"
- ],
- "title": "Status",
- "type": "string"
- },
- "title": {
- "maxLength": 500,
- "minLength": 1,
- "title": "Title",
- "type": "string"
- },
- "url": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "title": "Url"
- }
- },
- "required": [
- "native_id",
- "kind",
- "title",
- "excerpt"
- ],
- "title": "Item",
- "type": "object"
- },
- "Observation": {
- "additionalProperties": false,
- "properties": {
- "authentication": {
- "default": "unknown",
- "enum": [
- "authenticated",
- "login_required",
- "unknown"
- ],
- "title": "Authentication",
- "type": "string"
- },
- "coverage": {
- "default": "partial",
- "enum": [
- "partial",
- "complete_visible_scope"
- ],
- "title": "Coverage",
- "type": "string"
- },
- "items": {
- "items": {
- "$ref": "#/$defs/Item"
- },
- "maxItems": 500,
- "title": "Items",
- "type": "array"
- },
- "observed_at": {
- "format": "date-time",
- "title": "Observed At",
- "type": "string"
- },
- "scope": {
- "maxLength": 500,
- "minLength": 1,
- "title": "Scope",
- "type": "string"
- },
- "source": {
- "enum": [
- "learn",
- "myed",
- "timetable",
- "library",
- "university"
- ],
- "title": "Source",
- "type": "string"
- },
- "source_url": {
- "title": "Source Url",
- "type": "string"
- },
- "text": {
- "maxLength": 100000,
- "minLength": 1,
- "title": "Text",
- "type": "string"
- },
- "title": {
- "maxLength": 500,
- "minLength": 1,
- "title": "Title",
- "type": "string"
- }
- },
- "required": [
- "source",
- "source_url",
- "title",
- "observed_at",
- "scope",
- "text"
- ],
- "title": "Observation",
- "type": "object"
- }
-}
addedInput schema / properties / observation / properties
Added value: +{
+ "authentication": {
+ "default": "unknown",
+ "enum": [
+ "authenticated",
+ "login_required",
+ "unknown"
+ ],
+ "type": "string"
+ },
+ "coverage": {
+ "default": "partial",
+ "enum": [
+ "partial",
+ "complete_visible_scope"
+ ],
+ "type": "string"
+ },
+ "items": {
+ "description": "Server validates: maxItems=500.",
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "course_id": {
+ "default": null,
+ "oneOf": [
+ {
+ "description": "Server validates: maxLength=300.",
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "course_title": {
+ "default": null,
+ "oneOf": [
+ {
+ "description": "Server validates: maxLength=500.",
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "due_at": {
+ "default": null,
+ "oneOf": [
+ {
+ "description": "Server validates: format=date-time.",
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "due_date": {
+ "default": null,
+ "oneOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "ends_at": {
+ "default": null,
+ "oneOf": [
+ {
+ "description": "Server validates: format=date-time.",
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "excerpt": {
+ "description": "Server validates: maxLength=3000, minLength=1.",
+ "type": "string"
+ },
+ "kind": {
+ "enum": [
+ "course",
+ "resource",
+ "assignment",
+ "event",
+ "announcement",
+ "service"
+ ],
+ "type": "string"
+ },
+ "native_id": {
+ "description": "Server validates: maxLength=300, minLength=1.",
+ "type": "string"
+ },
+ "service_id": {
+ "default": null,
+ "oneOf": [
+ {
+ "description": "Server validates: maxLength=100.",
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "starts_at": {
+ "default": null,
+ "oneOf": [
+ {
+ "description": "Server validates: format=date-time.",
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "status": {
+ "default": "unknown",
+ "enum": [
+ "unknown",
+ "available",
+ "unavailable",
+ "submitted",
+ "graded",
+ "cancelled"
+ ],
+ "type": "string"
+ },
+ "title": {
+ "description": "Server validates: maxLength=500, minLength=1.",
+ "type": "string"
+ },
+ "url": {
+ "default": null,
+ "oneOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ }
+ },
+ "required": [
+ "native_id",
+ "kind",
+ "title",
+ "excerpt"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "observed_at": {
+ "description": "Server validates: format=date-time.",
+ "type": "string"
+ },
+ "scope": {
+ "description": "Server validates: maxLength=500, minLength=1.",
+ "type": "string"
+ },
+ "source": {
+ "enum": [
+ "learn",
+ "myed",
+ "timetable",
+ "library",
+ "university"
+ ],
+ "type": "string"
+ },
+ "source_url": {
+ "type": "string"
+ },
+ "text": {
+ "description": "Server validates: maxLength=100000, minLength=1.",
+ "type": "string"
+ },
+ "title": {
+ "description": "Server validates: maxLength=500, minLength=1.",
+ "type": "string"
+ }
+}