{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ApiCredential", "title": "ApiCredential", "type": "object", "properties": { "id": { "type": "string", "description": "Unique identifier for the API credential" }, "clientId": { "type": "string", "description": "The OAuth 2.0 client ID" }, "description": { "type": "string", "description": "A human-readable description of the credential" }, "organizationId": { "type": "string", "description": "The parent organization identifier" }, "createdAt": { "type": "string", "description": "Credential creation timestamp", "format": "date-time" }, "updatedAt": { "type": "string", "description": "Credential last update timestamp", "format": "date-time" } } }