List spaces defined in the current project.
List of spaces
The response for a failed request.
space_list = client.data_modeling.spaces.list(limit=5) for space in client.data_modeling.spaces: space # do something with the space for space_list in client.data_modeling.spaces(chunk_size=2500): space_list # do something with the spaces
{- "items": [
- {
- "space": "string",
- "description": "string",
- "name": "string",
- "createdTime": 1730204346000,
- "lastUpdatedTime": 1730204346000,
- "isGlobal": true
}
], - "nextCursor": "string"
}