Skip to content

Schema

Getschemabyid CustomPublicAPI.

ToolDescription
f5xc-api-tenantandidentity-schema-getSchemas By ID.
f5xc-api-tenantandidentity-schema-listSchemas
ParameterDescriptionExample
idID-
ParameterDescriptionExample
excludedAttributesMembers”]“-

Ask Claude to help you work with Schema resources:

“List all Schemas in the ‘production’ namespace”

“Get details of the Schema named ‘example’ in namespace ‘production‘“

Terminal window
# List resources
curl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/Schemas" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}" \
-H "Content-Type: application/json"
# Get specific resource
curl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/Schemas/<name>" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}" \
-H "Content-Type: application/json"
# Create resource
curl -X POST "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/Schemas" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}" \
-H "Content-Type: application/json" \
-d @Schema.json
# Delete resource
curl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/Schemas/<name>" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}"