Created
July 2, 2026 07:43
-
-
Save picsoung/1ae535a813f446472ecfa2534cc896bd to your computer and use it in GitHub Desktop.
SLNG tools demo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { | |
| "id": 1, | |
| "name": "Can Estrella", | |
| "cuisine": "catalana", | |
| "neighborhood": "Gràcia", | |
| "price_range": "€€", | |
| "rating": 4.6, | |
| "specialty": "calçots y carnes a la brasa", | |
| "ambience": "tradicional, familiar", | |
| "outdoor_seating": true, | |
| "accepts_reservations": true, | |
| "opening_hours": "13:00-16:00, 20:00-23:30", | |
| "closed_on": ["lunes"] | |
| }, | |
| { | |
| "id": 2, | |
| "name": "La Barca del Port", | |
| "cuisine": "marisco", | |
| "neighborhood": "Barceloneta", | |
| "price_range": "€€€", | |
| "rating": 4.8, | |
| "specialty": "paella de marisco y gambas de Palamós", | |
| "ambience": "frente al mar, animado", | |
| "outdoor_seating": true, | |
| "accepts_reservations": true, | |
| "opening_hours": "12:30-23:00", | |
| "closed_on": [] | |
| }, | |
| { | |
| "id": 3, | |
| "name": "Ramen Yokocho", | |
| "cuisine": "japonesa", | |
| "neighborhood": "El Raval", | |
| "price_range": "€", | |
| "rating": 4.4, | |
| "specialty": "tonkotsu ramen", | |
| "ambience": "pequeño, auténtico, con barra", | |
| "outdoor_seating": false, | |
| "accepts_reservations": false, | |
| "opening_hours": "13:00-15:30, 19:30-22:30", | |
| "closed_on": ["domingo", "lunes"] | |
| }, | |
| { | |
| "id": 4, | |
| "name": "Trattoria Nonna Pia", | |
| "cuisine": "italiana", | |
| "neighborhood": "El Born", | |
| "price_range": "€€", | |
| "rating": 4.5, | |
| "specialty": "pasta fresca hecha a mano", | |
| "ambience": "romántico, con velas", | |
| "outdoor_seating": true, | |
| "accepts_reservations": true, | |
| "opening_hours": "19:00-23:30", | |
| "closed_on": ["martes"] | |
| }, | |
| { | |
| "id": 5, | |
| "name": "El Jardí Verd", | |
| "cuisine": "vegetariana", | |
| "neighborhood": "Eixample", | |
| "price_range": "€€", | |
| "rating": 4.7, | |
| "specialty": "menú degustación de temporada", | |
| "ambience": "tranquilo, con patio interior", | |
| "outdoor_seating": true, | |
| "accepts_reservations": true, | |
| "opening_hours": "13:00-16:00, 20:00-23:00", | |
| "closed_on": ["domingo noche"] | |
| }, | |
| { | |
| "id": 6, | |
| "name": "Taquería La Chingona", | |
| "cuisine": "mexicana", | |
| "neighborhood": "Sant Antoni", | |
| "price_range": "€", | |
| "rating": 4.3, | |
| "specialty": "tacos al pastor y mezcal", | |
| "ambience": "ruidoso, festivo", | |
| "outdoor_seating": false, | |
| "accepts_reservations": false, | |
| "opening_hours": "18:00-01:00", | |
| "closed_on": ["lunes"] | |
| }, | |
| { | |
| "id": 7, | |
| "name": "Bistro Marcel", | |
| "cuisine": "francesa", | |
| "neighborhood": "Sarrià", | |
| "price_range": "€€€€", | |
| "rating": 4.9, | |
| "specialty": "menú degustación con maridaje", | |
| "ambience": "elegante, ocasiones especiales", | |
| "outdoor_seating": false, | |
| "accepts_reservations": true, | |
| "opening_hours": "20:00-23:00", | |
| "closed_on": ["domingo", "lunes"] | |
| }, | |
| { | |
| "id": 8, | |
| "name": "Bar Manolo", | |
| "cuisine": "tapas", | |
| "neighborhood": "Poble-sec", | |
| "price_range": "€", | |
| "rating": 4.5, | |
| "specialty": "bombas, patatas bravas y vermut", | |
| "ambience": "de toda la vida, barra llena", | |
| "outdoor_seating": true, | |
| "accepts_reservations": false, | |
| "opening_hours": "12:00-00:00", | |
| "closed_on": ["miércoles"] | |
| } | |
| ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment