changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$defs": {
+ "Announcement": {
+ "properties": {
+ "category": {
+ "description": "Normalised Norwegian category: 'konkurs' (bankruptcy), 'fusjon' (merger), 'fisjon' (demerger), 'eierbytte' (change of ownership), 'aarsregnskap' (annual accounts), ...",
+ "title": "Category",
+ "type": "string"
+ },
+ "dato": {
+ "description": "ISO 8601 date (YYYY-MM-DD).",
+ "title": "Dato",
+ "type": "string"
+ },
+ "hendelse_type": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Hendelse Type"
+ },
+ "kunngjoring_type": {
+ "description": "Raw BRREG label, e.g. 'Konkursåpning' (bankruptcy opening).",
+ "title": "Kunngjoring Type",
+ "type": "string"
+ },
+ "navn": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Navn"
+ }
+ },
+ "required": [
+ "dato",
+ "kunngjoring_type",
+ "category"
+ ],
+ "title": "Announcement",
+ "type": "object"
+ }
+ },
+ "properties": {
+ "count": {
+ "title": "Count",
+ "type": "integer"
+ },
+ "items": {
+ "items": {
+ "$ref": "#/$defs/Announcement"
+ },
+ "title": "Items",
+ "type": "array"
+ },
+ "orgnr": {
+ "title": "Orgnr",
+ "type": "string"
+ }
+ },
+ "required": [
+ "orgnr",
+ "count",
+ "items"
+ ],
+ "type": "object"
+}