Advertisement
gondimedia

Schema for local business - Example

May 26th, 2021
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.36 KB | None | 0 0
  1. <script type="application/ld+json">
  2. {
  3. "@context": "https://schema.org/",
  4. "@type": "Invoice",
  5. "broker": {
  6. "@type": "LocalBusiness",
  7. "name": "ACME Home Heating"
  8. },
  9. "accountId": "xxxx-xxxx-xxxx-1234",
  10. "customer": {
  11. "@type": "Person",
  12. "name": "Jane Doe"
  13. },
  14. "paymentDueDate": "2015-01-30",
  15. "minimumPaymentDue": {
  16. "@type": "PriceSpecification",
  17. "price": 0.00,
  18. "priceCurrency": "USD"
  19. },
  20. "totalPaymentDue": {
  21. "@type": "PriceSpecification",
  22. "price": 0.00,
  23. "priceCurrency": "USD"
  24. },
  25. "paymentStatus": "https://schema.org/PaymentComplete",
  26. "referencesOrder": [
  27. {
  28. "@type": "Order",
  29. "description": "furnace",
  30. "orderDate": "2014-12-01",
  31. "orderNumber": "123ABC",
  32. "paymentMethod": "http://purl.org/goodrelations/v1#ByInvoice",
  33. "orderedItem": {
  34. "@type": "Product",
  35. "name": "ACME Furnace 3000",
  36. "productID": "ABC123"
  37. }
  38. },
  39. {
  40. "@type": "Order",
  41. "description": "furnace installation",
  42. "orderDate": "2014-12-02",
  43. "paymentMethod": "http://purl.org/goodrelations/v1#ByInvoice",
  44. "orderedItem": {
  45. "@type": "Service",
  46. "description": "furnace installation"
  47. }
  48. }
  49. ]
  50. }
  51. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement