StackOne · Schema

Note

IntegrationsiPaaS

Properties

Name Type Description
visibility object
deleted_at string
id string
content array
updated_at string
created_at string
View JSON Schema on GitHub

JSON Schema

stackone-note-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Note",
  "title": "Note",
  "type": "object",
  "properties": {
    "visibility": {
      "$ref": "#/components/schemas/NotesVisibilityEnum"
    },
    "deleted_at": {
      "type": "string"
    },
    "id": {
      "type": "string"
    },
    "content": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "updated_at": {
      "type": "string"
    },
    "created_at": {
      "type": "string"
    }
  },
  "required": [
    "id",
    "content",
    "visibility",
    "created_at",
    "updated_at",
    "deleted_at"
  ]
}