{ "title": "CIP-0017 - Cardano Delegation Portfolio" , "$schema": "https://json-schema.org/draft-07/schema" , "type": "object" , "required": [ "name" , "pools" ] , "properties": { "name": { "type": "string" , "minLength": 1 } , "description": { "type": "string" , "minLength": 1 } , "author": { "type": "string" , "minLength": 1 } , "pools": { "type": "array" , "minItems": 1 , "items": { "type": "object" , "required": [ "id" , "weight" ] , "properties": { "id": { "type": "string" , "minLength": 56 , "maxLength": 56 , "contentEncoding": "base16" } , "name": { "type": "string" , "minLength": 1 } , "ticker": { "type": "string" , "minLength": 3 , "maxLength": 5 } , "weight": { "type": "integer" , "minimum": 1 } } } } } }