addedInput schema / properties / company / properties
Added value: +{
+ "fte": {
+ "minimum": 1,
+ "type": "integer"
+ },
+ "name": {
+ "type": "string"
+ },
+ "reportingYear": {
+ "minimum": 2024,
+ "type": "integer"
+ },
+ "revenueEur": {
+ "type": "number"
+ },
+ "sector": {
+ "type": "string"
+ }
+}
addedInput schema / properties / company / required
Added value: +[
+ "name",
+ "sector",
+ "fte",
+ "revenueEur",
+ "reportingYear"
+]
addedInput schema / properties / context / properties
Added value: +{
+ "recentChanges": {
+ "maxLength": 500,
+ "type": "string"
+ },
+ "strategicCommitments": {
+ "items": {
+ "type": "string"
+ },
+ "maxItems": 5,
+ "minItems": 1,
+ "type": "array"
+ }
+}
addedInput schema / properties / context / required
Added value: +[
+ "strategicCommitments"
+]
addedInput schema / properties / focus / maxLength
Added value: +400
addedInput schema / properties / presenterScript
Added value: +{
+ "items": {
+ "properties": {
+ "durationSec": {
+ "maximum": 120,
+ "minimum": 15,
+ "type": "number"
+ },
+ "keyPointsToAcknowledge": {
+ "items": {
+ "maxLength": 200,
+ "minLength": 5,
+ "type": "string"
+ },
+ "maxItems": 5,
+ "type": "array"
+ },
+ "motionHint": {
+ "enum": [
+ "opening-confidence",
+ "explaining",
+ "pointing-at-chart",
+ "thoughtful-pause",
+ "emphatic-point",
+ "nodding-listening",
+ "hand-gesture-open",
+ "summary-pose",
+ "closing-confidence"
+ ],
+ "type": "string"
+ },
+ "narration": {
+ "maxLength": 1200,
+ "minLength": 80,
+ "type": "string"
+ },
+ "slideId": {
+ "maxLength": 60,
+ "minLength": 2,
+ "type": "string"
+ },
+ "slideTitle": {
+ "maxLength": 120,
+ "minLength": 3,
+ "type": "string"
+ }
+ },
+ "required": [
+ "slideId",
+ "slideTitle",
+ "narration",
+ "durationSec"
+ ],
+ "type": "object"
+ },
+ "maxItems": 15,
+ "minItems": 6,
+ "type": "array"
+}
addedInput schema / properties / scope / properties
Added value: +{
+ "countriesOfOperation": {
+ "items": {
+ "type": "string"
+ },
+ "maxItems": 15,
+ "minItems": 1,
+ "type": "array"
+ },
+ "standardsApplicable": {
+ "items": {
+ "enum": [
+ "ESRS-E1-climate",
+ "ESRS-E2-pollution",
+ "ESRS-E3-water",
+ "ESRS-E4-biodiversity",
+ "ESRS-E5-resources",
+ "ESRS-S1-workforce",
+ "ESRS-S2-value-chain",
+ "ESRS-S3-communities",
+ "ESRS-S4-consumers",
+ "ESRS-G1-business-conduct"
+ ],
+ "type": "string"
+ },
+ "maxItems": 10,
+ "minItems": 3,
+ "type": "array"
+ },
+ "valueChainScope": {
+ "maxLength": 500,
+ "type": "string"
+ }
+}
addedInput schema / properties / scope / required
Added value: +[
+ "standardsApplicable",
+ "countriesOfOperation",
+ "valueChainScope"
+]
addedInput schema / required
Added value: +[
+ "company",
+ "scope",
+ "context"
+]