|
914 | 914 | [ { "title": "DelegateRepresentativeSummary<Registered>" |
915 | 915 | , "type": "object" |
916 | 916 | , "additionalProperties": false |
917 | | - , "required": [ "id", "from", "type", "stake" ] |
| 917 | + , "required": [ "id", "from", "type", "stake", "mandate", "deposit", "delegators" ] |
918 | 918 | , "properties": |
919 | 919 | { "id": |
920 | 920 | { "$ref": "cardano.json#/definitions/Digest<Blake2b, 224>" |
|
955 | 955 | , { "title": "DelegateRepresentativeSummary<NoConfidence>" |
956 | 956 | , "type": "object" |
957 | 957 | , "additionalProperties": false |
958 | | - , "required": [ "type", "stake" ] |
| 958 | + , "required": [ "type", "stake", "delegators" ] |
959 | 959 | , "properties": |
960 | 960 | { "type": |
961 | 961 | { "type": "string" |
|
965 | 965 | , "stake": |
966 | 966 | { "$ref": "cardano.json#/definitions/Value<AdaOnly>" |
967 | 967 | } |
| 968 | + , "delegators": |
| 969 | + { "type": "array" |
| 970 | + , "items": |
| 971 | + { "type": "object" |
| 972 | + , "additionalProperties": false |
| 973 | + , "required": [ "credential", "from" ] |
| 974 | + , "properties": |
| 975 | + { "credential": { "$ref": "cardano.json#/definitions/Digest<Blake2b, 224>" } |
| 976 | + , "from": { "$ref": "cardano.json#/definitions/CredentialOrigin" } |
| 977 | + } |
| 978 | + } |
| 979 | + } |
968 | 980 | } |
969 | 981 | } |
970 | 982 | , { "title": "DelegateRepresentative<Abstain>" |
971 | 983 | , "type": "object" |
972 | 984 | , "additionalProperties": false |
973 | | - , "required": [ "type", "stake" ] |
| 985 | + , "required": [ "type", "stake", "delegators" ] |
974 | 986 | , "properties": |
975 | 987 | { "type": |
976 | 988 | { "type": "string" |
|
980 | 992 | , "stake": |
981 | 993 | { "$ref": "cardano.json#/definitions/Value<AdaOnly>" |
982 | 994 | } |
| 995 | + , "delegators": |
| 996 | + { "type": "array" |
| 997 | + , "items": |
| 998 | + { "type": "object" |
| 999 | + , "additionalProperties": false |
| 1000 | + , "required": [ "credential", "from" ] |
| 1001 | + , "properties": |
| 1002 | + { "credential": { "$ref": "cardano.json#/definitions/Digest<Blake2b, 224>" } |
| 1003 | + , "from": { "$ref": "cardano.json#/definitions/CredentialOrigin" } |
| 1004 | + } |
| 1005 | + } |
| 1006 | + } |
983 | 1007 | } |
984 | 1008 | } |
985 | 1009 | ] |
|
1941 | 1965 |
|
1942 | 1966 | , "StakePool": |
1943 | 1967 | { "title": "StakePool" |
1944 | | - , "description": "The field 'stake' is only present when explicitly requested (see related state-queries)." |
1945 | 1968 | , "type": "object" |
1946 | 1969 | , "additionalProperties": false |
1947 | 1970 | , "required": |
|
1986 | 2009 | { "type": "array" |
1987 | 2010 | , "items": { "$ref": "cardano.json#/definitions/Relay" } |
1988 | 2011 | } |
1989 | | - , "stake": |
1990 | | - { "$ref": "cardano.json#/definitions/Value<AdaOnly>" |
1991 | | - } |
1992 | 2012 | } |
1993 | 2013 | } |
1994 | 2014 |
|
|
2004 | 2024 | ] |
2005 | 2025 | } |
2006 | 2026 |
|
| 2027 | + , "StakePoolView": |
| 2028 | + { "title": "StakePoolView" |
| 2029 | + , "description": "The field 'stake' is only present when explicitly requested (see related state-queries). The schema may only contain an id (and a stake) should the pool have just retired, but still be considered for ratification in the ongoing epoch." |
| 2030 | + , "type": "object" |
| 2031 | + , "additionalProperties": false |
| 2032 | + , "required": |
| 2033 | + [ "id" |
| 2034 | + ] |
| 2035 | + , "properties": |
| 2036 | + { "id": |
| 2037 | + { "$ref": "cardano.json#/definitions/StakePoolId" |
| 2038 | + } |
| 2039 | + , "vrfVerificationKeyHash": |
| 2040 | + { "$ref": "cardano.json#/definitions/Digest<Blake2b, 256>" |
| 2041 | + } |
| 2042 | + , "owners": |
| 2043 | + { "type": "array" |
| 2044 | + , "items": |
| 2045 | + { "$ref": "cardano.json#/definitions/Digest<Blake2b, 224>" |
| 2046 | + } |
| 2047 | + } |
| 2048 | + , "cost": |
| 2049 | + { "$ref": "cardano.json#/definitions/Value<AdaOnly>" |
| 2050 | + } |
| 2051 | + , "margin": |
| 2052 | + { "$ref": "cardano.json#/definitions/Ratio" |
| 2053 | + } |
| 2054 | + , "pledge": |
| 2055 | + { "$ref": "cardano.json#/definitions/Value<AdaOnly>" |
| 2056 | + } |
| 2057 | + , "rewardAccount": |
| 2058 | + { "$ref": "cardano.json#/definitions/RewardAccount" |
| 2059 | + } |
| 2060 | + , "metadata": |
| 2061 | + { "$ref": "cardano.json#/definitions/Anchor" |
| 2062 | + } |
| 2063 | + , "relays": |
| 2064 | + { "type": "array" |
| 2065 | + , "items": { "$ref": "cardano.json#/definitions/Relay" } |
| 2066 | + } |
| 2067 | + , "stake": |
| 2068 | + { "$ref": "cardano.json#/definitions/Value<AdaOnly>" |
| 2069 | + } |
| 2070 | + } |
| 2071 | + } |
| 2072 | + |
2007 | 2073 | , "StakePoolVotingThresholds": |
2008 | 2074 | { "title": "StakePoolVotingThresholds" |
2009 | 2075 | , "type": "object" |
|
0 commit comments