Pure Storage · Schema
ObjectStoreUser
ObjectStoreUser schema from FlashBlade REST API
StorageData StorageFlash StorageEnterprise StorageCloud StorageObject StorageFile StorageBlock StorageKubernetes StorageInfrastructure
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "ObjectStoreUser",
"description": "ObjectStoreUser schema from FlashBlade REST API",
"$id": "https://raw.githubusercontent.com/api-evangelist/pure-storage/refs/heads/main/json-schema/flashblade-rest-api-object-store-user-schema.json",
"allOf": [
{
"type": "object",
"properties": {
"id": {
"description": "A non-modifiable, globally unique ID chosen by the system.\n",
"type": "string",
"readOnly": true
},
"name": {
"description": "Name of the object (e.g., a file system or snapshot).",
"type": "string",
"readOnly": true
}
}
},
{
"type": "object",
"properties": {
"context": {
"description": "The context in which the operation was performed.\n\nValid values include a reference to any array which is a member of the same fleet\nor to the fleet itself.\n\nOther parameters provided with the request, such as names of volumes or snapshots,\nare resolved relative to the provided `context`.\n",
"readOnly": true,
"title": "FixedReference",
"allOf": [
{
"$ref": "#/components/schemas/_fixedReference"
}
]
}
}
},
{
"type": "object",
"properties": {
"access_keys": {
"description": "References of the user's access keys.",
"type": "array",
"readOnly": true,
"items": {
"$ref": "#/components/schemas/_fixedReference"
}
},
"account": {
"description": "Reference of the associated account.",
"title": "FixedReference",
"allOf": [
{
"$ref": "#/components/schemas/_fixedReference"
}
]
},
"created": {
"description": "Creation timestamp of the object.",
"type": "integer",
"format": "int64",
"readOnly": true
}
}
}
]
}