Unlimited quantity possible in NIP-15.

This commit is contained in:
Ioan Bizău 2023-10-31 15:48:04 +02:00 committed by fiatjaf_
parent 4b9f13d983
commit a328831a07

3
15.md
View File

@ -88,7 +88,7 @@ Fields that are not self-explanatory:
"images": <[String], array of image URLs, optional>, "images": <[String], array of image URLs, optional>,
"currency": <String, currency used>, "currency": <String, currency used>,
"price": <float, cost of product>, "price": <float, cost of product>,
"quantity": <int, available items>, "quantity": <int or null, available items>,
"specs": [ "specs": [
[<String, spec key>, <String, spec value>] [<String, spec key>, <String, spec value>]
], ],
@ -102,6 +102,7 @@ Fields that are not self-explanatory:
``` ```
Fields that are not self-explanatory: Fields that are not self-explanatory:
- `quantity` can be null in the case of items with unlimited abailability, like digital items, or services
- `specs`: - `specs`:
- an optional array of key pair values. It allows for the Customer UI to present product specifications in a structure mode. It also allows comparison between products - an optional array of key pair values. It allows for the Customer UI to present product specifications in a structure mode. It also allows comparison between products
- eg: `[["operating_system", "Android 12.0"], ["screen_size", "6.4 inches"], ["connector_type", "USB Type C"]]` - eg: `[["operating_system", "Android 12.0"], ["screen_size", "6.4 inches"], ["connector_type", "USB Type C"]]`