StackOne · Schema

Questionnaire

IntegrationsiPaaS

Properties

Name Type Description
id string
answers array
View JSON Schema on GitHub

JSON Schema

stackone-questionnaire-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Questionnaire",
  "title": "Questionnaire",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "answers": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Answer"
      }
    }
  },
  "required": [
    "answers"
  ]
}