{
"$defs": {
"SAMSmarterAuthTokenMetadata": {
"description": "Smarter API SmarterAuthToken Manifest - Metadata class.",
"properties": {
"name": {
"description": "The name of the manifest resource",
"title": "Name",
"type": "string"
},
"description": {
"description": "The description of the manifest resource",
"title": "Description",
"type": "string"
},
"version": {
"description": "The version of the manifest",
"title": "Version",
"type": "string"
},
"tags": {
"anyOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"description": "The tags of the manifest",
"title": "Tags"
},
"annotations": {
"anyOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"description": "The annotations of the manifest",
"title": "Annotations"
}
},
"required": [
"name",
"description",
"version"
],
"title": "SAMSmarterAuthTokenMetadata",
"type": "object"
},
"SAMSmarterAuthTokenSpec": {
"description": "Smarter API SmarterAuthToken Manifest SmarterAuthToken.spec",
"properties": {
"config": {
"$ref": "#/$defs/SAMSmarterAuthTokenSpecConfig",
"description": "Plugin.spec.config[object]. The configuration for the Plugin."
}
},
"required": [
"config"
],
"title": "SAMSmarterAuthTokenSpec",
"type": "object"
},
"SAMSmarterAuthTokenSpecConfig": {
"description": "Smarter API SmarterAuthToken Manifest SmarterAuthToken.spec.config",
"properties": {
"isActive": {
"title": "Isactive",
"type": "boolean"
},
"username": {
"description": "Plugin.spec.configuration.username[str]. The Smarter username to which this Plugin is attached.",
"title": "Username",
"type": "string"
}
},
"required": [
"username"
],
"title": "SAMSmarterAuthTokenSpecConfig",
"type": "object"
},
"SAMSmarterAuthTokenStatus": {
"description": "Smarter API SmarterAuthToken Manifest - Status class.",
"properties": {
"created": {
"anyOf": [
{
"format": "date-time",
"type": "string"
},
{
"type": "null"
}
],
"description": "Plugin.status.created: The date in which this Plugin was created. Read only.",
"title": "Created"
},
"modified": {
"anyOf": [
{
"format": "date-time",
"type": "string"
},
{
"type": "null"
}
],
"description": "Plugin.status.modified: The date in which this Plugin was most recently changed. Read only.",
"title": "Modified"
},
"lastUsedAt": {
"anyOf": [
{
"format": "date-time",
"type": "string"
},
{
"type": "null"
}
],
"description": "Plugin.status.modified: The date in which this Plugin was most recently used for authentication. Read only.",
"title": "Lastusedat"
}
},
"required": [
"created",
"modified",
"lastUsedAt"
],
"title": "SAMSmarterAuthTokenStatus",
"type": "object"
}
},
"description": "Smarter API Manifest - SmarterAuthToken",
"properties": {
"apiVersion": {
"description": "apiVersion[String]: Required. The API version of the AbstractSAMBase.",
"title": "Apiversion",
"type": "string"
},
"kind": {
"description": "kind[String]: Required. The kind of resource described by the manifest.",
"title": "Kind",
"type": "string"
},
"metadata": {
"$ref": "#/$defs/SAMSmarterAuthTokenMetadata",
"description": "Plugin.metadata[obj]: Required, the Plugin metadata."
},
"spec": {
"$ref": "#/$defs/SAMSmarterAuthTokenSpec",
"description": "Plugin.spec[obj]: Required, the Plugin specification."
},
"status": {
"anyOf": [
{
"$ref": "#/$defs/SAMSmarterAuthTokenStatus"
},
{
"type": "null"
}
],
"description": "Plugin.status[obj]: Optional, Read-only. Stateful status information about the Plugin."
}
},
"required": [
"apiVersion",
"kind",
"metadata",
"spec",
"status"
],
"title": "SAMSmarterAuthToken",
"type": "object"
}