{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/registryCredential", "title": "registryCredential", "type": "object", "required": [ "id", "name", "username", "registry", "updatedAt" ], "properties": { "id": { "type": "string", "description": "Unique identifier for this credential" }, "name": { "type": "string", "description": "Descriptive name for this credential" }, "registry": { "$ref": "#/components/schemas/registryCredentialRegistry" }, "username": { "type": "string", "description": "The username associated with the credential" }, "updatedAt": { "type": "string", "format": "date-time", "description": "Last updated time for the credential" } } }