{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "credentialConfigurationId": {
      "description": "Optional credential configuration binding.",
      "type": "string",
      "minLength": 1
    },
    "keyChainId": {
      "description": "Optional key chain to sign the list with.",
      "type": "string",
      "minLength": 1
    },
    "bits": {
      "description": "Optional bits-per-status value.",
      "anyOf": [
        {
          "type": "number",
          "const": 1
        },
        {
          "type": "number",
          "const": 2
        },
        {
          "type": "number",
          "const": 4
        },
        {
          "type": "number",
          "const": 8
        }
      ]
    },
    "capacity": {
      "description": "Optional status list capacity.",
      "type": "integer",
      "minimum": 1000,
      "maximum": 9007199254740991
    }
  },
  "additionalProperties": false,
  "$id": "./CreateStatusListDto.schema.json",
  "title": "CreateStatusListDto"
}
