removedInput schema / $defs
Removed value: -{
- "StringOrInt": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "integer"
- }
- ]
- }
-}
changedInput schema / properties / depth / anyOf
Previous value: -[
- {
- "$ref": "#/$defs/StringOrInt"
- },
- {
- "type": "null"
- }
-]New value: +[
+ {
+ "type": "string"
+ },
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+]
addedOutput schema / $defs / EntitySummary / properties / entity_id
Added value: +{
+ "title": "Entity Id",
+ "type": "integer"
+}
changedOutput schema / $defs / EntitySummary / required
Previous value: -[
- "permalink",
- "title",
- "file_path",
- "created_at"
-]New value: +[
+ "entity_id",
+ "permalink",
+ "title",
+ "file_path",
+ "created_at"
+]
addedOutput schema / $defs / ObservationSummary / properties / entity_id
Added value: +{
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Entity Id"
+}
addedOutput schema / $defs / ObservationSummary / properties / observation_id
Added value: +{
+ "title": "Observation Id",
+ "type": "integer"
+}
changedOutput schema / $defs / ObservationSummary / required
Previous value: -[
- "title",
- "file_path",
- "permalink",
- "category",
- "content",
- "created_at"
-]New value: +[
+ "observation_id",
+ "title",
+ "file_path",
+ "permalink",
+ "category",
+ "content",
+ "created_at"
+]
addedOutput schema / $defs / RelationSummary / properties / entity_id
Added value: +{
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Entity Id"
+}
addedOutput schema / $defs / RelationSummary / properties / from_entity_id
Added value: +{
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "From Entity Id"
+}
addedOutput schema / $defs / RelationSummary / properties / relation_id
Added value: +{
+ "title": "Relation Id",
+ "type": "integer"
+}
addedOutput schema / $defs / RelationSummary / properties / to_entity_id
Added value: +{
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "To Entity Id"
+}
changedOutput schema / $defs / RelationSummary / required
Previous value: -[
- "title",
- "file_path",
- "permalink",
- "relation_type",
- "created_at"
-]New value: +[
+ "relation_id",
+ "title",
+ "file_path",
+ "permalink",
+ "relation_type",
+ "created_at"
+]