StackOne · Schema

PayFrequencyEnum

IntegrationsiPaaS

Properties

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

JSON Schema

stackone-payfrequencyenum-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PayFrequencyEnum",
  "title": "PayFrequencyEnum",
  "type": "object",
  "properties": {
    "source_value": {
      "type": "string"
    },
    "value": {
      "type": "string",
      "enum": [
        "hourly",
        "weekly",
        "bi_weekly",
        "four_weekly",
        "semi_monthly",
        "monthly",
        "bi_monthly",
        "quarterly",
        "semi_annually",
        "yearly",
        "thirteen_monthly",
        "pro_rata",
        "unmapped_value",
        "half_yearly"
      ]
    }
  },
  "required": [
    "value",
    "source_value"
  ]
}