Sensor 255 char limit

i have 255 limit problem how a can solve this ? i read to store in attribute but i don’t know how , i receive every 3 sec a json 400 char, how i can do this ?

- platform: rest
    name: "BlueIris 10 last Alert list"
    resource: "http://xxxxxxxxxx:8080/rest/items/BlueIris_Alert_List?metadata=.%2A&recursive=true"
    method: GET
    authentication: basic
    value_template: "{{ value_json.state}}"
    json_attributes_path: "state"
    json_attributes:
      - state
    headers:
      Content-Type: application/json
    force_update: true
    scan_interval: 3
    unique_id: "1234.BlueIris 10 last Alert list"

Post the json instead.
The trick is probably to read the elements in that and then populate state and attributes based by that.

thanks for reply, but how to post json instead ? have you a exemple ? i need entire string( is json )

I think you want something like this:

    value_template: "{{ now() }}"
    json_attributes_path: "$"
    json_attributes:
      - state

If that doesn’t solve it, do what Wally says and post the JSON you’re getting from the URL (properly formatted, like you did with your code: just copy/paste from a browser into this thread), explaining which bit of it you want.

hi have the now value , but but accessing to the attribute how you do this ? thanks again