{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "minLength": 1,
      "description": "Status list identifier."
    },
    "credentialConfigurationId": {
      "description": "Optional credential configuration binding. Null means shared list.",
      "anyOf": [
        {
          "type": "string",
          "minLength": 1
        },
        {
          "type": "null"
        }
      ]
    },
    "keyChainId": {
      "description": "Optional key chain used for signing this status list.",
      "type": "string",
      "minLength": 1
    },
    "capacity": {
      "description": "Optional list capacity override.",
      "type": "integer",
      "minimum": 100,
      "maximum": 9007199254740991
    },
    "bits": {
      "description": "Optional bits-per-status override.",
      "anyOf": [
        {
          "type": "number",
          "const": 1
        },
        {
          "type": "number",
          "const": 2
        },
        {
          "type": "number",
          "const": 4
        },
        {
          "type": "number",
          "const": 8
        }
      ]
    }
  },
  "required": [
    "id"
  ],
  "additionalProperties": false,
  "$id": "./StatusListImportDto.schema.json",
  "title": "StatusListImportDto"
}
