StackOne · Schema

NotesVisibilityEnum

IntegrationsiPaaS

Properties

Name Type Description
value string
source_value string
View JSON Schema on GitHub

JSON Schema

stackone-notesvisibilityenum-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/NotesVisibilityEnum",
  "title": "NotesVisibilityEnum",
  "type": "object",
  "properties": {
    "value": {
      "type": "string",
      "enum": [
        "private",
        "public"
      ]
    },
    "source_value": {
      "type": "string"
    }
  },
  "required": [
    "value",
    "source_value"
  ]
}