$schema: http://json-schema.org/draft-04/schema#
description: Schema describing an OpenFlow table mod message, version 1.3
id: of13/ofp_table_mod.json

# Deprecated in 1.3.5; kept for backward compatibility
type: object
required: [header, table_id, config]
properties:
  header:
    allOf:
      - $ref: definitions.json#/ofp_header
      - properties:
          type:
            enum: [OFPT_TABLE_MOD]
            default: OFPT_TABLE_MOD
  table_id:
    type: integer
    maximum: 255
    default: 0
  config:
    type: integer
    maximum: 4294967295
    default: 0
