removedOutput schema / properties / address
Removed value: -{
- "additionalProperties": true,
- "description": "DAWA-validated address with lat/lng (or country equivalent).",
- "properties": {
- "formatted": {
- "type": "string"
- },
- "lat": {
- "type": "number"
- },
- "lon": {
- "type": "number"
- }
- },
- "type": "object"
-}
addedOutput schema / properties / company
Added value: +{
+ "additionalProperties": true,
+ "description": "Registry data — same shape as lookup_company output.",
+ "type": [
+ "object",
+ "null"
+ ]
+}
addedOutput schema / properties / industryStats
Added value: +{
+ "additionalProperties": true,
+ "description": "National industry statistics (DST for DK, SSB for NO, etc.).",
+ "properties": {
+ "available": {
+ "description": "False when no statistics exist for the company's industry code.",
+ "type": [
+ "boolean",
+ "null"
+ ]
+ },
+ "data": {
+ "description": "Time series of {year, value, unit} rows.",
+ "items": {
+ "additionalProperties": true,
+ "type": "object"
+ },
+ "type": [
+ "array",
+ "null"
+ ]
+ },
+ "source": {
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": [
+ "object",
+ "null"
+ ]
+}
removedOutput schema / properties / industry_stats
Removed value: -{
- "additionalProperties": true,
- "description": "National industry statistics (DST for DK, SSB for NO, etc.).",
- "type": "object"
-}
removedOutput schema / properties / registry
Removed value: -{
- "additionalProperties": true,
- "description": "Same shape as lookup_company output.",
- "type": "object"
-}
removedOutput schema / properties / wikidata
Removed value: -{
- "additionalProperties": true,
- "description": "Public profile from Wikidata.",
- "properties": {
- "ceo": {
- "type": "string"
- },
- "employees": {
- "type": "number"
- },
- "logo": {
- "description": "URL to company logo.",
- "type": "string"
- },
- "ticker": {
- "type": "string"
- },
- "website": {
- "type": "string"
- },
- "wikipedia": {
- "description": "URL to English Wikipedia article.",
- "type": "string"
- }
- },
- "type": "object"
-}