changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$defs": {
+ "RolePersonHit": {
+ "properties": {
+ "active_company_count": {
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Active Company Count"
+ },
+ "birth_year": {
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Birth Year"
+ },
+ "company_count": {
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Company Count"
+ },
+ "name": {
+ "title": "Name",
+ "type": "string"
+ },
+ "role_person_id": {
+ "description": "Stable key — pass to `get_person_roles`.",
+ "title": "Role Person Id",
+ "type": "string"
+ }
+ },
+ "required": [
+ "role_person_id",
+ "name"
+ ],
+ "title": "RolePersonHit",
+ "type": "object"
+ },
+ "ShareholderHit": {
+ "properties": {
+ "birth_year": {
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Birth Year"
+ },
+ "country_code": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Country Code"
+ },
+ "owner_name": {
+ "title": "Owner Name",
+ "type": "string"
+ },
+ "owner_person_key": {
+ "description": "Stable key — pass to `get_person_companies`.",
+ "title": "Owner Person Key",
+ "type": "string"
+ },
+ "poststed": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Poststed"
+ },
+ "shareholding_count": {
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Shareholding Count"
+ }
+ },
+ "required": [
+ "owner_person_key",
+ "owner_name"
+ ],
+ "title": "ShareholderHit",
+ "type": "object"
+ }
+ },
+ "properties": {
+ "query": {
+ "title": "Query",
+ "type": "string"
+ },
+ "role_persons": {
+ "items": {
+ "$ref": "#/$defs/RolePersonHit"
+ },
+ "title": "Role Persons",
+ "type": "array"
+ },
+ "role_persons_count": {
+ "title": "Role Persons Count",
+ "type": "integer"
+ },
+ "shareholders": {
+ "items": {
+ "$ref": "#/$defs/ShareholderHit"
+ },
+ "title": "Shareholders",
+ "type": "array"
+ },
+ "shareholders_count": {
+ "title": "Shareholders Count",
+ "type": "integer"
+ }
+ },
+ "required": [
+ "query",
+ "shareholders",
+ "shareholders_count",
+ "role_persons",
+ "role_persons_count"
+ ],
+ "type": "object"
+}