tokens_response.json 425 B

1234567891011121314151617
  1. {
  2. "$schema": "http://json-schema.org/draft-07/schema#",
  3. "title": "TokensResponse",
  4. "type": "object",
  5. "required": [
  6. "tokens"
  7. ],
  8. "properties": {
  9. "tokens": {
  10. "description": "Contains all token_ids in lexicographical ordering If there are more than `limit`, use `start_from` in future queries to achieve pagination.",
  11. "type": "array",
  12. "items": {
  13. "type": "string"
  14. }
  15. }
  16. }
  17. }