StackOne · Schema

ApplicationAttachment

IntegrationsiPaaS

Properties

Name Type Description
url string
type array
file_name string
content string
View JSON Schema on GitHub

JSON Schema

stackone-applicationattachment-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ApplicationAttachment",
  "title": "ApplicationAttachment",
  "type": "object",
  "properties": {
    "url": {
      "type": "string"
    },
    "type": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/AttachmentType"
      }
    },
    "file_name": {
      "type": "string"
    },
    "content": {
      "type": "string"
    }
  }
}