Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // default json
- {
- "data": [
- {
- "profile": 1,
- "logo": 2
- },
- "NVIDIA Corporation",
- "logo.png"
- ]
- }
- // nicer json
- {
- "data": [
- {
- "profile": "NVIDIA Corporation",
- "logo": "logo.png"
- }
- ]
- }
- // larger json snippet
- {
- "type": "data",
- "nodes": [
- {
- "type": "skip"
- },
- {
- "type": "skip"
- },
- {
- "type": "data",
- "data": [
- {
- "profile": 1,
- "logo": 16,
- "description": 17,
- "contact": 18,
- "details": 23
- },
- {
- "name": 2,
- "country": 3,
- "founded": 4,
- "ipoDate": 5,
- "industry": 6,
- "sector": 9,
- "employees": 12,
- "ceo": 15
- },
- "NVIDIA Corporation",
- "United States",
- 1993,
- "1999-01-22",
- {
- "value": 7,
- "url": 8
- },
- "Semiconductors",
- "stocks/industry/semiconductors",
- {
- "value": 10,
- "url": 11
- },
- "Technology",
- "stocks/sector/technology",
- {
- "value": 13,
- "url": 14
- },
- 29600,
- "stocks/nvda/employees",
- "Jen-Hsun Huang",
- true,
- "<p>NVIDIA Corporation provides graphics, and compute and networking solutions in the United States</p>",
- {
- "address": 19,
- "phone": 20,
- "website": 21,
- "domain": 22
- },
- "2788 San Tomas Expressway<br>Santa Clara, California 95051<br>United States",
- "408-486-2000",
- "https://www.nvidia.com",
- "nvidia.com",
- {
- "symbol": 24,
- "exchange": 25,
- "fiscalYear": 26,
- "currency": 27
- },
- "NVDA",
- "NASDAQ",
- "February - January",
- "USD"
- ]
- }
- ]
- }
- // nicer larger json snippet
- {
- "type": "data",
- "nodes": [
- {
- "type": "skip"
- },
- {
- "type": "skip"
- },
- {
- "type": "data",
- "data": [
- {
- "profile": {
- "name": "NVIDIA Corporation",
- "country": "United States",
- "founded": 1993,
- "ipoDate": "1999-01-22",
- "industry": [
- "Semiconductors",
- "stocks/industry/semiconductors"
- ],
- "sector": [
- "Technology",
- "stocks/sector/technology"
- ],
- "employees": [
- 29600,
- "stocks/nvda/employees"
- ],
- "ceo": "Jen-Hsun Huang"
- },
- "logo": true,
- "description": "<p>NVIDIA Corporation provides graphics, and compute and networking solutions in the United States</p>",
- "contact": {
- "address": "2788 San Tomas Expressway<br>Santa Clara, California 95051<br>United States",
- "phone": "408-486-2000",
- "website": "https://www.nvidia.com",
- "domain": "nvidia.com"
- },
- "details": {
- "symbol": "NVDA",
- "exchange": "NASDAQ",
- "fiscalYear": "February - January",
- "currency": "USD"
- }
- }
- ]
- }
- ]
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement